/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #FBF3E7;
  --bg-2:        #F2E1C8;
  --bg-3:        #EAD3AE;
  --paper:       #FFFFFF;
  --ink:         #201812;
  --ink-soft:    #3D2E22;
  --ink-mute:    #7A6754;
  --accent:      #834F2A;
  --accent-light:#DBA173;
  --accent-dark: #5E3A1E;
  --line:        rgba(32,24,18,0.12);
  --line-strong: rgba(32,24,18,0.22);
  --success:     #2F6B3F;
  --shadow-sm:   0 2px 10px rgba(32,24,18,0.06);
  --shadow-md:   0 12px 30px rgba(32,24,18,0.10);
  --shadow-lg:   0 24px 60px rgba(32,24,18,0.16);
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --nav-h:       108px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Barlow Condensed", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); font-weight: 700; }
::selection { background: var(--accent-light); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--paper);
  border-radius: 8px; font-weight: 600; transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.container-narrow { width: 100%; max-width: 800px; margin-inline: auto; padding-inline: 1.25rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
  margin-bottom: .9rem;
}
.kicker::before {
  content: ""; width: 22px; height: 2px; background: var(--accent-light); border-radius: 2px;
}
.lede { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-mute); margin-top: .9rem; max-width: 58ch; }
.center .lede { margin-inline: auto; }

.divider { border: none; border-top: 1px solid var(--line); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal-1 { transition-delay: .06s; }
.reveal-2 { transition-delay: .14s; }
.reveal-3 { transition-delay: .22s; }
.reveal-4 { transition-delay: .3s; }

/* decorative blobs */
.blob-field { position: absolute; inset: 0; overflow: visible; pointer-events: none; z-index: 0; }
.blob {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(219,161,115,.55), rgba(131,79,42,.14) 62%, transparent 75%);
  filter: blur(50px);
}
@media (min-width: 960px) { .blob { filter: blur(70px); } }

/* =============================================================
   4. Buttons & badges
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
  font-family: var(--display); white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .3s var(--ease-out), color .3s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-light) 55%, var(--accent) 100%);
  background-size: 200% auto;
  color: #fff; box-shadow: var(--shadow-md);
}
.btn-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: var(--paper); color: var(--ink); border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-whatsapp {
  background: var(--paper); color: var(--accent-dark); border: 1.5px solid var(--line-strong);
}
.btn-whatsapp:hover { border-color: var(--accent); background: var(--bg-2); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-sm { padding: .7rem 1.2rem; font-size: .88rem; }
.btn-icon { width: 1.15em; height: 1.15em; flex: none; }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: .45rem .9rem; font-size: .82rem; font-weight: 600; color: var(--ink-soft);
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 500;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(251,243,231,0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), background-color .3s var(--ease-out);
}
@supports not (backdrop-filter: blur(1px)) { .nav { background: rgba(251,243,231,0.97); } }
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: .6rem; flex: none; animation: logoFloat 5s ease-in-out infinite; }
.nav-logo img { height: clamp(58px, 9vw, 88px); width: auto; transition: transform .45s var(--ease-bounce); }
@media (hover: hover) and (pointer: fine) {
  .nav-logo:hover img { transform: scale(1.08) rotate(-4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-logo { animation: none; }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.nav-logo-text { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--ink); line-height: 1.1; }
.nav-logo-text small { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .1em; color: var(--ink-mute); }

.nav-links { display: none; align-items: center; gap: 1.9rem; }
.nav-links a { font-weight: 600; font-size: .95rem; color: var(--ink-soft); position: relative; padding-block: .3rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent); transition: right .3s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-actions .btn-whatsapp span { display: none; }
.nav-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line-strong); background: var(--paper);
}
.nav-burger span { width: 18px; height: 2px; background: var(--ink); margin-inline: auto; border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 490;
  background: var(--bg); padding: 1.5rem 1.25rem 6rem; overflow-y: auto;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  display: block; padding: 1rem 0; font-family: var(--display); font-weight: 700; font-size: 1.3rem;
  border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-menu .mobile-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .mobile-menu { display: none; }
  .nav-actions .btn-whatsapp span { display: inline; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero { padding-block: clamp(2.5rem, 7vw, 5rem) clamp(3rem, 8vw, 5rem); position: relative; overflow: clip; }
.hero-grid {
  display: grid; gap: 2.5rem; align-items: center;
  grid-template-columns: 1fr;
}
.hero-copy { position: relative; z-index: 2; }
.hero-title { margin-top: .9rem; }
.hero-title em { color: var(--accent); font-style: normal; background: linear-gradient(120deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin-top: 1.1rem; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--ink-mute); max-width: 52ch; }
.hero-actions { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-trustline { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .6rem; }

.hero-visual { position: relative; z-index: 1; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; max-width: 460px; margin-inline: auto;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(131,79,42,0) 55%, rgba(94,58,30,.28) 100%);
}
.hero-badge-float {
  position: absolute; left: -1rem; bottom: -1rem; z-index: 3;
  background: var(--paper); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem; display: flex; align-items: center; gap: .7rem; max-width: 240px;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; }
}

/* marquee ticker */
.ticker { border-block: 1px solid var(--line); background: var(--paper); overflow: hidden; position: relative; }
.ticker-track { display: flex; width: max-content; gap: 1.4rem; padding-block: .85rem; animation: tickerScroll 34s linear infinite; }
.ticker-group { display: flex; align-items: center; gap: .6rem; flex: none; }
.ticker-tag {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--display); font-weight: 700; font-size: .88rem; letter-spacing: .01em;
  color: var(--ink-soft); background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 999px; padding: .42rem 1rem;
  transition: transform .3s var(--ease-bounce), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.ticker-tag.is-accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-light));
  color: #fff; border-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .ticker-tag:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 12px 26px rgba(94,58,30,0.4); border-color: var(--accent-light); }
  .ticker-tag.is-accent:hover { box-shadow: 0 12px 30px rgba(94,58,30,0.55); }
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   7. Cards & grids
   ============================================================= */
.grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--paper); border-radius: var(--radius-md); padding: 1.8rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
  height: 100%; display: flex; flex-direction: column;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-6px) rotate(-0.4deg); box-shadow: 0 26px 46px rgba(131,79,42,0.18); border-color: var(--accent-light); }
}
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3)); color: var(--accent); margin-bottom: 1.1rem; flex: none;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-mute); font-size: .96rem; flex: 1; }
.card-link { margin-top: 1.1rem; font-weight: 700; color: var(--accent); font-size: .92rem; display: inline-flex; align-items: center; gap: .35rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }

.card.card-photo { padding: 0; overflow: hidden; }
.card-photo-img { aspect-ratio: 4 / 3; overflow: hidden; }
.card-photo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.card-photo:hover .card-photo-img img { transform: scale(1.06); }
.card-photo-body { padding: 1.4rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card-photo-body p { flex: 1; }
.card:hover .card-link svg { transform: translateX(4px); }

.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { background: var(--bg-2); border-radius: 999px; padding: .5rem 1rem; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }

/* =============================================================
   8. Sections: split, steps, testimonial-alt, faq, cta
   ============================================================= */
.split { display: grid; gap: 2.2rem; align-items: center; grid-template-columns: 1fr; }
.split.reverse .split-media { order: -1; }
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split.reverse .split-media { order: 2; }
}
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split-media.no-photo {
  border-radius: var(--radius-lg); aspect-ratio: 5/4; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3)); position: relative; overflow: hidden;
}

.steps { counter-reset: step; display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: .5rem; }
.step-num {
  font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: transparent;
  -webkit-text-stroke: 1.5px var(--accent-light); display: block; margin-bottom: .6rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--ink-mute); font-size: .95rem; }

