header {
    width: 100%;
    padding: 28px 8%;
    position: sticky;
    top: 0;
    background-color: var(--color-primary-1);
    z-index: 3;
}

#navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav_logo {
    font-size: 24px;
    color: var(--color-primary-6);
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-item a {
    text-decoration: none;
    color: #1d1d1dad;
    font-weight: 740;
}

.nav-item.active a {
    color: var(--color-neutral-1);
    border-bottom: 3px solid var(--color-primary-4);
}

#mobile_btn {
    display: none;
}

#mobile_menu {
    display: none;
}

@media screen and (max-width: 1170px) {
    #nav_list,
    #navbar .btn-default {
        display: none;
    }

    #mobile_btn {
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.5rem;
        cursor: pointer;
    }

    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0px;
    }

    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
    } 
}




#home {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.top-image img {
  width: 130px; 
  display: block;
  margin: 0 auto 2rem;

}


.home-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.text-content {
  flex: 1.5;
}

.text-content .title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.text-content .title span {
  color: #e60000;
}

.text-content .description {
  font-size: 1.2rem;
  line-height: 1.6;
}




.image-content img {
  width: 90vw; 
  max-width: none;

}


.image-content img {
  width: 100%;
  max-width: 600px; 
  height: auto;
  display: block;
  margin: 0 auto;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.text-content {
  animation: fadeInUp 3s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}


.image-content {
  animation: fadeInUp 2s ease forwards;
  animation-delay: 1s;
  opacity: 0;
  
}



@media (max-width: 768px) {
  .home-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .text-content {
    flex: 1;
    padding: 0 1rem;
  }

  .text-content .title {
    font-size: 2rem;
  }

  .text-content .description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .image-content {
    flex: 1;
    padding: 0 1rem;
  }

  .image-content img {
    /*width: 100vw; 
    max-width: 200%;
    height: auto;
    display: block;
    margin: 0 auto;
    text-align: center;*/

    width: 100vw; 
    
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .top-image img {
    width: 90px; 
    margin-bottom: 1.5rem;
    text-align: center;
  }

  #home {
    padding: 1.5rem 1rem;
  }
}


:root {
    --color-primary-1: #fff9ea;
    --color-primary-2: #fff;
    --color-primary-3: #f8d477;
    --color-primary-4: #2a8d3c;
    --color-primary-5: #ffcb45;
    --color-primary-6: #ffde59;

    --color-neutral-0: #fff;
    --color-neutral-1: black;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: var(--color-primary-1);
}


section {
    padding: 30px 8%;
}


.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2a8d3c;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
    color: #fff;
    /*margin-left: 18px; */
}

.btn-default:hover {
    background-color: var(--color-primary-3);
}

/*.social-media-buttons {
    display: flex;
    gap: 18px;
}*/


.section-title {
    color: var(--color-primary-6);
    font-size: 1.600rem;
}

.section-subtitle {
    font-size: 2.1875rem;
} 

.button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 60px 0; 

  
   
}



.button-wrapper {
  text-align: center;
  margin-top: 2rem;

}



.btn-default{
  display: inline-block;
  padding: 12px 24px;
  background-color: #2a8d3c;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;

}

.imagem {
  max-width: 35%;
}

.imagem img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .revisao2 {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .conteudo {
    max-width: 100%;
  }

  .imagem {
    max-width: 100%;
    margin-top: 30px;
  }

  .botao-laranja {
    display: inline-block;
    margin-top: 20px;
  }
}


.sobre-nos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 60px 30px;
  width: 100vw; 
  background-color: #ebe1c8; 
  border-radius: 0; 
  box-sizing: border-box;
  flex-wrap: wrap;
  margin: 0; 
}


.container-interno {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.simbolo{
  width: 150px;
  height: 150px;
}
.image-container img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.text-container {
  flex: 1 1 500px;
  max-width: 600px;
}

.text-container h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1e293b;
}

.text-container .frase h2{
  color: #22722d;
}

.text-container p {
  font-size: 25px;
  margin-bottom: 16px;
  color: #333;
  line-height: 1.6;
}

.text-container em {
  font-style: italic;
  font-size: 16px;
  color: #666;
}


