/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", "sans-serif";
  text-decoration: none;
  list-style: none;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}


#btn-mobile {
    display: none;
}

.navegador-superior{
    background: #f5f5f5; /* cinza claro para contraste */
    height: 130x;
    display: flex;
    
}

header{
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    text-transform: uppercase;
    font-weight: 500;
    
    
}
h1 a img{
    width: 120px;
}
.img-section2 img{
    width: 90%;
}
.image-one img{
    width: 100%;
}
#menu{
    display: flex;
    
}

#menu li{
    margin-right: 20px;
    text-decoration: none;
    
    
}


.navegador ul li a {
  
    text-decoration: none;
    color:#598f31;
    letter-spacing: 8%;
    
}
.navegador ul li a:hover {
    text-decoration: none;
    transition: 1s;
    color:#7cc644;
    
}
/* sessao 01 */

.section-one{
    display: flex;
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
    align-items: center;
    
    
    
}

.text-sessao-one{
    width: 60%;
    
    
}

.image-one{
    display: flex;
    
    margin: auto;
    width:50%;
   
}

img{
  border-radius: 20px;
}

.h1text{
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 13px;
  margin-bottom: 30px;
  font-weight: 600;
  color:#598f31
}

.h2text{
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color:#303030 ;
  
  margin-bottom: 30px;

}

.h3text{
    font-size: 20px;
  font-weight: 400;
  width: 90%;
  letter-spacing: 1px;
  margin-bottom: 50px;
  color:#303030 ;
}



.whats-icon{
    width: 50px;
    margin-left: 10px;
}

.button-5 {
  
  align-items: center;
  background-clip: padding-box;
  background-color: #5bac21;
  border: 1px solid transparent;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: 70%;
  border-radius: 30px;
  letter-spacing: 20%;
}

.button-5:hover,
.button-5:focus {
  background-color: #5aba10;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-5:hover {
  transform: translateY(-1px);
}