.trust-strip { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .trust-strip { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  text-align: center; padding: 1.4rem 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.trust-item svg { width: 30px; height: 30px; color: var(--accent); margin-inline: auto; margin-bottom: .7rem; transition: transform .45s var(--ease-bounce); }
.trust-item p { font-size: .88rem; color: var(--ink-mute); }
@media (hover: hover) and (pointer: fine) {
  .trust-item:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-md); border-color: var(--accent-light); }
  .trust-item:hover svg { transform: scale(1.18) rotate(-8deg); }
}

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-plus { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line-strong); position: relative; transition: transform .3s var(--ease-out), border-color .3s; }
.faq-item .faq-plus::before, .faq-item .faq-plus::after { content: ""; position: absolute; background: var(--accent); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item .faq-plus::before { width: 10px; height: 2px; }
.faq-item .faq-plus::after { width: 2px; height: 10px; transition: opacity .2s; }
.faq-item[open] .faq-plus { transform: rotate(180deg); border-color: var(--accent); }
.faq-item[open] .faq-plus::after { opacity: 0; }
.faq-item p { padding-bottom: 1.25rem; color: var(--ink-mute); max-width: 68ch; }

.cta-band {
  border-radius: var(--radius-lg); padding: clamp(2.2rem, 6vw, 3.6rem); position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent) 55%, var(--accent-light));
  color: #fff; text-align: center;
}
.cta-band h2, .cta-band .lede { color: #fff; }
.cta-band .lede { color: rgba(255,255,255,0.86); }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-ghost { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.2); }
.cta-band .btn-primary { background: #fff; color: var(--accent-dark); }
.cta-band .btn-primary:hover { background: #fff; }

/* =============================================================
   9. Forms
   ============================================================= */
.form-card { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-bottom: 1.1rem; }
@media (min-width: 720px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: .45rem; color: var(--ink); }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid var(--line-strong);
  background: var(--bg); font: inherit; color: var(--ink); transition: border-color .25s var(--ease-out), background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); background: var(--paper); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.field-check { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: var(--ink-mute); }
.field-check input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--accent); flex: none; }
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: 1rem; }
.form-status { margin-top: 1rem; font-size: .9rem; font-weight: 600; display: none; }
.form-status.is-visible { display: block; }
.form-status.ok { color: var(--success); }
.form-status.err { color: #a3312a; }

/* =============================================================
   10. Footer
   ============================================================= */
.footer { background: var(--bg-3); padding-block: 3.5rem 1.6rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; margin-bottom: 2.4rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand img { height: 58px; margin-bottom: .9rem; }
.footer-brand p { font-size: .92rem; color: var(--ink-soft); max-width: 32ch; }
.footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; color: var(--ink); }
.footer ul { display: flex; flex-direction: column; gap: .65rem; }
.footer a { font-size: .92rem; color: var(--ink-soft); }
.footer a:hover { color: var(--accent); }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--paper); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line-strong); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--ink-mute); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; }
.footer-disclaimer { font-size: .78rem; color: var(--ink-mute); max-width: 78ch; margin-top: 1.2rem; line-height: 1.6; }

/* =============================================================
   11. Sticky mobile CTA bar + floating WhatsApp
   ============================================================= */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 480;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--paper); border-top: 1px solid var(--line-strong);
  box-shadow: 0 -8px 24px rgba(32,24,18,0.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-cta-bar a { display: flex; flex-direction: column; align-items: center; gap: .3rem; padding: .7rem 0 .6rem; font-size: .72rem; font-weight: 700; color: var(--ink-soft); }
.mobile-cta-bar a svg { width: 20px; height: 20px; color: var(--accent); }
.mobile-cta-bar a.is-primary { color: var(--accent); }
@media (min-width: 960px) { .mobile-cta-bar { display: none; } }

.whatsapp-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 470;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  transition: transform .3s var(--ease-bounce);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }
@media (min-width: 960px) { .whatsapp-float { display: flex; } }

body.has-mobile-bar { padding-bottom: 68px; }
@media (min-width: 960px) { body.has-mobile-bar { padding-bottom: 0; } }

/* =============================================================
   12. Page-specific helpers
   ============================================================= */
.legal-page main { padding-block: clamp(2.5rem, 6vw, 4rem); }
.legal-page h2 { margin-top: 2.2rem; margin-bottom: .7rem; font-size: 1.25rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); margin-bottom: .9rem; }
.legal-page ul { list-style: disc; padding-left: 1.3rem; }
.legal-page ul li { list-style: disc; }

.appliance-card { display: flex; gap: 1rem; align-items: flex-start; }
.appliance-card .card-icon { margin-bottom: 0; }

.insurer-chip {
  display: inline-flex; align-items: center; padding: .7rem 1.1rem; border-radius: 12px;
  background: var(--paper); border: 1px solid var(--line); font-weight: 700; font-size: .92rem; color: var(--ink-soft);
}

.partner-logo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 720px) { .partner-logo-grid { grid-template-columns: repeat(4, 1fr); } }
.partner-logo-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  height: 96px; padding: 1.1rem; display: flex; align-items: center; justify-content: center; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.partner-logo-card img { max-width: 100%; max-height: 52px; width: auto; height: auto; object-fit: contain; }
.partner-logo-card img.is-zoomed { max-height: none; height: 52px; transform: scale(1.65); }
@media (hover: hover) and (pointer: fine) {
  .partner-logo-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(94,58,30,0.28); border-color: var(--accent-light); }
}

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); aspect-ratio: 16/11; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.credits-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; color: var(--ink-soft); }
.credits-list a { color: var(--accent); font-weight: 600; }

/* =============================================================
   13. Responsive helpers
   ============================================================= */
@media (min-width: 540px)  { .hero-actions { flex-wrap: nowrap; } }
@media (min-width: 720px)  { .section { padding-block: clamp(4rem, 7vw, 6.5rem); } }
@media (min-width: 1280px) { .container { padding-inline: 1.5rem; } }

/* =============================================================
   14. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation-duration: 70s; }
  .reveal { transition-duration: .35s; }
}
