/* ============================================
   Dra. Andréa Ribeiro — Pediatra Especialista em TEA
   Paleta extraída da linha-criativa da marca
   ============================================ */

:root {
  /* Cores principais da marca */
  --forest: #375648;        /* Verde-floresta — principal */
  --forest-dark: #2A4337;   /* Verde mais profundo */
  --sage: #6F7763;          /* Verde-sage secundário */
  --cream: #F4F2E8;         /* Off-white principal */
  --beige: #E7DFC6;         /* Bege médio */
  --beige-dark: #D6C7B3;    /* Bege escuro */
  --caramel: #B89D7A;       /* Caramelo */
  --gold: #BA8E4E;          /* Dourado (accent) */
  --rose: #CBA8BA;          /* Rosa-poeira */
  --rose-light: #DCC1B8;    /* Rosa pálido */

  /* Texto */
  --ink: #2D3A30;           /* Texto principal — verde quase preto */
  --ink-soft: #4A5448;      /* Texto secundário */
  --ink-muted: #8B8A7E;     /* Texto auxiliar */

  /* Sistema */
  --white: #ffffff;
  --shadow-soft: 0 12px 40px -16px rgba(45, 58, 48, 0.18);
  --shadow-card: 0 4px 24px -10px rgba(45, 58, 48, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Fontes */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w: 1280px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease; }

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

em { font-style: italic; color: var(--forest); font-weight: 500; }

p { color: var(--ink-soft); }

/* ============================================
   Wrapper
   ============================================ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

/* ============================================
   NAV
   ============================================ */
nav {
  width: 100%;
  padding: 18px 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(55, 86, 72, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(244, 242, 232, 0.92);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links > a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
}

.nav-links > a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .25s ease;
}

.nav-links > a:not(.btn-nav):hover {
  color: var(--forest);
}

.nav-links > a:not(.btn-nav):hover::after { width: 100%; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--forest);
  color: var(--cream) !important;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all .2s ease;
}

.btn-nav:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-nav i { font-size: 1.15rem; }

/* ============================================
   Botões globais
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--forest);
  color: var(--cream) !important;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 1rem;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -14px rgba(55, 86, 72, 0.45);
}

.btn-primary i { font-size: 1.3rem; }

.btn-primary.btn-lg {
  padding: 20px 38px;
  font-size: 1.08rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 26px;
  background: transparent;
  color: var(--forest) !important;
  border: 1.5px solid var(--forest);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 1rem;
  transition: all .2s ease;
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--cream) !important;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.98rem;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 3px;
  transition: all .2s ease;
}

.btn-text i { transition: transform .2s ease; }
.btn-text:hover { border-color: var(--gold); }
.btn-text:hover i { transform: translateX(3px); }

/* ============================================
   Section helpers
   ============================================ */
.secao { padding: 110px 0; width: 100%; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-eyebrow.light { color: var(--rose-light); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { margin-bottom: 16px; }
.section-head .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--cream);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(186, 142, 78, 0.08) 0%, transparent 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(55, 86, 72, 0.08);
  color: var(--forest);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.25em;
}

.hero-eyebrow i { font-size: 1.05rem; }

.hero h1 {
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero-sub {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 36px;
  border-top: 1px solid rgba(55, 86, 72, 0.12);
}

.badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.badge i {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.25;
}

.badge span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--beige);
  box-shadow: var(--shadow-soft);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 55%,
    rgba(55, 86, 72, 0.12) 100%
  );
  pointer-events: none;
}

.hero-quote {
  position: absolute;
  bottom: -34px;
  left: -24px;
  max-width: 320px;
  padding: 22px 26px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-quote i {
  font-size: 1.6rem;
  color: var(--gold);
}

.hero-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--forest);
  line-height: 1.4;
  margin: 0;
}

/* ============================================
   Tagline strip
   ============================================ */
.tagline-strip {
  background: var(--forest);
  padding: 26px 0;
  width: 100%;
}

