html {
  scroll-behavior: smooth;
  
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
.header {
  background-color: #3E5C76;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
}

.header a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}

.header img {
  width: 400px;
  height: auto;
}


.header nav a {
  margin-left: 25px;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.header h2 a:hover,
.header nav a:hover {
  color: #adabab;
}

/* Fade geral */
.fade-body {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-body.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-slide {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-slide.active {
  opacity: 1;
  transform: translateX(0);
}


/* ===== CONTEÚDO PRINCIPAL ===== */
.layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}

.texto {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 3rem 4rem;
  background-color: #fff;
}

.caixa-texto {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 10px rgb(0, 0, 0);
  max-width: 800px;
}

.caixa-texto h2 {
  font-size: 1.7rem;
  color: #444;
}

.caixa-texto h3 {
  color: #555;
  text-align: justify;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
}

.caixa-texto p {
  color: #555;
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.7rem;
}


.box-buttons {
  margin-top: 2rem;
}

/* botão base */
.box-buttons a {
  background-color: #057a28;
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
  animation: pulse 1.8s infinite ease-in-out; /* efeito pulsar */
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* pulsando */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(5, 122, 40, 0.4);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 12px 6px rgba(5, 122, 40, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(5, 122, 40, 0.4);
  }
}

.box-buttons a:hover {
  background-color: #055c1f;
  transform: translateX(5px) scale(1.05);
  cursor: pointer;
}


.imagem {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

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

}

.faixa-profissional {
  width: 100%;
  background: #dbdbdb;
  padding: 80px 0;
}

.titulo-faixa-profissional {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #2d2d2d;
}

.cards-profissionais {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.card-prof {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 320px;
  padding: 35px 28px;
  border-radius: 18px;
  box-shadow: 0px 8px 28px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.card-prof:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 32px rgba(0,0,0,0.12);
}

.card-prof h3 {
  color: #4c6ef5;
  font-size: 1.4rem;
  margin: 18px 0 12px;
}

.card-prof p {
  color: #333;
  line-height: 1.55;
  font-size: 1.05rem;
}

.icone-card {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.reveal-step {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal-step.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Destaques Elegantes ===== */
.destaque {
  color: #3a5d61;
  font-weight: 600;
}

.destaque-verde {
  color: #057a28;
  font-weight: 600;
}

.titulo-centro {
  text-align: center;
  font-size: 1.7rem;
  color: #3a5d61;
  letter-spacing: 1px;
}

/* ===== FAQ ===== */
.faq-box {
    background: #90b5fa;   
    padding: 50px;
    border-radius: 20px;
    max-width: 900px;
    margin: 60px auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.faq-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff; 
    font-weight: 700;
}

.faq-item {
    background: rgba(255, 255, 255, 0.15); 
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(3px);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 26px;
    transition: .3s;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: .4s ease;
    color: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

@media (max-width: 600px) {
    .faq-title {
        font-size: 28px;
    }
    .faq-question {
        font-size: 18px;
    }
}

/* ===== FOOTER ===== */
.footer {
  background-color: #3E5C76;
  color: #fff;
  padding: 40px 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  margin-top: 0;
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-left img {
  width: 300px;
  height: auto;
}

.footer-right {
  text-align: right;
}

.footer-right h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-right p {
  font-size: 14px;
  margin: 6px 0;
}

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

.footer-right a:hover {
  text-decoration: underline;
  color: #b7bfd8;
}

.footer-icons {
  margin-top: 15px;
}

.footer-icons a img {
  width: 50px;
  height: 50px;
  margin-left: 10px;
  transition: opacity 0.3s;
}

.footer-icons a img:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

.footer-bottom p {
  margin: 4px 0;
  font-size: 13px;
  opacity: 0.9;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 900px) {
  .layout {
    flex-direction: column-reverse;
  }

  .imagem {
    width: 100%;
    height: 45vh;
  }

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

  .texto {
    padding: 2rem 1rem;
  }

  .caixa-texto {
    padding: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 20px;
  }

  .header {
    flex-direction: column;
    text-align: center;
  }

  .header nav a {
    margin: 10px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px 20px;
  }

  .header h2 {
    font-size: 1.2rem;
  }

  .caixa-texto {
    padding: 1.5rem;
  }

  .footer-left img {
    width: 240px;
  }

  .footer {
    padding: 30px 20px 15px;
  }
}



html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; }}

/* animação suave da página */
.fade-body { animation: pageFade 1.3s ease-in-out; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; }}

.fade-slide { opacity: 0; animation: fadeSlide 1.4s ease forwards; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); }}

/* zoom lento na imagem */
.smooth-zoom img {
  transition: transform 8s ease, opacity 1.5s;
  opacity: 0.9;
}
.smooth-zoom img:hover { transform: scale(1.06); opacity: 1; }

.pulse-btn { animation: pulse 2.2s infinite ease-in-out; }
@keyframes pulse { 0%{transform:scale(1)}50%{transform:scale(1.07)}100%{transform:scale(1)} }
