:root {
  --primary: #296B6B;
  --primary-soft: #e3f0f0;
  --primary-softer: #f3f8f8;
  --primary-dark: #1f5555;
  --primary-darker: #166d68;

  --whatsapp: #25D366;
  --whatsapp-hover: #1ebe5d;

  --brown: #7b5a46;
  --brown-hover: #664a3a;
  --kicker: #7a8a96;

  --bg: #f5f7f7;
  --text: #22333b;
  --muted: #4a5a63;
  --card: #ffffff;
  --border: #d0dde3;
  --max-width: 1300px;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;
  --section-px: 5rem;
  --shadow-soft: 0 18px 35px rgba(32, 58, 67, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 0rem 3rem;
}

/* ============ BOTÃO FLUTUANTE WHATSAPP ============ */

.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  z-index: 50;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 40px;
  height: 40px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 768px) {

/* Faz o bloco contato ocupar a tela toda */
  #contato {
    padding: 2rem 1.5rem 3rem;  /* diminui laterais */
  }
}


/* ============ NAVBAR ============ */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(208, 221, 227, 0.8);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 2px solid var(--primary-soft);
  background: #fff;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--primary-dark);
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--muted);
}

.nav-links a {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
  border-color: rgba(41, 107, 107, 0.2);
  background: var(--primary-softer);
}

.nav-burger {
  display: none;
}

.nav-links-mobile {
  display: none;
}

/* ============ HERO (DESKTOP) ============ */

.hero {
  position: relative;
  display: flex;
  align-items: center;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;

  background-image: url("amanda-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 0;
  overflow: hidden;
  min-height: 430px;
  padding: 2.5rem var(--section-px) 3.5rem;
}

.hero-content {
  max-width: 520px;
  padding: 1.5rem 1.75rem 2rem;
  border-radius: 1.2rem;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.3rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
  color: #ffffff;

  opacity: 0;
  transform: translateX(-40px);
  animation: heroSlideIn 0.7s ease-out forwards;
  animation-delay: 0.1s;
}

.hero-subtitle-main {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  opacity: 0;
  transform: translateX(-40px);
  animation: heroSlideIn 0.7s ease-out forwards;
  animation-delay: 0.25s;
}

.hero-subtitle-extra {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateX(-40px);
  animation: heroSlideIn 0.7s ease-out forwards;
  animation-delay: 0.4s;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-40px);
  animation: heroSlideIn 0.7s ease-out forwards;
  animation-delay: 0.7s;
  margin-bottom: 1.6rem; /* espaço acima do botão */
}

.hero-meta span {
  display: flex;
  flex-direction: column;
}

.hero-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #e2e8f0;
}

.hero-meta-value {
  font-weight: 500;
  margin-top: 0.1rem;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  opacity: 0;
  transform: translateX(-40px);
  animation: heroSlideIn 0.7s ease-out forwards;
  animation-delay: 1s;
}

.btn-primary {
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #f7fafb;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 12px 26px rgba(41, 107, 107, 0.3);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(41, 107, 107, 0.35);
}

/* ============ SEÇÕES GENÉRICAS ============ */

/* Tirar o espaço reto entre as seções que têm onda */
#inicio,
#sobre,
#minha-abordagem,
#caminho-terapeutico,
#temas,
#duvidas,
#contato {
  margin-bottom: 0;
  margin-top: 0;
}

section {
  padding: 0rem 0rem;
  margin-bottom: 3rem;
}

#sobre {
  background-image: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)),url("fundo_sobre_mim.webp");
  background-repeat: repeat;
  background-size: 300px;
  background-color: #ffffff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 2rem var(--section-px) 3.5rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
  color: var(--kicker);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  width: 100%;
  margin-bottom: 1.4rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.3fr);
  gap: 2rem;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: transparent;
  padding: 1.4rem 1rem;
  box-shadow: var(--shadow-soft);
}

#sobre .card {
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--primary-dark);
}

