/* Reset básico */
body, h1, h2, p, ul, li, p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

custom-bg{
  background-color: black;
}

.hero-section {
    background-image: url('/img/capa.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: flex-start; /* Alinhamento do conteúdo no topo */
    justify-content: center;
    position: relative;
    padding-top: 100px; /* Ajusta a distância do topo */
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px; /* Ajusta o espaçamento para telas menores */
        height: 60vh;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section .btn {
        font-size: 1rem;
    }
}





.navbar-toggler-icon {
    background-image: url();
}

/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Seções */
section {
    padding: 20px;
}
h1, h2 {
    color: #2c3e50;
  
}
ul, ol {
    margin-bottom: 20px;
}
ul {
    list-style-type: square;
}
.highlight {
    font-weight: bold;
}


.hero-content {
    max-width: 600px;
    margin: auto;
}

.card {
    border: none;
}

.card-title {
    font-size: 1.25rem;
}

.card-text {
    font-size: 1rem;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

p,li, h3{
 font-style: Poppins;
 font-size: 20px;
 
 
}
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
    
  }
  
  .poppins-light ,  p, li{ 
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: justify;
    font-size: 20px;
  }
  
  .poppins-regular, h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }