/* ==========================================================================
   Lenon Dantas Music — Design System 2026
   Tema escuro elegante + dourado da marca. Animações de rolagem.
   ========================================================================== */

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

/* ----- Tokens ----- */
:root {
  --bg:        #0d0d10;
  --bg-2:      #15151b;
  --bg-3:      #1d1d25;
  --card:      #17171e;
  --line:      rgba(255,255,255,.08);
  --cream:     #f6f1e7;
  --cream-2:   #efe7d6;

  --gold:      #e8b53d;
  --gold-2:    #f4cb5e;
  --gold-deep: #c8901c;
  --gold-soft: rgba(232,181,61,.12);

  --text:      #f3f1ea;
  --muted:     #a6a49c;
  --muted-2:   #77756e;
  --on-cream:  #211e19;
  --on-cream-muted: #5c5750;

  --ff-display: "Playfair Display", Georgia, serif;
  --ff-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow:    0 18px 50px -20px rgba(0,0,0,.6);
  --shadow-gold: 0 16px 40px -14px rgba(232,181,61,.4);

  --wrap: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----- Base ----- */
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

section { position: relative; }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-body); font-size: .74rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .7; }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); letter-spacing: -.01em; }
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }

.pad { padding-block: clamp(4.5rem, 9vw, 8rem); }

/* ----- Buttons ----- */
.btn {
  --pad: .95rem 1.9rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: var(--pad); border: 0; border-radius: 100px; cursor: pointer;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #23200f; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -14px rgba(232,181,61,.55); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-dark { background: var(--on-cream); color: var(--cream); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-lg { --pad: 1.15rem 2.4rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.1rem;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(13,13,16,.82); backdrop-filter: blur(14px);
  padding-block: .6rem; box-shadow: 0 1px 0 var(--line), 0 20px 40px -30px rgba(0,0,0,.8);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: .8rem; }
.brand-badge {
  width: 46px; height: 46px; border-radius: 50%; background: var(--cream);
  display: grid; place-items: center; padding: 4px; flex-shrink: 0;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.5);
}
.brand-badge img { border-radius: 50%; }
.brand-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.18rem; line-height: 1; }
.brand-name span { display: block; font-family: var(--ff-body); font-size: .62rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-top: .28rem; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  padding: .5rem .66rem; font-size: .88rem; font-weight: 500; color: var(--muted);
  border-radius: 8px; transition: color .25s; white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active { color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: .7rem; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; color: var(--text); }
.hamburger svg { width: 28px; height: 28px; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: rgba(13,13,16,.97);
  backdrop-filter: blur(8px); display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: .4rem;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { font-family: var(--ff-display); font-size: 1.8rem; color: var(--muted); padding: .5rem 1rem; transition: color .25s, transform .25s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mobile-nav .btn { margin-top: 1.4rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 6rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,13,.94) 0%, rgba(10,10,13,.72) 45%, rgba(10,10,13,.4) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 30%);
}
.hero-content { max-width: 700px; }
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem); letter-spacing: -.02em; margin-block: 1.2rem 1.5rem;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #d9d7cf; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-trust { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.8rem; flex-wrap: wrap; }
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }
.hero-trust small { color: var(--muted); font-size: .88rem; }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-cue .mouse { width: 22px; height: 36px; border: 2px solid var(--muted-2); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 2px; background: var(--gold); animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 10px); } }

/* Page hero (interior pages) */
.page-hero { padding: 11rem 0 4.5rem; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(120% 100% at 80% 0%, var(--gold-soft), transparent 55%); }
.page-hero .eyebrow { justify-content: flex-start; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -.02em; }
.page-hero p { color: var(--muted); max-width: 620px; margin-top: 1.1rem; font-size: 1.08rem; }
.breadcrumb { font-size: .85rem; color: var(--muted-2); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: var(--gold); }

/* ==========================================================================
   Cards / Cursos
   ========================================================================== */
.grid { display: grid; gap: 1.6rem; }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.course-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.course-card:hover { transform: translateY(-8px); border-color: rgba(232,181,61,.4); box-shadow: var(--shadow); }
.course-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.course-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.course-card:hover .course-media img { transform: scale(1.07); }
.course-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,13,.75)); }
.course-tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(13,13,16,.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--gold);
  padding: .35rem .8rem; border-radius: 100px; font-size: .74rem; font-weight: 600; letter-spacing: .04em;
}
.course-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.course-body h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.course-body p { color: var(--muted); font-size: .93rem; flex: 1; }
.course-price { display: flex; gap: 1.4rem; margin: 1.2rem 0 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.course-price div { font-size: .78rem; color: var(--muted-2); }
.course-price strong { display: block; font-family: var(--ff-display); font-size: 1.35rem; color: var(--text); font-weight: 700; margin-top: .1rem; }
.course-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold); font-weight: 600; font-size: .92rem; transition: gap .25s; }
.course-link:hover { gap: .85rem; }

/* Family highlight */
.family {
  background: linear-gradient(135deg, #1c1710, #241d12);
  border: 1px solid rgba(232,181,61,.35); border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.4rem); display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center;
  position: relative; overflow: hidden;
}
.family::before { content:""; position:absolute; top:-40%; right:-10%; width:400px; height:400px; background: radial-gradient(circle, var(--gold-soft), transparent 70%); }
.family .badge-x { display:inline-block; background: var(--gold); color:#23200f; font-size:.72rem; font-weight:700; letter-spacing:.15em; padding:.35rem .8rem; border-radius:100px; margin-bottom:1rem; }
.family h3 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: .8rem; }
.family p { color: var(--muted); }
.family-price { text-align: center; background: rgba(0,0,0,.25); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; }
.family-price small { color: var(--muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.family-price .val { font-family: var(--ff-display); font-size: clamp(2.6rem,6vw,3.6rem); color: var(--gold); line-height: 1; margin: .5rem 0 1.4rem; }
.family-price .val span { font-size: 1rem; color: var(--muted); }

/* ==========================================================================
   Sections claras (cream)
   ========================================================================== */
.cream-sec { background: var(--cream); color: var(--on-cream); }
.cream-sec .eyebrow { color: var(--gold-deep); }
.cream-sec .section-head p { color: var(--on-cream-muted); }
.cream-sec h2, .cream-sec h3 { color: var(--on-cream); }

/* Metodologia pilares */
.pillar { text-align: left; padding: 2rem; border-radius: var(--r-lg); background: rgba(0,0,0,.03); border: 1px solid rgba(0,0,0,.07); transition: transform .4s var(--ease), box-shadow .4s; }
.cream-sec .pillar:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -24px rgba(0,0,0,.3); }
.pillar .ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #23200f; margin-bottom: 1.3rem; }
.pillar .ico svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.pillar p { color: var(--on-cream-muted); font-size: .95rem; }

/* Feature list (diferenciais) */
.feature { display: flex; gap: 1.1rem; padding: 1.4rem 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.feature:last-child { border-bottom: 0; }
.feature .fico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-deep); display: grid; place-items: center; }
.feature .fico svg { width: 22px; height: 22px; }
.feature h4 { font-family: var(--ff-body); font-weight: 700; font-size: 1.05rem; margin-bottom: .25rem; }
.feature p { color: var(--on-cream-muted); font-size: .92rem; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 2rem 1rem; border-radius: var(--r-lg); background: var(--bg-2); border: 1px solid var(--line); }
.stat .num { font-family: var(--ff-display); font-size: clamp(2.2rem, 5vw, 3rem); color: var(--gold); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-top: .6rem; }

/* ==========================================================================
   Galeria (Espaço)
   ========================================================================== */
.gallery { columns: 3; column-gap: 1.2rem; }
.gallery figure { break-inside: avoid; margin-bottom: 1.2rem; border-radius: var(--r); overflow: hidden; position: relative; }
.gallery img { width: 100%; transition: transform .8s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1rem .9rem; font-size: .85rem; font-weight: 600; background: linear-gradient(transparent, rgba(10,10,13,.85)); opacity: 0; transform: translateY(8px); transition: .35s; }
.gallery figure:hover figcaption { opacity: 1; transform: none; }

/* ==========================================================================
   Professor
   ========================================================================== */
.prof { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.5rem; align-items: center; }
.prof-media { position: relative; }
.prof-media img { border-radius: var(--r-xl); box-shadow: var(--shadow); }
.prof-media .frame { position: absolute; inset: -14px -14px auto auto; width: 60%; height: 60%; border: 1.5px solid var(--gold); border-radius: var(--r-xl); z-index: -1; }
.prof-credential { display: inline-block; color: var(--gold); font-weight: 600; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin: .8rem 0 1.2rem; }
.prof h2 { font-size: clamp(2rem, 4vw, 3rem); }
.prof p { color: var(--muted); margin-bottom: 1.1rem; }
.prof .inst-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.6rem 0; }
.prof .inst-tags span { border: 1px solid var(--line); color: var(--muted); padding: .4rem .9rem; border-radius: 100px; font-size: .82rem; }