.card p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.sobre-photo {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

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

.tema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

/* Cards de temas */
.tema-item {
  border-radius: 1.1rem;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 1.4rem 1.3rem;
  font-size: 0.85rem;
  color: var(--muted);
  box-shadow: 0 8px 18px rgba(28, 57, 66, 0.08);
}

/* Ícone de imagem no topo do card */
.tema-item-icon {
  width: 40px;          /* tamanho do ícone */
  height: 40px;
  object-fit: contain;  /* não distorce a imagem */
  margin-bottom: 0.75rem;
  display: block;
}

.tema-item strong {
  color: var(--primary-dark);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.tema-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 3rem;   /* espaço acima do botão */
  margin-bottom: 2rem; /* espaço abaixo, antes do próximo bloco */
}

/* ============ SOBRE MIM – AÇÕES (WHATS / INSTA) ============ */

.sobre-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.sobre-actions .icon {
  width: 1.3rem;
  height: 1.3rem;
  margin-right: 0.5rem;
}

.btn-whats-full {
  background: var(--primary);
  border-color: var(--primary-dark);
  border: 1px solid #1a9e4c;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  box-shadow: 0 12px 26px rgba(41, 107, 107, 0.3);
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-whats-full .icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  fill: white;
  color: white;
}

.btn-whats-full:hover {
  background: #1a9e4c;
}

.btn-instagram-full {
  background: white;
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  box-shadow: 0 12px 26px rgba(41, 107, 107, 0.15);
  transition: 0.2s ease;
  white-space: nowrap;
}

/* AJUSTE DO ÍCONE DO INSTAGRAM – VOLTAR AO TAMANHO/COR ANTERIORES */
.btn-instagram-full .icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  fill: var(--primary-dark);
  color: var(--primary-dark);
}

.btn-instagram-full:hover {
  background: var(--primary-soft);
  border-color: var(--primary-dark);
}

/* ============ MINHA ABORDAGEM ============ */

#minha-abordagem {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 2rem var(--section-px) 3.5rem;
  position: relative;
  background: var(--primary);
}

/* Textos FORA do card em branco */
#minha-abordagem .section-kicker,
#minha-abordagem .section-title,
#minha-abordagem .section-sub {
  color: #ffffff;
}

#minha-abordagem .card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35); /* bem suave, pode pôr 'none' se quiser sem borda */
}

#minha-abordagem::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;              /* puxa a onda para cima, encaixando na seção anterior */
  height: 80px;            /* mesma altura do SVG */
  background-image: url("onda-top-verde.svg");
  background-repeat: repeat-x;
  background-size: 120px 80px;  /* pode ajustar para a onda ficar mais larga/estreita */
  pointer-events: none;
}

/* ============ CAMINHO TERAPÊUTICO ============ */

#caminho-terapeutico {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background:
    url("fundo_caminho2.webp") repeat,
    var(--brown);
  background-size: 300px; /* igual ao sobre mim, ajuste se quiser */
  padding: 3rem var(--section-px) 4rem;
  color: #ffffff;
  position: relative;
}

/* animação de baixo para cima nesse bloco */
#caminho-terapeutico.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

#caminho-terapeutico.reveal-up.show {
  opacity: 1;
  transform: translateY(0);
}

#caminho-terapeutico .section-kicker,
#caminho-terapeutico .section-title,
#caminho-terapeutico .section-sub,
#caminho-terapeutico h3,
#caminho-terapeutico p,
#caminho-terapeutico li {
  color: #ffffff;
}

/* Onda entre 'minha abordagem' (branco) e 'caminho terapêutico' (marrom) */
#caminho-terapeutico::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;                      /* sobe a onda por cima da seção de cima */
  height: 60px;                    /* mesma altura do SVG */
  background-image: url("onda-top-verde.svg");
  background-repeat: repeat-x;
  background-size: 120px 60px;     /* largura/altura do SVG */
  pointer-events: none;
  transform: scaleY(-1);
}

.caminho-grid {
  display: grid;
  /* foto só o tamanho que precisar, texto ocupa o resto */
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 3fr);
  gap: 2.5rem;
  margin-top: 2.2rem;
  align-items: flex-start;
}

.caminho-photo {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: auto;
  max-height: auto;           /* aqui você regula o tamanho da foto */
}

/* IMPORTANTE: tirar o width: 40% e voltar ao 100% */
.caminho-photo img {
  width: auto;
  height: auto;
  object-fit: contain;   /* não corta a foto */
}

