/* 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; /* Reduz o padding */
    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_servicos.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;
}

/* Seção de Serviços */
.lista-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; /* Espaçamento entre os cards */
    max-width: 1200px;
    margin: 3rem auto; 
    padding: 0 20px; 
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    overflow: hidden; 
    text-align: center;
    display: flex; 
    flex-direction: column; 
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    padding: 1rem; 
}

.card:hover {
    transform: scale(1.05); 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); 
}

.card img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0.5rem 0;
}

.card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    padding: 0 2rem; 
    margin-bottom: 1rem;
    text-align: justify;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .card img {
        height: 180px; 
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .card p {
        font-size: 0.85rem; 
        padding: 0 1.5rem; 
    }
}

@media (max-width: 480px) {
    .card img {
        height: 150px; 
    }

    .card h3 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.8rem; 
        padding: 0 1rem; 
    }
}

/* Espaçamento maior entre seções */
.lista-servicos + * {
    margin-top: 3rem; 
}



/* Mini Seção de Contato */
.mini-secao-contato {
    background-color: #296AF1; 
    padding: 20px; 
    margin: 20px 0; 
    color: white;
}

.mini-secao-contato .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 20px; 
}

.mini-secao-contato .informacoes-contato {
    display: flex;
    align-items: center;
    gap: 10px; 
    flex: 1 1 250px; 
}

.mini-secao-contato .icone-telefone {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-secao-contato .icone-telefone i {
    font-size: 1.5em;
}

.mini-secao-contato .texto-contato {
    display: flex;
    flex-direction: column;
}

.mini-secao-contato .texto-contato .titulo-consulta {
    font-size: 1rem;
    margin: 0;
    font-weight: bold;
}

.mini-secao-contato .texto-contato .numero-telefone {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.mini-secao-contato .texto-descricao {
    flex: 2; 
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
}

.mini-secao-contato .botao-agendamento {
    display: flex;
    justify-content: flex-start; 
    flex: 1 1 auto; 
    align-items: flex-start; 
}

.mini-secao-contato .botao {
    background-color: white; 
    color: #296AF1; 
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap; 
}

.mini-secao-contato .botao:hover {
    background-color: #f0f0f0;
    color: #296AF1;
}

/* Responsividade */
@media (max-width: 768px) {
    .mini-secao-contato .container {
        flex-direction: column; 
        text-align: center; 
    }

    .mini-secao-contato .informacoes-contato {
        justify-content: center;
        margin-bottom: 15px;
    }

    .mini-secao-contato .texto-descricao {
        text-align: center;
        margin-bottom: 15px;
    }

    .mini-secao-contato .botao-agendamento {
        justify-content: center; 
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .mini-secao-contato .icone-telefone {
        width: 40px;
        height: 40px;
    }

    .mini-secao-contato .icone-telefone i {
        font-size: 1.2rem;
    }

    .mini-secao-contato .texto-contato .titulo-consulta {
        font-size: 0.9rem;
    }

    .mini-secao-contato .texto-contato .numero-telefone {
        font-size: 1rem;
    }

    .mini-secao-contato .texto-descricao {
        font-size: 0.9rem;
    }

    .mini-secao-contato .botao {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}


/*processo*/

/* Estilo principal para nossos processos */
.nossos-processos {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.nossos-processos .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.nossos-processos h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.nossos-processos .descricao-processo {
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
}

.nossos-processos .etapas-processo {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; 
    gap: 20px; 
}

.nossos-processos .etapa {
    flex: 1 0 300px; 
    max-width: 300px; 
    padding: 20px;
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nossos-processos .numero-etapa {
    width: 60px;
    height: 60px;
    background-color: #296AF1;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 60px;
    margin: 0 auto 10px;
    font-weight: bold;
}

.nossos-processos .etapa h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.nossos-processos .etapa p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Media Queries para responsividade */
@media (max-width: 768px) {
    .nossos-processos h2 {
        font-size: 2rem;
    }

    .nossos-processos .descricao-processo {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .nossos-processos .etapas-processo {
        flex-direction: column; 
        align-items: center; 
    }

    .nossos-processos .etapa {
        flex: 1 0 90%; 
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .nossos-processos h2 {
        font-size: 1.8rem;
    }

    .nossos-processos .numero-etapa {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        line-height: 50px;
    }

    .nossos-processos .etapa h3 {
        font-size: 1rem;
    }

    .nossos-processos .etapa p {
        font-size: 0.8rem;
    }
}

  /* 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 */
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;
}