.button-5:active {
  background-color: #0c1a01;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}


/* sessao 02 */

.section-two{
    
    display: flex;
    margin: 0 auto;
    width: 80%;
    margin-top: 150px;
    align-items: center;
    
    
}
.text02{
    
    width: 150%;
}





.img-section2{
    width: 70%;
    
    
}

/*tabela*/

.beneficios {
    width: 60%;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
}

.beneficio {
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    text-align: center;

    border-bottom: 1px solid #ccc;
}

.beneficio:last-child {
    border-bottom: none;
}

/* Círculo verde */
.icone {
    width: 40px;
    height: 40px;
    min-width: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1b4935;
    color: white;

    border-radius: 50%;
}

.icone i {
    font-size: 18px;
}

/* Texto */
.beneficio span {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;

    color: #173528;

    
    padding: 2px 4px;

    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/*sessao tres*/

.text-tree{
    text-align: center;
}

.section-tree{
    margin-top: 150px;
    
}

/*containers*/
 .container {
    
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: auto;
      margin-top: 100px;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: center;
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card i {
      font-size: 40px;
      color: #4CAF50;
      margin-bottom: 15px;
    }

    .card h3 {
      margin: 10px 0;
      font-size: 20px;
      color: #333;
    }

    .card p {
      font-size: 14px;
      color: #666;
    }

    /* Responsividade */
    @media (max-width: 900px) {
      .container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .container {
        grid-template-columns: 1fr;
      }
    }


    /*sessao quatro*/

    .diferenciais-flex {
        padding-top: 150px;
       
      display: flex;
      flex-wrap: wrap; /* permite quebrar para a linha de baixo */
      justify-content: center;
      gap: 20px;
      max-width: 1200px;
      margin: auto;
      
    }

    .diferencial-box {
      flex: 1 1 180px; /* cresce, encolhe e tem largura mínima */
      max-width: 250px;
      background: #f9f9f9;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: center;
      transition: transform 0.2s ease;
    }

    .diferencial-box:hover {
      transform: translateY(-5px);
    }

    .diferencial-box i {
      font-size: 32px;
      color: #4CAF50;
      margin-bottom: 12px;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .diferencial-box:hover i {
      color: #2e7d32;
      transform: scale(1.1);
    }

    .diferencial-box p {
      font-size: 14px;
      color: #555;
    }

    /* Responsividade */
    @media (max-width: 900px) {
      .diferencial-box {
        flex: 1 1 45%; /* duas colunas */
      }
    }

    @media (max-width: 600px) {
      .diferencial-box {
        flex: 1 1 100%; /* uma coluna */
      }
    }


    /*sessao pra quem*/

    .praquem-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 40px;
      max-width: 900px;
      margin: auto;
      margin-top: 100px;
    }

    .praquem-item {
      display: flex;
      align-items: center;
      background: #fdfdfd;
      border-left: 6px solid #4CAF50;
      border-radius: 6px;
      padding: 12px 16px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      transition: transform 0.2s ease;
    }

    .praquem-item:hover {
      transform: translateX(5px);
    }

    .praquem-item i {
      font-size: 22px;
      margin-right: 12px;
      color: #4CAF50;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .praquem-item:hover i {
      color: #2e7d32;
      transform: scale(1.2);
    }

    .praquem-item p {
      margin: 0;
      font-size: 16px;
      color: #444;
    }

    /* Responsividade */
    @media (max-width: 700px) {
      .praquem-grid {
        grid-template-columns: 1fr;
      }
    }


    /*sessao comentarios*/

    .comentarios-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .comentario-card {
      background: #fdfdfd;
      padding-bottom: 50px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 20px;
      position: relative;
      transition: transform 0.2s ease;
    }

    .comentario-card:hover {
      transform: translateY(-5px);
    }

    .comentario-card .quote {
      position: absolute;
      top: 15px;
      left: 15px;
      font-size: 24px;
      color: #4CAF50;
      opacity: 0.6;
    }

    .comentario-card p {
      font-size: 15px;
      color: #555;
      margin-bottom: 20px;
      padding: 20px;
    }

    .perfil {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .perfil img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #ddd;
    }

    .perfil-info h4 {
      margin: 0;
      font-size: 16px;
      font-weight: bold;
      color: #333;
    }

    .perfil-info span {
      font-size: 14px;
      color: #777;
    }

    .stars {
      margin-top: 10px;
      color: #FFD700; /* dourado */
      font-size: 16px;
    }

    /* Responsividade */
    @media (max-width: 900px) {
      .comentarios-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .comentarios-container {
        grid-template-columns: 1fr;
      }
    }

    /*sessao consulta*/

    

    .banner-consulta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #f5f5f5; /* cinza claro para contraste */
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 75px;
}



.banner-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.banner-text {
  max-width: 500px;
}

.banner-text h2 {
  font-size: 28px;
  color: #2e7d32; /* verde escuro */
  margin-bottom: 20px;
}

.banner-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.btn-consulta {
  background-color: #4CAF50; /* verde principal */
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-consulta:hover {
  background-color: #2e7d32; /* verde escuro no hover */
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 900px) {
  .banner-consulta {
    flex-direction: column;
    text-align: center;
  }
  .banner-img img {
    max-width: 100%;
  }
}

/* ===== CONSULTA SECTION ===== */
.consulta-section {
  background: linear-gradient(135deg, #e8f5e9, #ffffff);
  padding: 60px 20px;
  margin-top: 75px;
}

.consulta-container {
  display: grid;
  grid-template-columns: 2fr 1fr; /* formulário maior que contatos */
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

.consulta-form, .consulta-contato {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.consulta-form h2, .consulta-contato h2 {
  color: #2e7d32;
  margin-bottom: 20px;
}

.consulta-form p {
  margin-bottom: 20px;
  color: #555;
}

.consulta-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.objetivos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.objetivos label {
  font-size: 14px;
  color: #444;
}

.btn-enviar {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-enviar:hover {
  background-color: #2e7d32;
  transform: translateY(-2px);
}

.consulta-contato ul {
  list-style: none;
  padding: 0;
}

.consulta-contato li {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.consulta-contato i {
  color: #4CAF50;
  font-size: 18px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 900px) {
  .consulta-container {
    grid-template-columns: 1fr; /* vira uma coluna */
  }
  .consulta-form, .consulta-contato {
    width: 100%;
  }
}



/* =========================================================
   AJUSTES E RESPONSIVIDADE
   ========================================================= */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.navegador-superior {
    min-height: 100px;
    height: auto;
    position: relative;
}

.header {
    min-height: 100px;
    gap: 30px;
}

.logo img {
    display: block;
}

#btn-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #598f31;
    font-size: 28px;
    cursor: pointer;
}

/* Corrige larguras que causavam overflow */
.text02 {
    width: 100%;
}

.img-section2 {
    width: 50%;
}

.img-section2 img,
.image-one img {
    max-width: 100%;
    height: auto;
    display: block;
}

.beneficios {
    max-width: 100%;
}

/* Tablet */
@media (max-width: 900px) {

    .header {
        width: 90%;
    }

    #btn-mobile {
        display: flex;
    }

    .navegador {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 5%;
        background: #f5f5f5;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .navegador.active {
        display: block;
    }

    #menu {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        width: 100%;
    }

    #menu li {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    #menu li a {
        display: block;
        padding: 12px 10px;
    }

    /* PRIMEIRA SEÇÃO */
    .section-one {
        width: 90%;
        margin-top: 70px;
        gap: 45px;
        align-items: center;
    }

    .text-sessao-one {
        width: 100%;
        text-align: center;
    }

    .image-one {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .image-one img {
        width: 100%;
        max-width: 520px;
    }

    .h1text {
        font-size: 13px;
        letter-spacing: 7px;
        margin-bottom: 20px;
    }

    .h2text {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .h3text {
        width: 100%;
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .button-5 {
        width: auto;
        max-width: 100%;
    }

    /* SEGUNDA SEÇÃO */
    .section-two {
        width: 90%;
        margin-top: 90px;
        flex-direction: column;
        gap: 45px;
        align-items: center;
    }

    .img-section2 {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
    }

    .img-section2 img {
        width: 100%;
        max-width: 520px;
    }

    .text02 {
        width: 100%;
        order: 2;
        text-align: center;
    }

    .text02 .h3text {
        width: 100%;
    }

    .beneficios {
        width: 100%;
        max-width: 520px;
        margin: 30px auto 0;
    }
}

/* Celular */
@media (max-width: 600px) {

    .navegador-superior,
    .header {
        min-height: 80px;
    }

    .header {
        width: 90%;
    }

    .logo img {
        width: 100px;
    }

    .navegador {
        padding: 15px 5%;
    }

    .section-one {
        width: 90%;
        margin-top: 45px;
        gap: 30px;
    }

    .section-two {
        width: 90%;
        margin-top: 70px;
        gap: 30px;
    }

    .h1text {
        font-size: 10px;
        letter-spacing: 4px;
        margin-bottom: 15px;
    }

    .h2text {
        font-size: 27px;
        line-height: 1.25;
    }

    .h3text {
        font-size: 15.5px;
        line-height: 1.6;
    }

    .button-5 {
        width: 100%;
        font-size: 14px;
        padding: 12px 15px;
    }

    .whats-icon {
        width: 35px;
    }

    .text02 .h2text {
        font-size: 27px;
    }

    .text02 .h3text {
        font-size: 15.5px;
    }

    .beneficios {
        width: 100%;
    }

    .beneficio {
        min-height: 78px;
        height: auto;
        padding: 12px 10px;
    }

    .beneficio span {
        font-size: 13px;
    }

    .icone {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .icone i {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .section-one {
        display: flex;
        width: 90%;
        margin-top: 45px;
        gap: 30px;
        flex-direction: column;
    }
}


/* ==========================================
   BOTÃO FLUTUANTE WHATSAPP
========================================== */

.btn-whatsapp-pulse {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    font-size: 34px;

    z-index: 9999;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.20);

    animation: whatsappPulse 5.8s infinite;

    transition: transform 0.3s ease,
                background 0.3s ease;

}


/* ==========================================
   ANIMAÇÃO
========================================== */

@keyframes whatsappPulse {

    0% {

        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.70);

    }

    40% {

        transform: scale(1.05);

        box-shadow:
            0 0 0 8px rgba(37, 211, 102, 0.35);

    }

    70% {

        transform: scale(1);

        box-shadow:
            0 0 0 18px rgba(37, 211, 102, 0);

    }

    100% {

        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0);

    }

}


/* ==========================================
   HOVER
========================================== */

.btn-whatsapp-pulse:hover {

    background: #20bd5a;

    color: #ffffff;

    transform: scale(1.10);

}


/* ==========================================
   ÍCONE
========================================== */

.btn-whatsapp-pulse i {

    line-height: 1;

}


/* ==========================================
   CELULAR
========================================== */

@media (max-width: 768px) {

    .btn-whatsapp-pulse {

        width: 58px;
        height: 58px;

        right: 18px;
        bottom: 18px;

        font-size: 30px;

    }

}