.tagline-strip ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.tagline-strip li {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.tagline-strip li[aria-hidden="true"] {
  color: var(--gold);
  font-style: normal;
}

/* ============================================
   Dor / Problema
   ============================================ */
.secao-dor {
  background: var(--cream);
}

.secao-dor h2 {
  max-width: 680px;
  margin-bottom: 16px;
}

.secao-dor .lead { margin-bottom: 56px; }

.dor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dor-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(55, 86, 72, 0.06);
  transition: all .25s ease;
}

.dor-card:hover {
  border-color: rgba(186, 142, 78, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.dor-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.dor-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 500;
}

.dor-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================
   Sobre / História
   ============================================ */
.secao-sobre {
  background: var(--beige);
  position: relative;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.sobre-image {
  position: relative;
  /* border-radius: var(--radius-lg); */
  overflow: hidden;
  /* aspect-ratio: 4 / 5; */
  /* box-shadow: var(--shadow-soft); */
  min-height: 66vh;
}

.sobre-image img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 50%;
}

.sobre-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(244, 242, 232, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sobre-image-badge i {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.sobre-image-badge span {
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.35;
}

.sobre-text h2 {
  margin-bottom: 28px;
}

.sobre-text h2 em {
  color: var(--gold);
}

.sobre-text p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.sobre-text p strong {
  color: var(--forest);
  font-weight: 600;
}

.sobre-fechamento {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem !important;
  color: var(--forest) !important;
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--gold);
  margin: 28px 0 !important;
  line-height: 1.55 !important;
}

/* ============================================
   Atendimento
   ============================================ */
.secao-atendimento {
  background: var(--cream);
}

.atendimento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.atendimento-card {
  background: var(--white);
  padding: 38px 30px;
  border-radius: var(--radius-md);
  text-align: left;
  transition: all .25s ease;
  border: 1px solid rgba(55, 86, 72, 0.05);
}

.atendimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(186, 142, 78, 0.25);
}

.atendimento-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--cream);
  color: var(--forest);
  border-radius: 50%;
  font-size: 1.7rem;
  margin-bottom: 22px;
}

.atendimento-card h3 {
  font-size: 1.22rem;
  color: var(--forest);
  margin-bottom: 10px;
  font-weight: 600;
}

.atendimento-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================
   Credenciais
   ============================================ */
.secao-credenciais {
  background: var(--forest);
  color: var(--cream);
}

.secao-credenciais h2 {
  color: var(--cream);
}

.secao-credenciais .section-eyebrow {
  color: var(--rose-light);
}

.credenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
  text-align: center;
}

.credenciais-grid .credencial:last-child:nth-child(3n + 1) {
  grid-column: 2 / 3;
}

.credencial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 242, 232, 0.1);
  border-radius: var(--radius-md);
  transition: all .25s ease;
}

.credencial:hover {
  border-color: var(--gold);
  background: rgba(186, 142, 78, 0.06);
}

.credencial i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.credencial strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 6px;
}

.credencial span {
  font-size: 0.88rem;
  color: rgba(244, 242, 232, 0.7);
}

/* ============================================
   Depoimentos
   ============================================ */
.secao-depoimentos {
  background: var(--cream);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.depoimento {
  background: var(--white);
  padding: 38px 32px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(55, 86, 72, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}

.depoimento:hover {
  border-color: rgba(186, 142, 78, 0.3);
  box-shadow: var(--shadow-card);
}

.depoimento > i {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 2.2rem;
  color: var(--beige-dark);
}

.depoimento blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  padding-right: 30px;
  flex: 1;
}

.depoimento footer {
  background: var(--forest);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin: 24px -32px -32px -32px;
  padding: 16px 32px;
}

.depoimento strong {
  display: block;
  font-size: 0.98rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 3px;
}

.depoimento span {
  font-size: 0.84rem;
  color: rgba(244, 242, 232, 0.7);
}

/* ============================================
   Processo
   ============================================ */
.secao-processo {
  background: var(--beige);
}

.processo-passos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 60px;
  max-width: 980px;
  margin: 0 auto;
}

.processo-passos li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.passo-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.processo-passos h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 600;
}

.processo-passos p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================
   FAQ
   ============================================ */
.secao-faq {
  background: var(--cream);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0;
  margin-bottom: 12px;
  border: 1px solid rgba(55, 86, 72, 0.08);
  transition: all .2s ease;
  overflow: hidden;
}

