/* ─────────────────────────────────────────────────────────────
   Essência Feminina · Unhas e Cílios Yani
   styles.css — all non-critical styles
   Fonts loaded via Google Fonts CDN in <head>
───────────────────────────────────────────────────────────── */

/* ── Design tokens ── */
:root {
  --base:       #FBF5F8;
  --cream:      #F5E7EE;
  --sand:       #E8D4DF;
  --gold:       #b30f66;
  --gold-ink:   #8A0B4E;
  --wine:       #2d001b;
  --ink:        #2d001b;
  --ink-soft:   #6B4657;
  --wa:         #25D366;
  --wa-ink:     #128C4B;
  --radius:     14px;
  --radius-sm:  10px;
  --shadow-sm:  0 1px 2px rgba(43,33,24,.04), 0 2px 8px rgba(43,33,24,.04);
  --shadow-md:  0 8px 24px -8px rgba(43,33,24,.12), 0 2px 6px rgba(43,33,24,.05);
  --shadow-lg:  0 24px 48px -16px rgba(139,74,59,.18), 0 4px 12px rgba(43,33,24,.06);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --page:       1180px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: 0; cursor: pointer; padding: 0; }

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

/* ── Logo variants ── */
.logo-nav    { height: 44px; width: auto; display: block; }
.logo-hero   { width: 100%; max-width: 380px; height: auto; margin: 0 0 22px; display: block; }
.logo-footer { height: 56px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .92; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 600; }
p  { margin: 0 0 1em; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 .9rem;
}

/* ── Layout ── */
.wrap {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: clamp(56px, 8vw, 104px) 0;
  position: relative;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 200;
}

.skip:focus { left: 12px; top: 12px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .97rem;
  min-height: 52px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  will-change: transform;
  cursor: pointer;
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(37,211,102,.45), 0 2px 6px rgba(37,211,102,.25);
}
.btn-wa:hover  { transform: scale(1.02); background: #1FBE5A; box-shadow: 0 10px 28px -6px rgba(37,211,102,.55); }
.btn-wa:active { transform: scale(.99); }
.btn-wa.lg     { padding: 20px 34px; font-size: 1.06rem; min-height: 60px; }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--sand); }
.btn-ghost:hover { background: #fff; border-color: var(--gold); transform: scale(1.02); }

.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--wine); transform: scale(1.02); }

/* ── Top dismissible banner ── */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: .86rem;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 44px 6px 16px;
  position: relative;
  letter-spacing: .01em;
}
.topbar a { text-decoration: underline; text-underline-offset: 2px; color: var(--cream); }
.topbar a:hover { color: #fff; }
.topbar .x {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: .7;
}
.topbar .x:hover { opacity: 1; background: rgba(255,255,255,.1); }
.topbar[hidden] { display: none; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251,245,248,.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--sand); }

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-links { display: flex; gap: 28px; font-size: .9rem; }
.nav-links a { color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--wine); }
.nav-cta { display: none; }

@media (max-width: 880px) { .nav-links { display: none; } }
@media (min-width: 881px) { .nav-cta { display: inline-flex; padding: 10px 18px; min-height: 42px; font-size: .88rem; } }

/* ── Hero ── */
.hero {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(60px, 8vw, 100px);
  background:
    radial-gradient(1100px 580px at 85% -10%, #F5D0E2 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 100%, #EFD6E4 0%, transparent 55%),
    linear-gradient(180deg, var(--base) 0%, #F3E1EB 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--wine); font-weight: 500; }
.hero .sub { font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--ink-soft); max-width: 52ch; margin-bottom: 28px; }
.hero .sub b { color: var(--ink); font-weight: 600; }

.credibility  { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--sand);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.pill svg { width: 14px; height: 14px; color: var(--gold); }
.pill a { color: var(--wine); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; color: var(--ink-soft); font-size: .86rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 15px; height: 15px; color: var(--gold-ink); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
  width: 100%;
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(179,15,102,.18) 0%, rgba(45,0,27,.18) 100%),
    repeating-linear-gradient(45deg, #EBCDDB 0 14px, #E0BBCB 14px 28px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.5);
}

.hero-photo::after {
  content: "IMG · foto principal\ADescrição: Yani aplicando\Acílios ou unhas em cliente";
  white-space: pre;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(45,0,27,.55);
  letter-spacing: .05em;
  padding: 20px;
}

.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  font-weight: 500;
  max-width: 220px;
}
.hero-badge-1 { top: 22px; left: -14px; }
.hero-badge-2 { bottom: 26px; right: -16px; }
.hero-badge .dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--wine);
  flex-shrink: 0;
}
.hero-badge .dot svg { width: 18px; height: 18px; }
.hero-badge b   { display: block; color: var(--ink); font-family: var(--font-serif); font-size: 1rem; font-weight: 600; }
.hero-badge span { color: var(--ink-soft); font-size: .74rem; }

@media (max-width: 540px) {
  .hero-badge-1 { top: 10px; left: 10px; max-width: 180px; }
  .hero-badge-2 { bottom: 10px; right: 10px; max-width: 180px; }
}

/* ── Section headers ── */
.sec-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.sec-head-left { max-width: 640px; }
.sec-head h2   { margin-bottom: 10px; }
.sec-head p    { color: var(--ink-soft); font-size: 1.04rem; margin: 0; }

/* ── Gallery (Before/After) ── */
#galeria { background: #fff; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--sand);
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.ba-slider { position: absolute; inset: 0; user-select: none; touch-action: pan-y; }

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, #E0BBCB 0 12px, #CDA4B7 12px 24px);
  display: grid;
  place-items: center;
  font-family: ui-monospace, Menlo, monospace;
  font-size: .72rem;
  color: rgba(45,0,27,.55);
  letter-spacing: .04em;
  text-align: center;
  padding: 20px;
}

.ba-after {
  background: repeating-linear-gradient(45deg, #b30f66 0 12px, #8A0B4E 12px 24px);
  color: rgba(255,255,255,.9);
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}

.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b30f66' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M9 6l-6 6 6 6M15 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat center;
  box-shadow: var(--shadow-md);
}

.ba-label {
  position: absolute;
  top: 12px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(45,0,27,.78);
  color: #fff;
  backdrop-filter: blur(4px);
}
.ba-label.left  { left: 12px; }
.ba-label.right { right: 12px; background: rgba(179,15,102,.88); }

.ba-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink);
  backdrop-filter: blur(6px);
}

/* ── Services ── */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.svc {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cream), var(--base));
  display: grid;
  place-items: center;
  color: var(--wine);
  margin-bottom: 18px;
  border: 1px solid var(--sand);
}
.svc-icon svg { width: 26px; height: 26px; }

.svc h3        { margin-bottom: 8px; }
.svc p         { color: var(--ink-soft); font-size: .94rem; margin-bottom: 16px; flex-grow: 1; }
.svc .duration {
  font-size: .78rem;
  color: var(--gold-ink);
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc .duration svg { width: 13px; height: 13px; }
.svc .btn { width: 100%; }

/* ── Testimonials ── */
#depoimentos { background: linear-gradient(180deg, var(--base) 0%, var(--cream) 100%); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.tcard {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.tcard::before {
  content: "\201C";
  position: absolute;
  top: -2px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  opacity: .6;
}
.tcard p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 18px 0 22px;
  font-style: italic;
}
.tcard .who   { display: flex; align-items: center; gap: 12px; }
.tcard .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--wine));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 1rem;
}
.tcard .who b    { display: block; font-size: .92rem; font-weight: 600; color: var(--ink); }
.tcard .who span { font-size: .78rem; color: var(--ink-soft); }

/* ── Diferenciais ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px;
  background: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
}

.pillar { background: #fff; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; }
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--base);
  color: var(--wine);
  display: grid;
  place-items: center;
  border: 1px solid var(--sand);
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; margin: 0; }
.pillar p  { font-size: .9rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ── About ── */
#sobre { background: #fff; }

.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 800px) { .about { grid-template-columns: 1fr; } }

.about-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(179,15,102,.2), rgba(45,0,27,.18)),
    repeating-linear-gradient(45deg, #E0BBCB 0 14px, #CDA4B7 14px 28px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
}
.about-photo::after {
  content: "IMG · retrato da Yanibel";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: ui-monospace, Menlo, monospace;
  font-size: .78rem;
  color: rgba(45,0,27,.55);
}

.about-text p   { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 1em; }
.about-text p b { color: var(--ink); }

.sign {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--wine);
  margin: 20px 0 24px;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-weight: 600;
  font-size: .95rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: gap .2s;
}
.ig-link:hover { gap: 14px; }
.ig-link svg { width: 18px; height: 18px; }

/* ── FAQ ── */
#faq { background: var(--cream); }

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

.q {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.q[open] { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.q summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}
.q summary::-webkit-details-marker { display: none; }
.q summary:hover { color: var(--wine); }
.q summary::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b30f66' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  transition: transform .25s ease;
}
.q[open] summary::after { transform: rotate(180deg); }

.q-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: .96rem; line-height: 1.65; }

/* ── Area Atendida ── */
.area {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) { .area { grid-template-columns: 1fr; } }

.cities    { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.city {
  background: var(--cream);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 500;
  border: 1px solid var(--sand);
}
.city.primary { background: var(--wine); color: #fff; border-color: var(--wine); }

/* ── Location ── */
#contato { background: var(--cream); }

.loc {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}
@media (max-width: 820px) { .loc { grid-template-columns: 1fr; } }

.loc-info {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--wine);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--sand);
}
.info-row .dot svg { width: 20px; height: 20px; }
.info-row h4 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 4px;
}
.info-row p   { margin: 0; color: var(--ink); font-size: .98rem; line-height: 1.5; }
.info-row a   { color: var(--wine); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color .15s; }
.info-row a:hover { border-bottom-color: var(--wine); }

.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background: var(--sand);
  border: 1px solid var(--sand);
  position: relative;
}
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 360px; }

/* ── Final CTA ── */
.final {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(179,15,102,.45) 0%, transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(179,15,102,.25) 0%, transparent 60%),
    var(--ink);
  color: #fff;
  text-align: center;
  padding: clamp(72px, 10vw, 120px) 24px;
}
.final h2   { color: #fff; max-width: 22ch; margin: 0 auto 16px; font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.final p    { color: rgba(255,255,255,.75); max-width: 52ch; margin: 0 auto 36px; font-size: 1.08rem; }
.final .btn-wa { font-size: 1.1rem; }

/* ── Footer ── */
footer {
  background: #1A0010;
  color: rgba(255,255,255,.6);
  padding: 56px 0 24px;
  font-size: .88rem;
}

.foot {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) {
  .foot { grid-template-columns: 1fr 1fr; }
  .foot > :first-child { grid-column: 1/-1; }
}

.foot h5 {
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 16px;
}
.foot a         { color: rgba(255,255,255,.7); transition: color .15s; }
.foot a:hover   { color: var(--gold); }
.foot ul        { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-brand p   { color: rgba(255,255,255,.55); margin-top: 16px; font-size: .86rem; }

.copy {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── Sticky bottom bar (mobile) ── */
.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251,245,248,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--sand);
  z-index: 60;
  transform: translateY(110%);
  transition: transform .22s ease;
  display: none;
}
.sticky.on       { transform: translateY(0); }
.sticky .btn-wa  { width: 100%; min-height: 56px; font-size: 1.02rem; }

@media (max-width: 880px) { .sticky { display: block; } }

/* ── FAB (desktop) ── */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px -4px rgba(37,211,102,.5), 0 4px 10px rgba(37,211,102,.25);
  z-index: 55;
  transition: transform .18s ease;
  opacity: 0;
  transform: scale(.6) translateY(14px);
  pointer-events: none;
}
.fab.on           { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.fab:hover        { transform: scale(1.08); }
.fab svg          { width: 30px; height: 30px; }

.fab::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: pulse 2.4s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) { .fab::before { animation: none; } }
@keyframes pulse {
  0%   { transform: scale(1);    opacity: .7; }
  70%  { transform: scale(1.35); opacity: 0;  }
  100% { transform: scale(1.35); opacity: 0;  }
}

@media (max-width: 880px) { .fab { display: none; } }

/* ── LGPD Banner ── */
.lgpd {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: none;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto;
  font-size: .88rem;
}
.lgpd.on { display: flex; }
.lgpd p  { margin: 0; color: var(--ink-soft); flex: 1; min-width: 220px; }
.lgpd b  { color: var(--ink); }
.lgpd a  { color: var(--wine); text-decoration: underline; text-underline-offset: 2px; }

.lgpd .row   { display: flex; gap: 8px; flex-wrap: wrap; }
.lgpd button { padding: 9px 16px; border-radius: 999px; font-size: .83rem; font-weight: 500; min-height: 40px; }
.lgpd .ok    { background: var(--ink); color: #fff; }
.lgpd .ok:hover { background: var(--wine); }
.lgpd .no    { background: transparent; color: var(--ink-soft); border: 1px solid var(--sand); }
.lgpd .no:hover { border-color: var(--ink); }

@media (min-width: 880px) {
  .lgpd { left: auto; right: 24px; bottom: 24px; max-width: 420px; }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Utilities ── */
.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;
}