/* ==========================================================================
   Depoimentos
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; display: flex; flex-direction: column; }
.testi .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 1rem; font-size: .95rem; }
.testi p { color: #d9d7d0; font-size: .98rem; flex: 1; }
.testi .who { display: flex; align-items: center; gap: .85rem; margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.testi .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #23200f; display: grid; place-items: center; font-weight: 700; font-family: var(--ff-display); flex-shrink: 0; }
.testi .who strong { display: block; font-size: .95rem; }
.testi .who small { color: var(--muted); font-size: .82rem; }

/* ==========================================================================
   Notícias / Agenda
   ========================================================================== */
.event { display: grid; grid-template-columns: auto 1fr auto; gap: 1.8rem; align-items: center; padding: 1.8rem; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); transition: border-color .35s, transform .35s; }
.event:hover { border-color: rgba(232,181,61,.35); transform: translateX(4px); }
.event .date { text-align: center; min-width: 66px; }
.event .date .d { font-family: var(--ff-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.event .date .m { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-top: .3rem; }
.event .date.open .d { font-size: 1.1rem; padding-top: .5rem; }
.event-body h3 { font-size: 1.25rem; margin-bottom: .35rem; }
.event-body p { color: var(--muted); font-size: .92rem; }
.event .status { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 100px; }
.status.up { background: var(--gold-soft); color: var(--gold); }
.status.done { background: rgba(255,255,255,.06); color: var(--muted); }

/* ==========================================================================
   Serviços
   ========================================================================== */
.service { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; }
.service-media { position: relative; min-height: 320px; }
.service-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-duo { display: flex; gap: 3px; }
.service-duo img { position: static; flex: 1; width: 50%; min-height: 360px; }
.service-body { padding: clamp(1.8rem, 3.5vw, 3.2rem); }
.service-body .ico { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #23200f; margin-bottom: 1.4rem; }
.service-body .ico svg { width: 28px; height: 28px; }
.service-body h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .8rem; }
.service-body p { color: var(--muted); margin-bottom: 1rem; }
.service-feats { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.3rem 0; }
.service-feats span { border: 1px solid var(--line); color: var(--muted); padding: .4rem .9rem; border-radius: 100px; font-size: .82rem; }
.partner-credit { display: flex; align-items: center; gap: .9rem; margin-top: 1.6rem; padding: 1rem 1.2rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); }
.partner-credit .pc-mono { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.partner-credit .pc-mono svg { width: 22px; height: 22px; }
.partner-credit strong { display: block; font-size: .95rem; }
.partner-credit small { color: var(--muted); font-size: .82rem; }
.partner-credit a { color: var(--gold); }

/* ==========================================================================
   Parceiros
   ========================================================================== */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.partner-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.4rem 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.partner-card:hover { transform: translateY(-8px); border-color: rgba(232,181,61,.4); box-shadow: var(--shadow); }
.partner-logo { height: 88px; display: grid; place-items: center; margin-bottom: 1.5rem; }
.partner-logo img { max-height: 88px; max-width: 200px; width: auto; }
.partner-logo.chip img { background: #fff; border-radius: 12px; padding: 12px 16px; }
.partner-mono { width: 80px; height: 80px; border-radius: 20px; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: 2rem; color: #fff; }
.partner-card .tag { color: var(--gold); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem; }
.partner-card h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.partner-card p { color: var(--muted); font-size: .93rem; flex: 1; }
.partner-card .btn { margin-top: 1.6rem; }
.partner-avatar { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold-soft); box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.partner-actions { display: flex; flex-direction: column; gap: .6rem; width: 100%; margin-top: 1.6rem; }
.partner-actions .btn { margin-top: 0; width: 100%; }
.pc-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--line); }

/* ==========================================================================
   Contato / Formulário
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; }
.info-block { display: flex; gap: 1.1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.info-block:last-of-type { border-bottom: 0; }
.info-block .iico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; }
.info-block .iico svg { width: 22px; height: 22px; }
.info-block h4 { font-family: var(--ff-body); font-weight: 700; font-size: 1rem; margin-bottom: .2rem; }
.info-block p { color: var(--muted); font-size: .93rem; }
.info-block a:hover { color: var(--gold); }

.exp-prices { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; margin: 1.5rem 0; }
.exp-prices .ep { text-align: center; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--r); padding: 1.1rem .5rem; }
.exp-prices .ep .t { font-size: .78rem; color: var(--muted); }
.exp-prices .ep .p { font-family: var(--ff-display); font-size: 1.35rem; color: var(--gold); margin-top: .2rem; }
.exp-prices .ep small { display:block; color: var(--muted-2); font-size: .68rem; }

.form-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.6rem); }
.form-note { background: var(--gold-soft); border: 1px solid rgba(232,181,61,.25); color: var(--gold-2); border-radius: var(--r); padding: .9rem 1.1rem; font-size: .86rem; margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--muted); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; color: var(--text); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field textarea { resize: vertical; min-height: 92px; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success.show { display: block; animation: fadeUp .5s var(--ease); }
.form-success .check { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.form-success p { color: var(--muted); }
.hide { display: none !important; }
.spinner { width: 1.1em; height: 1.1em; border: 2px solid rgba(35,32,15,.35); border-top-color: #23200f; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.map-embed { margin-top: 2.5rem; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); filter: grayscale(.3) contrast(1.05); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; text-align: center; background: linear-gradient(135deg, var(--gold-deep), var(--gold-2)); color: #201d0e; border-radius: var(--r-xl); padding: clamp(3rem, 6vw, 5rem); }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), transparent 40%); }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); position: relative; }
.cta-band p { max-width: 560px; margin: 1rem auto 2rem; position: relative; font-size: 1.08rem; opacity: .85; }
.cta-band .btn-dark { position: relative; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #0a0a0c; border-top: 1px solid var(--line); padding-block: 4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--muted); font-size: .92rem; margin-top: 1.1rem; max-width: 300px; }
.footer-col h5 { font-family: var(--ff-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: .92rem; padding: .3rem 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: .25s; }
.social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .84rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }
.dev-by { display: inline-flex; align-items: center; gap: .55rem; color: var(--muted-2); font-size: .84rem; }
.dev-by:hover { color: var(--gold); }
.dev-logo { display: inline-flex; background: #fff; border-radius: 7px; padding: 5px 9px; }
.dev-logo img { height: 22px; width: auto; display: block; }

/* ==========================================================================
   Floating WhatsApp + back to top
   ========================================================================== */
.wa-float { position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .3s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after { content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #25d366; animation: pulse 2s infinite; }
@keyframes pulse { 0%{ transform:scale(1); opacity:.7 } 100%{ transform:scale(1.5); opacity:0 } }

.to-top { position: fixed; right: 1.3rem; bottom: 5.6rem; z-index: 90; width: 44px; height: 44px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .35s; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--gold); color: var(--gold); }
.to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.left { transform: translateX(-40px); }
.reveal.right { transform: translateX(40px); }
.reveal.left.in, .reveal.right.in { transform: none; }
.reveal.zoom { transform: scale(.94); }
.reveal.zoom.in { transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie { position: fixed; left: 1.3rem; bottom: 1.3rem; z-index: 95; max-width: 380px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.3rem; box-shadow: var(--shadow); transform: translateY(160%); transition: transform .5s var(--ease); }
.cookie.show { transform: none; }
.cookie p { font-size: .86rem; color: var(--muted); margin-bottom: 1rem; }
.cookie .row { display: flex; gap: .6rem; }
.cookie .btn { --pad: .6rem 1.2rem; font-size: .85rem; }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1080px) {
  .nav, .header-cta .btn-ghost { display: none; }
  .hamburger { display: block; }
  .g-3, .g-4, .testi-grid, .stats { grid-template-columns: repeat(2, 1fr); }
  .family, .prof, .contact-grid, .service { grid-template-columns: 1fr; gap: 2rem; }
  .service { gap: 0; }
  .service-media { min-height: 240px; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .prof-media { max-width: 420px; }
  .gallery { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wrap { width: calc(100% - 2rem); }
  .g-3, .g-4, .g-2, .testi-grid, .stats, .exp-prices, .partner-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .event { grid-template-columns: auto 1fr; }
  .event .status { grid-column: 2; justify-self: start; }
  .hero { padding-top: 5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ----- Acessibilidade ----- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