.faq-list details[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  transition: color .2s ease;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-list details[open] summary i {
  transform: rotate(180deg);
}

.faq-list details p {
  padding: 0 28px 24px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============================================
   CTA Final
   ============================================ */
.secao-cta {
  background: var(--cream);
  padding: 80px 0 110px;
}

.cta-box {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(186, 142, 78, 0.18) 0%, transparent 70%);
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(203, 168, 186, 0.12) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
}

.cta-content h2 {
  color: var(--cream);
  margin-bottom: 18px;
}

.cta-content > p {
  color: rgba(244, 242, 232, 0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-especialidades {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.cta-especialidades li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(244, 242, 232, 0.08);
  border: 1px solid rgba(244, 242, 232, 0.16);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  color: var(--cream);
}

.cta-especialidades i {
  color: var(--gold);
  font-size: 1.1rem;
}

.cta-content .btn-primary {
  background: var(--gold);
  color: var(--ink) !important;
}

.cta-content .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 16px 40px -14px rgba(186, 142, 78, 0.55);
}

.cta-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 50px 0 28px;
  padding: 36px 0 0;
  border-top: 1px solid rgba(244, 242, 232, 0.15);
  text-align: left;
}

.cta-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cta-info-item i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-info-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 3px;
}

.cta-info-item span {
  font-size: 0.85rem;
  color: rgba(244, 242, 232, 0.7);
  line-height: 1.45;
}

.cta-footnote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(244, 242, 232, 0.65);
  margin: 0;
}

.cta-footnote i { font-size: 1rem; }

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 50%;
  padding: 6px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-brand span {
  font-size: 0.8rem;
  color: rgba(244, 242, 232, 0.6);
  line-height: 1.4;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(244, 242, 232, 0.75);
  margin-bottom: 12px;
  transition: color .2s ease;
}

.footer-col a:hover { color: var(--gold); }

.footer-col a i { font-size: 1.1rem; }

.footer-bottom {
  border-top: 1px solid rgba(244, 242, 232, 0.1);
  padding: 24px 0;
}

.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(244, 242, 232, 0.5);
  margin: 0;
}

.footer-bottom p a{
  color: var(--gold);
  font-weight: 600;
}

.footer-bottom p a:hover { color: rgba(186, 142, 78, 0.55);}

.footer-disclaimer { max-width: 480px; text-align: right; }

/* ============================================
   WhatsApp Float
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px -6px rgba(37, 211, 102, 0.5);
  z-index: 100;
  transition: all .25s ease;
}

.whatsapp-float i { font-size: 2rem; }

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(37, 211, 102, 0.6);
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-quote { left: 0; }

  .sobre-grid { grid-template-columns: 1fr; gap: 50px; }
  .sobre-image { max-width: 480px; margin: 0 auto; width: 100%; }

  .atendimento-grid,
  .credenciais-grid,
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .secao { padding: 70px 0; }
  .hero { padding: 50px 0 80px; }

  .nav-links { gap: 14px; }
  .nav-links > a:not(.btn-nav) { display: none; }
  .nav-logo-sub { display: none; }

  .hero h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-badges { grid-template-columns: 1fr; gap: 14px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { justify-content: center; width: 100%; }

  .hero-quote {
    position: static;
    margin-top: 18px;
    max-width: 100%;
  }

  .tagline-strip ul { gap: 14px; }
  .tagline-strip li { font-size: 0.98rem; }
  .tagline-strip li[aria-hidden="true"] { font-size: 1rem; }

  .dor-grid,
  .atendimento-grid,
  .credenciais-grid,
  .depoimentos-grid { grid-template-columns: 1fr; }

  .processo-passos { grid-template-columns: 1fr; gap: 28px; }

  .cta-box { padding: 44px 28px; }
  .cta-info { grid-template-columns: 1fr; gap: 20px; }
  .cta-content h2 { font-size: 1.7rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .wrap { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float i { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .section-head { margin-bottom: 36px; }
  .cta-box { padding: 36px 22px; }
  .depoimento { padding: 30px 24px 26px; }
  .depoimento > i { top: 22px; right: 22px; font-size: 1.8rem; }
  .depoimento blockquote { font-size: 1.02rem; }
}
