/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f0f8f7;
  }
  
  /* Header */

  header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100; 
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease; 
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.9); 
    padding: 0.5rem 1rem; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    width: 20%; 
    height: auto;
    max-width: 80px; 
    margin-right: 1em; 
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__title {
    font-size: 2rem; 
    margin: 0;
    line-height: 1.2;
    background-image: linear-gradient(to right, #00e1fd, #0040ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.logo__slogan {
    font-size: 1rem; 
    margin: 0;
    color: #0d0b21;
    font-weight: bold;
}

/* Media Queries para ajustes finos */
@media (max-width: 768px) {
    .logo__title {
        font-size: 1.2rem; 
    }

    .logo__slogan {
        font-size: 0.7rem; 
    }
    .logo__img{
        width: 15%;
    }
}

@media (max-width: 480px) {
    .logo__title {
        font-size: 1rem; 
    }

    .logo__slogan {
        font-size: 0.6rem; 
        display: none; 
    }
    .logo__img{
        width: 20%;
    }
}
  header .logo h1 {
    font-size: 2rem;
    color: #0d706f;
    margin: 0;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding-right: 30px;
    align-items: center;
  }
  
  header nav ul li {
    position: relative;
  }
  
  header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 0.5rem 1rem;
    display: inline-block;
  }
  
  header nav ul li.button-rounded {
    background: #296AF1;
    color: #fff;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    cursor: pointer;
  }

  header nav ul li.button-rounded a {
    color: #ffffff;
  }
  
  header nav ul li.button-rounded:hover {
    background: #00e1fd;
    color: #fff;
  }

 /* Estilos para o menu hambúrguer */
.menu-toggle {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative; 
    z-index: 101; 
  }
  
  .menu-hamburguer {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
  }
  
  .menu-hamburguer::before,
  .menu-hamburguer::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: transform 0.3s ease;
  }
  
  .menu-hamburguer::before {
    transform: translateY(-9px);
  }
  
  .menu-hamburguer::after {
    transform: translateY(9px);
  }
  
  /* Menu para telas pequenas */
  @media (max-width: 768px) {
    .menu-toggle {
        display: block; 
    }
  
    nav ul.menu {
        display: none; 
        flex-direction: column; 
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: #fff; 
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        text-align: center;
    }
  
    nav ul.menu.ativo {
        display: flex; 
    }
  
    nav ul.menu li {
        margin-bottom: 0.5rem; 
    }
  
    .menu-toggle.ativo .menu-hamburguer {
        background-color: transparent; 
    }
  
    .menu-toggle.ativo .menu-hamburguer::before {
        transform: rotate(45deg);
    }
  
    .menu-toggle.ativo .menu-hamburguer::after {
        transform: rotate(-45deg);
    }
  }


/*Banner*/

.banner {
    position: relative;
    background-image: url('../imgs/bg_sobre.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
  }
  
.banner-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-content {
    text-align: center;
}

.banner h1 {
    font-size: 4rem;
    font-weight: bold;
}

/*primeira seção*/

.sobre-primeira-secao {
    padding: 80px 20px; 
    background-color: #f8f8f8; 
}

.sobre-primeira-secao .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 20px; 
}

.sobre-primeira-secao .texto-sobre {
    flex: 1 1 60%; 
    padding-right: 40px; 
    text-align: justify; 
}

.sobre-primeira-secao h2 {
    font-size: 2.5rem; 
    margin-bottom: 20px;
    color: #333;
}

.sobre-primeira-secao p {
    font-size: 1.1rem; 
    line-height: 1.6;
    color: #000;
}

.sobre-primeira-secao .imagem-sobre {
    flex: 1 1 40%; 
    text-align: center; 
}

.sobre-primeira-secao img {
    max-width: 100%; 
    height: auto;
    border-radius: 10px; 
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); 
}

/* Responsividade */
@media (max-width: 768px) {
    .sobre-primeira-secao .container {
        flex-direction: column; 
        text-align: center; 
    }

    .sobre-primeira-secao .texto-sobre, 
    .sobre-primeira-secao .imagem-sobre {
        flex: 1 1 100%; 
        padding-right: 0; 
        margin-bottom: 20px; 
    }

    .sobre-primeira-secao h2 {
        font-size: 2rem; 
    }

    .sobre-primeira-secao p {
        font-size: 1rem; 
    }
}

@media (max-width: 480px) {
    .sobre-primeira-secao {
        padding: 40px 10px; 
    }

    .sobre-primeira-secao h2 {
        font-size: 1.8rem; 
    }

    .sobre-primeira-secao p {
        font-size: 0.9rem; 
    }
}


/* Estilos da seção Missão, Visão e Valores */
.mvv-secao {
    padding: 60px 20px; 
    background-color: #fff; 
}

.mvv-secao .container {
    max-width: 1200px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: flex-start; 
    flex-wrap: wrap; 
    gap: 20px; 
}

.mvv-secao .mvv-item {
    flex: 1 1 30%; 
    text-align: center; 
    padding: 20px;
    background: #f8f8f8; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.mvv-secao .mvv-item:hover {
    transform: translateY(-5px); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
}

