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

:root {
  --cream:          #FAF6F0;
  --sage:           #EEF0E8;
  --lilac:          #EDE6F2;
  --babyblue:       #E4EEF3;
  --terracota:      #C25B3F;
  --terracota-dark: #a84a32;
  --dark:           #3B1F1A;
  --gold:           #C9A84C;
  --text:           #4A3728;
  --muted:          #7a6a5c;
  --card-bg:        #FFFFFF;
  --border:         #E8DDD5;
  --wa:             #25D366;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* previne scroll lateral no iOS Safari */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
::selection { background: #f0d7c8; color: var(--dark); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.05rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9a48b, var(--terracota));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 600;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav ul a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 500;
  transition: color .2s;
}
nav ul a:hover { color: var(--terracota); }

.btn-primary {
  background: var(--terracota);
  color: #fff;
  border: none;
  padding: .8rem 1.5rem;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--terracota-dark); transform: translateY(-1px); }
.btn-primary svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-outline {
  border: 1.5px solid var(--dark);
  color: var(--dark);
  padding: .75rem 1.5rem;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all .2s;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--dark); color: #fff; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--dark);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ── HERO ── */
#hero {
  padding: 4.5rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, #f0d7c8 0%, transparent 65%);
  opacity: 0.55;
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage) 0%, transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: .42rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.hero-badge svg { width: 14px; height: 14px; stroke: var(--terracota); fill: none; stroke-width: 2; }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 .highlight {
  color: var(--terracota);
  font-style: italic;
  font-weight: 400;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 480px;
  margin-bottom: 1rem;
  opacity: .92;
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--terracota);
  font-weight: 700;
  display: block;
  line-height: 1.1;
}
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 0.2rem; }