.text-container {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  padding-right: 1px; 
}

.btn-sobre {
  align-self: flex-end;
  margin-top: 20px;
  margin-right: 20px; 
  padding: 16px 32px;
  background-color: #2a8d3c;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-sobre:hover {
  background-color:#f8d477; 
}


.text-container, .btn-sobre {
  opacity: 0;
  transform: translateX(-30px);
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}


.text-container {
  animation-name: fadeSlideInLeft;
  animation-delay: 0s;
}

.btn-sobre {
  animation-name: fadeSlideInLeft;
  animation-delay: 0.2s;  
}


.show.text-container {
  animation: fadeSlideInLeft 0.8s ease-out forwards;
}

.show.btn-sobre {
  animation: fadeSlideInLeft 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.show.image-container {
  animation: fadeSlideInRight 1s ease-out forwards;
  animation-delay: 0.3s;
}




.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 21px;
  color: #333;
}

.check-icon {
  color: #F27820; 
  font-weight: bold;
  font-size: 21px;
  line-height: 1.2;
}


.image-container {
  opacity: 0;
  transform: translateX(30px);
  animation-name: fadeSlideInRight;
  animation-delay: 1s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

@keyframes fadeSlideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@keyframes fadeSlideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}




@media (max-width: 768px) {
  .sobre-nos {
    flex-direction: column-reverse;
    text-align: center;
  }

  .image-container img {
    width: 280px;
    height: 280px;
  }

  .text-container {
    max-width: 100%;
  }

  .text-container h2 {
    font-size: 26px;
  }

  .text-container p {
    font-size: 16px;
  }

  .btn-sobre {
    padding: 14px 24px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .image-container {
    margin: 20px auto; 
    display: block;    
    max-width: 300px;  
  }
} 








@media (max-width: 768px) {
  .primeira-imagem {
    flex-direction: column-reverse;
    text-align: center;
  }

  .terceira-imagem img {
    width: 280px;
    height: 280px;
  }

  .segunda-imagem {
    max-width: 100%;
  }

  .segunda-imagem h2 {
    font-size: 26px;
  }

  .segunda-imagem p {
    font-size: 16px;
  }

  .botao-saber {
    padding: 14px 24px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .terceira-imagem {
    margin: 20px auto; 
    display: block;    
    max-width: 300px;  
  }
}






.sobre-noss {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 60px 30px;
  width: 100vw; 
  background-color: #fff9ea; 
  border-radius: 0; 
  box-sizing: border-box; 
  flex-wrap: wrap;
  margin: 0; 
}


.container-internos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}


.image-containers img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.text-containers {
  flex: 1 1 500px;
  max-width: 600px;
}

.text-containers h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1e293b;
}

.text-containers .frases h2{
   color: #22722d;
}

.text-containers p {
  font-size: 21px;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.6;
}

.text-containers em {
  font-style: italic;
  font-size: 16px;
  color: #666;
}


.text-containers {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  padding-right: 1px; 
}

.btn-sobres {
  align-self: flex-end;
  margin-top: 20px;
  margin-right: 20px; 
  padding: 16px 32px;
  background-color: #2a8d3c;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-sobres:hover {
  background-color: #f8d477;
}



.text-containers, .btn-sobres, .image-containers {
  opacity: 0;
  transform: translateX(30px);
}


.show.text-containers {
  animation: fadeSlideInLeft 0.8s ease-out forwards;
  transform: translateX(-30px);
}

.show.btn-sobres {
  animation: fadeSlideInLeft 0.8s ease-out forwards;
  animation-delay: 0.2s;
  transform: translateX(-30px);
}

.show.image-containers {
  animation: fadeSlideInRight 1s ease-out forwards;
  animation-delay: 0.3s;
}



@keyframes fadeSlideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@keyframes fadeSlideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}