.caminho-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.caminho-text p {
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}

.caminho-text ul {
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

/* wrapper para centralizar */
.caminho-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* botão igual o do hero */
.btn-whats {
  background: var(--primary);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  box-shadow: 0 12px 26px rgba(29, 143, 135, 0.3);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
}

.btn-whats:hover {
  background: var(--primary-darker);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(29, 143, 135, 0.35);
}

.btn-whats .icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  fill: #ffffff;
  color: #ffffff;
}


/* ============ TEMAS (COM CARD MOVIDO) ============ */

#temas {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0.5rem var(--section-px) 3.5rem;
  position: relative;
}

#temas::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;                      /* encosta na base do bloco marrom */
  height: 60px;                    /* mesma altura que usamos antes */
  background-image: url("onda-top-branca.svg");
  background-repeat: repeat-x;
  background-size: 120px 60px;
  pointer-events: none;
  color: #ffffff;
}

.tema-card {
  border-radius: 1.5rem;
  padding: 1.6rem 1.7rem;
  margin-bottom: 2rem;
  background: var(--brown);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.tema-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.tema-card p {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

/* ============ CONTATO ============ */

#contato {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0.5rem var(--section-px) 3.5rem;
  margin-top: 2rem;
}

.contato-card {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 1.5rem;
  border-radius: 1.7rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #ffffff, #edf5f4);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.contato-info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.contato-list {
  font-size: 0.9rem;
  color: var(--muted);
}

.contato-list dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--kicker);
  margin-top: 0.6rem;
}

.contato-list dd {
  margin-left: 0;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.contato-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: center;
}

.contato-actions small {
  font-size: 0.75rem;
  color: var(--muted);
}

.btn-whatsapp {
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--primary);
  border-color: var(--primary-dark);
  color: #f9fafb;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 14px 26px rgba(34, 197, 94, 0.4);
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.btn-secondary {
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #ffffff;
  color: var(--muted);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-secondary:hover {
  background: var(--primary-soft);
  border-color: rgba(41, 107, 107, 0.4);
  color: var(--primary-dark);
}

footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(172, 185, 192, 0.9);
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ============ ANIMAÇÕES GERAIS (REVEAL) ============ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
}

.reveal.show,
.reveal-left.show,
.reveal-right.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ============ MOBILE ============ */

@media (max-width: 768px) {
  .nav-inner {
    padding-inline: 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(172, 185, 192, 0.9);
    background: #ffffff;
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
    color: var(--muted);
    align-items: center;
    gap: 0.3rem;
  }

  .nav-links-mobile {
    display: none;
    flex-direction: column;
    padding: 0.5rem 1.5rem 0.75rem;
    gap: 0.4rem;
    font-size: 0.85rem;
    background: #f9fbfb;
    border-top: 1px solid rgba(208, 221, 227, 0.9);
  }

  .nav-links-mobile a {
    padding: 0.4rem 0.25rem;
    border-radius: 0.6rem;
  }

  .nav-links-mobile.show {
    display: flex;
  }

  .page {
    padding-inline: 1.25rem;
  }

  .hero {
    padding: 4.5rem 1.2rem 2.4rem;
    min-height: 520px;
    background-image: url("amanda_cadeira.webp"); /* HERO MOBILE DIFERENTE */
    background-position: center;
  }

  .hero-content {
    /*background: transparent;
    padding: 0;*/
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-title {
    font-size: 2.1rem;
    margin-bottom: 0.2rem;
  }

  .hero-subtitle-main {
    font-size: 1rem;
  }

  .hero-subtitle-extra {
    font-size: 0.9rem;  /* texto menor no mobile */
  }

  .hero-meta {
    font-size: 0.8rem;
  }

  .hero-meta-label {
    font-size: 0.75rem;
  }

  .hero-actions {
    margin-top: 0.8rem;
  }

  .btn-primary {
    white-space: nowrap;
    font-size: 1rem;
    padding: 0.9rem 0.5rem;
  }

  /* SOBRE AÇÕES – botões empilhados no mobile */
  .sobre-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .sobre-actions a {
    width: 100%;
    justify-content: center;
  }

  #sobre {
    padding: 2rem 1.5rem 3rem;
  }

  .section-grid,
  .contato-card {
    grid-template-columns: minmax(0, 1fr);
  }

  #caminho-terapeutico {
    padding: 2.4rem 1.5rem 3rem;
  }

  .caminho-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .caminho-photo {
    max-height: 360px;
  }

  #minha-abordagem {
    padding: 2rem 1.5rem 3rem;
  }

  .caminho-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
  }

  #temas {
    padding: 0 1.25rem;
  }

  #temas .caminho-btn-wrapper {
    margin-bottom: 2.5rem; /* ou 3rem se quiser mais espaço */
  }

  #contato {
    padding: 2rem 1rem 2.5rem;   /* laterais bem menores */
  }

  .contato-card {
    padding: 1.2rem 1rem;       /* card mais "esticado" */
  }

}