.hero-image-wrap { position: relative; }
.hero-image-frame {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin-left: auto;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #e6cdb9, var(--sage));
  transform: rotate(-3deg);
}
.hero-image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  transform: translate(8px, 8px);
  box-shadow: 0 20px 50px rgba(59,31,26,0.18);
}
.hero-quote {
  position: absolute;
  bottom: 2.2rem;
  left: -1.5rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  max-width: 220px;
  font-size: .85rem;
  color: var(--text);
  font-style: italic;
  z-index: 2;
}
.hero-quote-icon {
  color: var(--terracota);
  font-size: 1.1rem;
  display: block;
  margin-bottom: .3rem;
  font-style: normal;
}
.hero-tag-card {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 3;
  white-space: nowrap;
}
.hero-tag-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-tag-icon svg { width: 16px; height: 16px; stroke: #5a7d4f; fill: none; stroke-width: 1.8; }
.hero-tag-text { line-height: 1.2; }
.hero-tag-eyebrow { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.hero-tag-title { font-size: 0.82rem; font-weight: 600; color: var(--dark); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 1.8rem;
  font-size: 0.83rem;
  color: var(--muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust svg { width: 16px; height: 16px; stroke: var(--terracota); fill: none; stroke-width: 1.8; }

/* ── SECTIONS ── */
section.alt       { background: var(--sage); }
section.alt-cream { background: var(--cream); }
section.alt-lilac { background: var(--lilac); }
section { padding: 5.5rem 2rem; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--terracota);
  opacity: 0.5;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h2 em { font-weight: 400; color: var(--terracota); }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-intro { font-size: 1.02rem; color: var(--text); opacity: .85; max-width: 620px; line-height: 1.7; }

.section-header--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

/* ── PAIN ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 2.5rem;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
}
.pain-card::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracota);
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.pain-closing {
  margin-top: 2.5rem;
  padding: 1.5rem 1.8rem;
  background: #fff;
  border-left: 3px solid var(--terracota);
  border-radius: 12px;
  max-width: 720px;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ── HOW IT HELPS ── */
.help-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.help-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 420px;
}
.help-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.help-quote-card {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 3;
  white-space: nowrap;
}
.help-quote-card .help-tag-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.help-quote-card .help-tag-icon svg { width: 16px; height: 16px; stroke: #5a7d4f; fill: none; stroke-width: 1.8; }
.help-quote-card .help-tag-text { line-height: 1.2; }
.help-quote-card .help-tag-eyebrow { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); display: block; }
.help-quote-card .help-tag-title { font-size: 0.82rem; font-weight: 600; color: var(--dark); display: block; }

.help-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin-top: 2rem;
}
.help-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.help-list svg { width: 17px; height: 17px; stroke: var(--terracota); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 0.15rem; }

/* ── SPECIALTIES ── */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.specialty-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.specialty-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(59,31,26,0.08); }
.specialty-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.specialty-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.specialty-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* ── HOME VISIT ── */
#domicilio {
  background: var(--terracota);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#domicilio::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
}
#domicilio .section-inner { position: relative; }
.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
#domicilio .section-label { color: var(--gold); }
#domicilio .section-label::before { background: var(--gold); }
#domicilio h2 { color: #fff; }
#domicilio h2 em { color: #f0d7c8; }
#domicilio .section-intro { color: rgba(255,255,255,0.88); max-width: 520px; }
.home-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin: 2rem 0;
}
.home-benefits li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  padding: 0.45rem 0;
}
.home-benefits svg { width: 16px; height: 16px; stroke: #f0d7c8; fill: none; stroke-width: 2.2; flex-shrink: 0; margin-top: 0.18rem; }
.home-cta { background: #fff; color: var(--dark); }
.home-cta:hover { background: #fef9f0; color: var(--dark); }
.home-illustration {
  aspect-ratio: 4/5;
  max-width: 440px;
  margin-left: auto;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #F5E6D8 0%, #EDD9C5 60%, #E0C6AE 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.25);
}
.home-illustration svg { width: 100%; height: 100%; display: block; }
.home-illustration .scene-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font-size: 0.78rem;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.home-illustration .scene-caption svg { width: 14px; height: 14px; stroke: var(--terracota); fill: none; stroke-width: 2; }

/* ── EVALUATION ── */
.eval-intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: end;
  margin-bottom: 3rem;
}
.eval-panel {
  background: #fff;
  border-radius: 28px;
  padding: 2.8rem;
  border: 1px solid var(--border);
}
.eval-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1.4rem;
}
.eval-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.eval-chip {
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text);
}
.eval-note {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.eval-note-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(194,91,63,0.12);
  color: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.eval-note p { font-size: 0.9rem; line-height: 1.6; color: var(--muted); max-width: 720px; }
.eval-note strong { color: var(--dark); font-weight: 600; }

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}
.benefit-card {
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.benefit-card.dark { background: var(--dark); color: #fff; border: none; }
.benefit-card.light { background: #fff; }
.benefit-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.6rem; }
.benefit-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-card.light .benefit-icon { background: var(--sage); }
.benefit-card.light .benefit-icon svg { stroke: #5a7d4f; }
.benefit-card.dark .benefit-icon { background: rgba(240,215,200,0.2); }
.benefit-card.dark .benefit-icon svg { stroke: #f0d7c8; }
.benefit-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 1.7; }
.benefit-head h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: inherit; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.benefit-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.95rem; }
.benefit-list svg { width: 16px; height: 16px; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 0.18rem; }
.benefit-card.light .benefit-list svg { stroke: #5a7d4f; }
.benefit-card.dark .benefit-list svg { stroke: #f0d7c8; }
.benefit-card.dark .benefit-list li { color: rgba(255,255,255,0.92); }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.process-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--terracota);
  line-height: 1;
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.process-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: 0.6rem; line-height: 1.2; }
.process-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; flex: 1; }
.process-cta { text-align: center; margin-top: 2.5rem; }

/* ── ABOUT ── */
.about-inner {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 28px;
  max-width: 480px;
  width: 100%;
}
.about-badge {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem 1.4rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  border: 1px solid var(--border);
  text-align: center;
  white-space: nowrap;
  z-index: 3;
}
.about-badge-eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.about-badge-name { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; color: var(--dark); }
.about-text p { font-size: 1rem; line-height: 1.7; opacity: 0.88; margin-bottom: 1.1rem; }
.about-text p strong { color: var(--dark); font-weight: 600; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.7rem 0; }
.credential-pill {
  padding: 0.55rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.credential-pill svg { width: 14px; height: 14px; stroke: var(--terracota); fill: none; stroke-width: 2; }
.about-quote { margin-top: 1.8rem; padding-left: 1.3rem; border-left: 2px solid var(--terracota); }
.about-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; line-height: 1.4; color: var(--dark); }

/* ── TESTIMONIALS ── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  justify-items: center;
}
.test-grid:has(> :only-child) {
  grid-template-columns: minmax(0, 560px);
}
.test-card { border-radius: 22px; padding: 2rem 1.8rem; border: 1px solid var(--border); background: #fff; }
.test-card.dark { background: var(--dark); color: #fff; border: none; }
.test-quote-icon { width: 28px; height: 28px; fill: var(--terracota); opacity: 0.6; margin-bottom: 1rem; }
.test-card.dark .test-quote-icon { fill: #f0d7c8; opacity: 0.7; }
.test-card p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.02rem; line-height: 1.45; color: inherit; }
.test-foot { margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.test-card.dark .test-foot { border-top-color: rgba(255,255,255,0.15); }
.test-author { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.test-card.dark .test-author { color: #f0d7c8; }
.test-placeholder-badge { font-size: 0.62rem; padding: 0.25rem 0.6rem; border-radius: 50px; background: var(--cream); color: var(--muted); text-transform: lowercase; letter-spacing: 0.06em; }
.test-card.dark .test-placeholder-badge { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.test-disclaimer { margin-top: 2rem; font-size: 0.8rem; color: var(--muted); }

/* ── FAQ ── */
#faq .section-inner { max-width: 880px; }
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: rgba(194,91,63,0.35); box-shadow: 0 4px 18px rgba(59,31,26,0.05); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: var(--dark);
  line-height: 1.3;
}
.faq-toggle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .2s, color .2s;
  color: var(--dark);
}
.faq-toggle svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.faq-item.open .faq-toggle { background: var(--terracota); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  padding-right: 3.5rem;
}