.mvv-secao .mvv-icone {
    width: 80px;
    height: 80px;
    border: 2px solid #007bff; 
    border-radius: 50%; 
    margin: 0 auto 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff; 
    font-size: 2em; 
}

.mvv-secao h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.mvv-secao p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

/* Responsividade */
@media (max-width: 992px) {
    .mvv-secao .mvv-item {
        flex: 1 1 45%; 
    }
}

@media (max-width: 768px) {
    .mvv-secao .container {
        justify-content: center; 
    }

    .mvv-secao .mvv-item {
        flex: 1 1 90%; 
        margin: 0 auto; 
    }

    .mvv-secao .mvv-icone {
        width: 60px; 
        height: 60px;
        font-size: 1.5em; 
    }

    .mvv-secao h3 {
        font-size: 1.3rem; 
    }

    .mvv-secao p {
        font-size: 0.9rem; 
    }
}

@media (max-width: 480px) {
    .mvv-secao {
        padding: 40px 10px;
    }

    .mvv-secao h3 {
        font-size: 1.2rem; 
    }

    .mvv-secao p {
        font-size: 0.8rem; 
    }
}



/* Estilos da seção Nossa História */
.nossa-historia-secao {
    padding: 60px 0;
    background-color: #296AF1; 
    color: white; 
}

.nossa-historia-secao .container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%; 
}

.nossa-historia-secao .historia-conteudo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.nossa-historia-secao .historia-imagem {
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}

.nossa-historia-secao .historia-imagem img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.nossa-historia-secao .historia-texto {
    width: 50%;
    box-sizing: border-box;
    text-align: justify;
    font-size: 1rem;
}

.nossa-historia-secao h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: white; 
}

.nossa-historia-secao p {
    line-height: 1.6;
    color: white; 
    margin-bottom: 15px;
}

/* Media Query para telas menores */
@media (max-width: 768px) {
    .nossa-historia-secao .historia-conteudo {
        flex-direction: column;
    }

    .nossa-historia-secao .historia-imagem,
    .nossa-historia-secao .historia-texto {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    .nossa-historia-secao .historia-texto {
        text-align: justify;
    }
}


/* Estilos da seção Fundadores */
.fundadores-secao {
    padding: 60px 0;
    background-color: #fff; 
    text-align: center; 
    margin-bottom: 6rem;
}

.fundadores-secao .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fundadores-secao h2 {
    font-size: 2em;
    margin-bottom: 3rem;
    color: #333;
    margin-top: 4rem;
    
}

.fundadores-secao .fundadores-lista {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.fundadores-secao .fundador {
    width: 30%; 
    margin-bottom: 30px;
}

.fundadores-secao .foto-fundador {
    width: 200px; 
    height: 200px; 
    border-radius: 50%;
    overflow: hidden; 
    margin: 0 auto 20px; 
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); 
}

.fundadores-secao .foto-fundador img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fundadores-secao h3 {
    margin-bottom: 10px;
    color: #333;
}

.fundadores-secao .redes-sociais {
    display: flex;
    justify-content: center;
    gap: 15px; 
}

.fundadores-secao .redes-sociais a {
    color: #007bff; 
    font-size: 1.5em; 
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.fundadores-secao .redes-sociais a:hover {
    color: #0056b3; 
}

/* Media Query para telas menores */
@media (max-width: 768px) {
    .fundadores-secao .fundador {
        width: 90%; 
        margin: 0 auto 30px; 
    }
}


  /* WHATSAAP BUTTON*/
  .whatsapp-button {
    position: fixed;
    bottom: 50px; 
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 15px;
    z-index: 9999;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    display: flex; 
    justify-content: center; 
    align-items: center; 
  }
  
  .whatsapp-button i {
    font-size: 30px; 
    color: white; 
  }
  
  @media (max-width: 768px) {
      .whatsapp-button {
          bottom: 30px; 
          right: 10px;
          padding: 10px;
      }
      .whatsapp-button i {
          font-size: 20px;
      }
  }
  

/* Footer */
footer {
    background-color: #296AF1; 
    color: white;
    padding: 3rem 0;
    font-family: 'Poppins', sans-serif;
    margin-top: 6rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px; 
}

.footer-coluna {
    flex: 1 0 220px; 
    text-align: left;
}

.footer-coluna h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-coluna p,
.footer-coluna ul {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-coluna ul {
    list-style: none;
    padding: 0;
}

.footer-coluna li {
    margin-bottom: 0.5rem;
}

.footer-coluna a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-coluna a:hover {
    color: white;
}

.footer-logo img {
    max-width: 250px;
    margin-bottom: 1rem;
}

/* Redes Sociais */
.footer-coluna .social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start; 
}

.footer-coluna .social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2); 
}

.footer-coluna .social-icons a:hover {
    color: #296AF1;
    background-color: white;
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; 
        text-align: center; 
    }

    .footer-coluna {
        flex: 1 0 100%;
        margin-bottom: 2rem;
    }

    .footer-coluna .social-icons {
        justify-content: center; 
    }
}

@media (max-width: 480px) {
    .footer-coluna h3 {
        font-size: 1.2rem;
    }

    .footer-coluna p,
    .footer-coluna ul {
        font-size: 0.8rem;
    }

    .footer-coluna .social-icons a {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    font-size: 0.9rem;
}