@media (max-width: 768px) {
  .sobre-noss {
    flex-direction: column-reverse;
    text-align: center;
  }

  .image-containers img {
    width: 280px;
    height: 280px;
  }

  .text-containers {
    max-width: 100%;
  }

  .text-containers h2 {
    font-size: 26px;
  }

  .text-containers p {
    font-size: 16px;
  }

  .btn-sobres {
    padding: 14px 24px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .image-containers {
    margin: 20px auto; 
    display: block;    
    max-width: 300px;  
  }
}

.formu {
  background-color: #fff9ea;
  min-height: 48vh;


}
.formulario-whatsapp {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 420px;
  margin: 40px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', sans-serif;
}

.formulario-whatsapp h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #2E7D32;
  font-size: 22px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #2E7D32;
  outline: none;
}

.btn-whatsapp {
  width: 100%;
  background-color: #25D366;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

.previdenciarista {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background-color: #ebe1c8;
  font-family: Arial, sans-serif;
  gap: 40px;
}

.texto {
  width: 50%;
}

@media (max-width: 768px) {
  .previdenciarista {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .texto {
    width: 100%;
  }

  .imagem {
    width: 100%;
  }

  .imagem img {
    width: 100%;
    height: auto;
  }
}



.previdenciarista h1 {
  font-size: 29px;
  color: #1e293b;
  margin-bottom: 20px;
}

.previdenciarista p {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.teste-gratis {
  font-size: 18px;
  color: #1e293b;
}

.teste-gratis a {
  color: #2a8d3c;
  text-decoration: none;
  font-weight: bold;
}



.imagem {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



.imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





@media (max-width: 768px) {
  .previdenciarista {
    flex-direction: column;
    text-align: center;
    padding: 50px 25px;
  }

  .texto, .imagem {
    max-width: 100%;
  }

  .imagem {
    margin-top: 20px;
  }
}



#whatsapp_button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out;
}

#whatsapp_button:hover {
  transform: scale(1.1);
}

#whatsapp_button img {
  width: 30px;
  height: 30px;
  filter: invert(1); /* Deixa o ícone branco dentro do fundo verde */
}


 footer {
background-color: #ebe1c8;
}

#footer_items {
    display: flex;
    justify-content: space-between;
    padding: 0px 8% 24px 8%;
    align-items: center;
}

#copyright {
    color: var(--color-neutral-1);;
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    #footer_items {
        flex-direction: column;
        gap: 20px;
    }
}

/*.maternidadee{
  background-color: #ebe1c8;
}

#home {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sec-top-img img {
  width: 110px; 
  display: block;
  margin: 0 auto 2rem;
}

.sec-flex-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  
}

.sec-text-box {
  flex: 1.5;
}

.sec-text-box .sec-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sec-text-box .sec-title .sec-highlight {
  color: #e60000;
}

.sec-text-box .sec-desc .mater{
  color: #e60000;
}


.sec-text-box .sec-desc {
  font-size: 1.2rem;
  line-height: 1.6;
}

.sec-img-box img {
  width: 100%;
  max-width: 600px; 
  height: auto;
  display: block;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sec-text-box {
  animation: fadeInUp 3s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.sec-img-box {
  animation: fadeInUp 2s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}


.sec-text-box, .sec-img-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}


.sec-text-box.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.sec-img-box.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}


@media (max-width: 768px) {
  .sec-flex-wrap {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .sec-text-box {
    flex: 1;
    padding: 0 1rem;
  }

  .sec-text-box .sec-title {
    font-size: 2rem;
  }

  .sec-text-box .sec-desc {
    font-size: 1rem;
    line-height: 1.5;
  }

  .sec-img-box {
    flex: 1;
    padding: 0 1rem;
  }

  .sec-img-box img {
    width: 100vw; 
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .sec-top-img img {
    width: 90px; 
    margin-bottom: 1.5rem;
  }

  #home {
    padding: 1.
  }
}
*/

/*.footer {
  background-color: #ebe1c8;
  padding: 30px 20px;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-height: 80px;
}

.footer-info {
  text-align: center;
  flex: 1;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
  color: black;
}

.footer-info a {
  color: #fff;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.ra-badge {
  height: 40px;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon {
  background-color: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s;
}

.social-icon img {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background-color: #c49a3d;
}


.telefone {
  text-align: center;
  color: black;
  font-family: Arial, sans-serif;
  padding: 1px;
}

.telefone-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; 
  margin-bottom: 10px;
  color: black;

}



.telefone-item img {
  width: 16px;
  height: 16px;
}


*/