/* ── FINAL CTA ── */
#cta-final {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, #f0e6d8 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,164,139,0.4) 0%, transparent 65%);
  pointer-events: none;
}
#cta-final .section-inner { max-width: 800px; position: relative; }
#cta-final h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 1.5rem; }
#cta-final p { font-size: 1.05rem; line-height: 1.7; opacity: 0.85; max-width: 600px; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8rem; }
.cta-foot { font-size: 0.85rem; color: var(--muted); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 3rem;
}
.footer-brand .logo-mark { width: 42px; height: 42px; }
.footer-brand .logo-name { color: #fff; font-size: 1.25rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.55); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-top: 1.2rem; max-width: 320px; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #f0d7c8; margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.55rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col a svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer-col p { font-size: 0.88rem; line-height: 1.6; }
.footer-bottom {
  max-width: 1140px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 1.3rem;
  right: 1.3rem;
  z-index: 90;
  background: var(--wa);
  color: #fff;
  padding: 0.95rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(37,211,102,0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.04); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 110;
  display: none;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2rem; }
.mobile-menu ul a { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--dark); text-decoration: none; }

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════ */

/* ── 1024px · iPad Pro landscape / large tablets ── */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
  .hero-inner { gap: 2.5rem; }
}

/* ── 960px · Standard tablets landscape ── */
@media (max-width: 960px) {
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ── 820px · iPad Air portrait / iPad Mini landscape / most tablets portrait ── */
@media (max-width: 820px) {
  nav ul { display: none; }
  nav > .btn-primary { display: none; } /* oculta WA do nav — disponível no menu mobile e botão flutuante */
  .menu-toggle { display: inline-flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-frame { max-width: 380px; margin: 3.5rem auto 0; }
  .hero-tag-card { display: none; } /* evita overflow em mobile/tablet */
  .hero-quote { left: 0.5rem; bottom: 1.5rem; }

  .help-inner { grid-template-columns: 1fr; gap: 3rem; }
  .help-img-wrap { max-width: 420px; margin: 3rem auto 0; }

  .home-grid { grid-template-columns: 1fr; gap: 3rem; }
  .home-illustration { max-width: 440px; margin: 0 auto; }

  .about-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-img-wrap { margin-top: 3.5rem; }
  .about-img-wrap img { max-width: 420px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .eval-intro { grid-template-columns: 1fr; gap: 2rem; }
  .section-header--split { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
}

/* ── 760px · Mobile phones ── */
@media (max-width: 760px) {
  section { padding: 3.5rem 1.25rem; }
  #hero { padding: 2.5rem 1.25rem 3.5rem; }
  #cta-final { padding: 4.5rem 1.25rem; }
  nav { padding: 0.9rem 1.25rem; }

  .pain-grid,
  .specialties-grid,
  .process-grid { grid-template-columns: 1fr; }

  .help-list,
  .home-benefits { grid-template-columns: 1fr; }

  .hero-image-frame { max-width: 300px; }
  .hero-image-frame img { transform: translate(4px, 4px); } /* reduz deslocamento em mobile */
  .hero-tag-card { display: none; }

  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.5rem; }

  .wa-float span { display: none; }
  .wa-float { padding: 1rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; }

  .eval-panel { padding: 1.5rem 1.25rem; }
  .benefit-card { padding: 1.8rem 1.3rem; }

  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline { width: 100%; justify-content: center; }

  .about-badge { white-space: normal; text-align: center; }
  .faq-a-inner { padding-right: 1.5rem; }
}

/* ── 480px · Small phones (iPhone SE, Galaxy A, Moto G) ── */
@media (max-width: 480px) {
  section { padding: 3rem 1rem; }
  #hero { padding: 2rem 1rem 3rem; }
  #cta-final { padding: 3.5rem 1rem; }
  nav { padding: 0.75rem 1rem; }

  .hero-image-frame { max-width: 260px; }
  .hero-image-frame img { transform: none; } /* remove transform em telas muito pequenas */
  .hero-image-frame::before { transform: rotate(-2deg); }
  .hero-stats { flex-direction: column; gap: 0.9rem; padding-top: 1.2rem; }
  .hero-trust { gap: 1rem 1.5rem; font-size: 0.78rem; }
  .hero-badge { font-size: 0.65rem; }

  .eval-chip { font-size: 0.82rem; padding: 0.5rem 0.9rem; }
  .faq-q { font-size: 1rem; padding: 1rem 1.2rem; }

  .mobile-menu ul a { font-size: 1.4rem; }
  .btn-primary,
  .btn-outline { font-size: 0.88rem; padding: 0.72rem 1.2rem; }
}