/* ============ DÚVIDAS (FAQ) ============ */

#duvidas {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3rem var(--section-px) 4rem;
  background: var(--primary); /* verdinho de fundo */
}

.faq-wrapper {
  max-width: 980px;
  margin: 0 auto;
  background: transparent;
  border-radius: 1.8rem;
  padding: 2.2rem 2.5rem 2.5rem;
  border: 1px solid #ffffff;
  box-shadow: 0 18px 35px rgba(32, 58, 67, 0.08);
}

.faq-wrapper .section-kicker {
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.faq-wrapper .section-title {
  margin-bottom: 1.5rem;
  color: #ffffff;
}

/* Lista de perguntas */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #ffffff;
}

.faq-question-btn {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  color: #ffffff;
}

.faq-question-btn:hover {
  color: var(--primary-soft);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: #ffffff;
  flex-shrink: 0;
}

/* estado aberto */
.faq-question-btn.open .faq-icon {
  background: transparent;
  color: #ffffff;
}

/* Área da resposta (abre/fecha) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  padding-left: 2.2rem; /* alinhado com o texto da pergunta */
  font-size: 0.95rem;
  color: var(--primary-soft);
}

.faq-answer p {
  margin-bottom: 0.9rem;
}

/* quando aberta */
.faq-answer.open {
  opacity: 1;
  margin-bottom: 0.6rem;
}

/* separador entre itens */
.faq-item-wrapper {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding-top: 0.5rem;
}
.faq-item-wrapper:first-of-type {
  border-top: none;
  padding-top: 0;
}

@media (max-width: 768px) {
  #duvidas {
    padding: 2.4rem 1.5rem 3rem;
  }

  .faq-wrapper {
    padding: 1.8rem 1.5rem 2rem;
  }
}

/* --- layout de 2 colunas para o bloco de dúvidas --- */
.duvidas-container {
  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

/* Coluna da esquerda = FAQ */
.duvidas-left {
  flex: 1.4; /* maior */
}

/* Coluna da direita = frase + botão */
.duvidas-right {
  flex: 1;
  color: #ffffff;
  padding-top: 1rem;
}

.duvidas-right h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.duvidas-right .btn-whats-cta {
  background: #0FA98F;
  color: white;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.duvidas-right .btn-whats-cta:hover {
  background: #0c8f78;
  transform: translateY(-2px);
}

.btn-whats-cta svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Mobile */
@media (max-width: 900px) {
  .duvidas-container {
    flex-direction: column;
  }
}

.contato-list .icon.contato-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  top: 2px;
}

/* Ajuste fino do alinhamento do ícone do Instagram no bloco Contato */
.contato-list svg.contato-icon {
  position: relative;
  top: 25px;
}

/* ============ SKIP LINK ============ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 9999;
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ============ FOCUS INDICATORS ============ */
.nav-links a:focus-visible,
.nav-links-mobile a:focus-visible,
.btn-primary:focus-visible,
.btn-whats-full:focus-visible,
.btn-instagram-full:focus-visible,
.btn-whats:focus-visible,
.btn-whats-cta:focus-visible,
.btn-whatsapp:focus-visible,
.btn-secondary:focus-visible,
.faq-question-btn:focus-visible,
.whatsapp-float:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
