/* =========================================================
   SETE TONS — Design System
   Paleta recalibrada a partir da logo oficial (azul + vinho)
   ========================================================= */

:root{
  /* --- Cores de marca (extraídas da logo) --- */
  --blue:        #005d8a;
  --blue-deep:   #023a54;
  --blue-ink:    #081c28;
  --wine:        #a92d4a;
  --wine-deep:   #6e1c30;
  --gold:        #c9a24b;

  /* --- Neutros --- */
  --ink:         #0c1720;
  --ink-2:       #10202c;
  --parchment:   #f6f1e7;
  --parchment-2: #efe6d4;
  --muted:       #9aa7ad;
  --muted-2:     #c9bfae;

  /* --- Espectro dos 7 tons (vinho → dourado → azul) --- */
  --t1: #a92d4a;
  --t2: #b4544a;
  --t3: #be7b4b;
  --t4: #c9a24b;
  --t5: #868b60;
  --t6: #437475;
  --t7: #005d8a;

  /* --- Tipografia --- */
  --f-display: "Fraunces", "Georgia", serif;
  --f-emotion: "Newsreader", "Georgia", serif;
  --f-body:    "Work Sans", "Helvetica Neue", Arial, sans-serif;
  --f-mono:    "IBM Plex Mono", monospace;

  /* --- Espaçamento fluido --- */
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(4rem, 9vw, 8rem);

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

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

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

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }

.container{
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow{
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,h2,h3,h4{
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--parchment);
}

h2{ font-size: clamp(1.9rem, 3.4vw, 3rem); }
h3{ font-size: clamp(1.3rem, 2vw, 1.7rem); }

.emotion{
  font-family: var(--f-emotion);
  font-style: italic;
  font-weight: 400;
  color: var(--muted-2);
}

.lede{
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--muted-2);
  max-width: 46ch;
}

/* ---------- Botões ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover{ transform: translateY(-2px); background: #dab663; }
.btn-ghost{
  border-color: rgba(246,241,231,.35);
  color: var(--parchment);
}
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-wine{
  background: var(--wine);
  color: var(--parchment);
}
.btn-wine:hover{ background: #c23a58; transform: translateY(-2px); }

/* ---------- Espectro decorativo (assinatura dos 7 tons) ---------- */
.spectrum-bar{
  display: flex;
  height: 4px;
  width: 100%;
}
.spectrum-bar span{ flex: 1; }
.spectrum-bar span:nth-child(1){ background: var(--t1); }
.spectrum-bar span:nth-child(2){ background: var(--t2); }
.spectrum-bar span:nth-child(3){ background: var(--t3); }
.spectrum-bar span:nth-child(4){ background: var(--t4); }
.spectrum-bar span:nth-child(5){ background: var(--t5); }
.spectrum-bar span:nth-child(6){ background: var(--t6); }
.spectrum-bar span:nth-child(7){ background: var(--t7); }

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader{
  position: fixed;
  inset: 0;
  z-index: 999;
  background: radial-gradient(120% 120% at 50% 40%, var(--ink-2) 0%, var(--ink) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
}
#preloader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo{
  width: clamp(120px, 20vw, 190px);
  opacity: 0;
  filter: drop-shadow(0 0 30px rgba(201,162,75,.25));
  animation: logoIn 1.4s var(--ease) .2s forwards;
}
@keyframes logoIn{
  0%{ opacity: 0; transform: scale(.82); }
  100%{ opacity: 1; transform: scale(1); }
}
.preloader-eq{
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 40px;
}
.preloader-eq span{
  width: 5px;
  border-radius: 3px;
  opacity: 0;
  animation: eqIn .4s ease forwards, eq 1.1s ease-in-out infinite;
}
.preloader-eq span:nth-child(1){ background: var(--t1); animation-delay: .5s, 1s; }
.preloader-eq span:nth-child(2){ background: var(--t2); animation-delay: .58s, 1.1s; }
.preloader-eq span:nth-child(3){ background: var(--t3); animation-delay: .66s, 1.2s; }
.preloader-eq span:nth-child(4){ background: var(--t4); animation-delay: .74s, 1.3s; }
.preloader-eq span:nth-child(5){ background: var(--t5); animation-delay: .82s, 1.4s; }
.preloader-eq span:nth-child(6){ background: var(--t6); animation-delay: .9s, 1.5s; }
.preloader-eq span:nth-child(7){ background: var(--t7); animation-delay: .98s, 1.6s; }
@keyframes eqIn{ to{ opacity: 1; } }
@keyframes eq{
  0%,100%{ height: 8px; }
  50%{ height: 40px; }
}
.preloader-label{
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.7s forwards;
}
@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
header.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: linear-gradient(to bottom, rgba(12,23,32,.92), rgba(12,23,32,0));
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s var(--ease);
}
header.site-header.is-scrolled{
  background: rgba(9,17,24,.88);
  backdrop-filter: blur(10px);
  padding: .7rem 0;
  box-shadow: 0 1px 0 rgba(201,162,75,.15);
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand{
  display: flex;
  align-items: center;
  gap: .7rem;
}
.brand img{ height: 42px; width: auto; transition: height .35s var(--ease); }
header.site-header.is-scrolled .brand img{ height: 34px; }

nav.primary-nav ul{
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
nav.primary-nav a{
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  position: relative;
  padding: .3rem 0;
  transition: color .3s;
}
nav.primary-nav a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
nav.primary-nav a:hover{ color: var(--parchment); }
nav.primary-nav a:hover::after{ width: 100%; }

.has-dropdown{ position: relative; }
.has-dropdown > a{ display: flex; align-items: center; gap: .4rem; }
.has-dropdown > a svg{ width: 9px; transition: transform .3s var(--ease); }
.has-dropdown:hover > a svg{ transform: rotate(180deg); }
.dropdown{
  position: absolute;
  top: calc(100% + 1.1rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: var(--ink-2);
  border: 1px solid rgba(201,162,75,.18);
  padding: .6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a{
  display: block;
  padding: .65rem .8rem;
  font-family: var(--f-body);
  font-size: .86rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted-2);
  border-left: 2px solid transparent;
  transition: border-color .25s, color .25s, background .25s;
}
.dropdown a:hover{
  color: var(--parchment);
  border-left-color: var(--gold);
  background: rgba(201,162,75,.06);
}
.dropdown a::after{ display: none; }

.nav-cta{ display: flex; align-items: center; gap: 1.4rem; }

.nav-socials{ display: flex; align-items: center; gap: 1rem; }
.nav-socials-mobile{ display: none; align-items: center; gap: 1.2rem; }
.nav-socials a, .nav-socials-mobile a{ color: var(--muted-2); transition: color .3s, transform .3s var(--ease); display: inline-flex; }
.nav-socials svg, .nav-socials-mobile svg{ width: 18px; height: 18px; }
.nav-socials-mobile svg{ width: 20px; height: 20px; }
.nav-socials a:hover, .nav-socials-mobile a:hover{ color: var(--gold); transform: translateY(-1px); }

.hamburger{
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(246,241,231,.25);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span{
  width: 20px; height: 1px; background: var(--parchment);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.is-active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity: 0; }
.hamburger.is-active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 82% 18%, rgba(0,93,138,.35) 0%, transparent 60%),
    radial-gradient(55% 55% at 12% 85%, rgba(169,45,74,.28) 0%, transparent 60%),
    var(--ink);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}
.hero-copy > *+*{ margin-top: 1.4rem; }
.hero-copy h1{ font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
.hero-copy .lede{ max-width: 50ch; }
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-proof{
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(246,241,231,.12);
  flex-wrap: wrap;
}
.hero-proof .stat b{
  display: block;
  font-family: var(--f-display);
  font-size: 1.9rem;
  color: var(--gold);
}
.hero-proof .stat span{
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Visual do hero: pauta / onda sonora animada */
.hero-visual{
  position: relative;
  height: clamp(320px, 42vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-lines{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 24px);
  opacity: .35;
}
.staff-lines span{ height: 1px; background: linear-gradient(90deg, transparent, var(--muted-2) 20%, var(--muted-2) 80%, transparent); }

.eq-orb{
  position: relative;
  width: min(360px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-orb::before{
  content: "";
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  border: 1px solid rgba(0,93,138,.25);
  animation: spinSlow 40s linear infinite;
}
.eq-orb::after{
  content: "";
  position: absolute;
  inset: -64px;
  border-radius: 50%;
  border: 1px dashed rgba(169,45,74,.22);
  animation: spinSlow 70s linear infinite reverse;
}
@keyframes spinSlow{ to{ transform: rotate(360deg); } }

.hero-eq{
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 100px;
}
.hero-eq span{
  width: 6px;
  border-radius: 3px;
  animation: heroEq 2.4s ease-in-out infinite;
}
.hero-eq span:nth-child(1){ background: var(--t1); height: 30%; animation-delay: .0s; }
.hero-eq span:nth-child(2){ background: var(--t2); height: 55%; animation-delay: .15s; }
.hero-eq span:nth-child(3){ background: var(--t3); height: 80%; animation-delay: .3s; }
.hero-eq span:nth-child(4){ background: var(--t4); height: 100%; animation-delay: .45s; }
.hero-eq span:nth-child(5){ background: var(--t5); height: 70%; animation-delay: .6s; }
.hero-eq span:nth-child(6){ background: var(--t6); height: 50%; animation-delay: .75s; }
.hero-eq span:nth-child(7){ background: var(--t7); height: 35%; animation-delay: .9s; }
@keyframes heroEq{
  0%,100%{ transform: scaleY(.4); }
  50%{ transform: scaleY(1); }
}

.scroll-cue{
  position: absolute;
  left: 50%;
  bottom: clamp(1.2rem, 3vw, 2.4rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--muted-2);
  transition: opacity .5s;
}
.scroll-cue span{
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.scroll-cue svg{ animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce{
  0%,100%{ transform: translateY(0); opacity: .5; }
  50%{ transform: translateY(8px); opacity: 1; }
}
.scroll-cue.is-hidden{ opacity: 0; pointer-events: none; }

/* =========================================================
   SEÇÕES GERAIS
   ========================================================= */
section{ padding: var(--section-y) 0; position: relative; }
.section-head{ max-width: 62ch; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head .eyebrow{ margin-bottom: 1rem; display: block; }

.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- Pilares ---------- */
.pillars{ background: var(--ink-2); }
.pillars-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(246,241,231,.08);
  border: 1px solid rgba(246,241,231,.08);
}
.pillar{
  background: var(--ink-2);
  padding: 2.2rem 1.8rem;
  transition: background .4s var(--ease);
}
.pillar:hover{ background: #142330; }
.pillar .num{
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .1em;
}
.pillar h3{ margin: 1rem 0 .8rem; font-size: 1.15rem; }
.pillar p{ color: var(--muted-2); font-size: .92rem; margin: 0; }

/* ---------- Musical para ---------- */
.musical-para .cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.mp-card{
  position: relative;
  padding: 2.4rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(246,241,231,.1);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.mp-card:hover{ transform: translateY(-6px); border-color: rgba(201,162,75,.4); }
.mp-card::before{
  content: "";
  position: absolute; inset: 0;
  opacity: .85;
  z-index: 0;
}
.mp-card.featured{
  grid-column: 1 / -1;
  min-height: 260px;
  padding: 2.8rem clamp(2rem, 5vw, 4rem);
}
.mp-card.featured p{ max-width: 60ch; }
.mp-card.featured::before{ background: linear-gradient(120deg, var(--wine-deep), var(--ink-2) 75%); }
.mp-card.religioso::before{ background: linear-gradient(160deg, #2a2417, var(--ink-2) 70%); }
.mp-card.corporativo::before{ background: linear-gradient(160deg, var(--blue-deep), var(--ink-2) 70%); }
.mp-card.forro::before{ background: linear-gradient(160deg, #5c3820, var(--ink-2) 70%); }
.mp-card > *{ position: relative; z-index: 1; }
.mp-card .eyebrow{ margin-bottom: .8rem; }
.mp-card h3{ margin-bottom: .7rem; }
.mp-card p{ color: var(--muted-2); font-size: .92rem; max-width: 46ch; }
.mp-card .btn{ margin-top: 1.4rem; align-self: flex-start; }

/* ---------- Área Premium ---------- */
.premium{
  background: linear-gradient(180deg, var(--ink) 0%, var(--blue-ink) 100%);
  border-top: 1px solid rgba(201,162,75,.15);
  border-bottom: 1px solid rgba(201,162,75,.15);
}
.premium-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.premium-badge{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(201,162,75,.4);
  padding: .4rem .9rem;
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.premium-features{ margin-top: 2rem; display: grid; gap: 1.1rem; }
.premium-feature{ display: flex; gap: 1rem; align-items: flex-start; }
.premium-feature .icon{
  flex: none;
  width: 34px; height: 34px;
  border: 1px solid rgba(201,162,75,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.premium-feature h4{ font-family: var(--f-body); font-weight: 600; margin: 0 0 .25rem; color: var(--parchment); font-size: 1rem; }
.premium-feature p{ margin: 0; color: var(--muted-2); font-size: .9rem; }

.premium-panel{
  border: 1px solid rgba(201,162,75,.25);
  background: rgba(255,255,255,.02);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  position: relative;
}
.premium-panel .spectrum-bar{ margin-bottom: 1.6rem; }
.premium-panel .pp-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px dashed rgba(246,241,231,.12);
  font-family: var(--f-mono);
  font-size: .78rem;
  color: var(--muted-2);
}
.premium-panel .pp-row:last-of-type{ border-bottom: none; }
.premium-panel .pp-row b{ color: var(--parchment); font-weight: 500; }
.premium-panel .btn{ width: 100%; justify-content: center; margin-top: 1.8rem; }

/* ---------- Raízes do Amor ---------- */
.raizes{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.raizes-visual{
  height: clamp(220px, 30vw, 340px);
  border: 1px solid rgba(169,45,74,.3);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(60% 60% at 50% 50%, rgba(169,45,74,.18), transparent 70%);
}
.raizes-visual svg{ width: 60%; opacity: .9; }
.raizes-copy .eyebrow{ color: var(--wine); }

/* ---------- Na mídia ---------- */
.midia-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.midia-card{
  padding: 2rem;
  border: 1px solid rgba(246,241,231,.1);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color .4s, transform .4s var(--ease);
}
.midia-card:hover{ transform: translateY(-4px); border-color: rgba(201,162,75,.4); }
.midia-card .icon{ width: 30px; height: 30px; color: var(--gold); }
.midia-card h4{ font-family: var(--f-body); font-weight: 600; margin: 0; font-size: 1.05rem; }
.midia-card p{ margin: 0; color: var(--muted-2); font-size: .88rem; }
.midia-card .go{ margin-top: auto; font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); display: flex; align-items: center; gap: .4rem; }
.midia-card:hover .go{ color: var(--gold); }

/* ---------- Sobre teaser ---------- */
.sobre{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.sobre-stats{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 2rem; }
.sobre-stats .stat b{ font-family: var(--f-display); font-size: 2.1rem; color: var(--gold); display: block; }
.sobre-stats .stat span{ font-family: var(--f-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ---------- Contato / Formulário ---------- */
#contato{ background: var(--ink-2); }
.contato-grid{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contato-form{
  display: grid;
  gap: 1.2rem;
  border: 1px solid rgba(201,162,75,.2);
  background: rgba(255,255,255,.02);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.form-row{ display: grid; gap: .5rem; }
.form-row-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-row-split .form-row,
.form-row-split > div{ display: grid; gap: .5rem; }
.contato-form label{
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contato-form input,
.contato-form select,
.contato-form textarea{
  width: 100%;
  background: var(--ink);
  border: 1px solid rgba(246,241,231,.15);
  color: var(--parchment);
  font-family: var(--f-body);
  font-size: .95rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  transition: border-color .3s var(--ease);
}
.contato-form textarea{ resize: vertical; min-height: 100px; }
.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus{
  outline: none;
  border-color: var(--gold);
}
.contato-form input::placeholder,
.contato-form textarea::placeholder{ color: var(--muted); opacity: .7; }
.contato-form select{ appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M1 1l4 4 4-4' stroke='%23c9a24b' stroke-width='1.3' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; }
.contato-form button{ justify-self: start; }

/* ---------- FAQ ---------- */
.faq-list{
  display: grid;
  gap: 1px;
  background: rgba(246,241,231,.08);
  border: 1px solid rgba(246,241,231,.08);
}
.faq-item{
  background: var(--ink-2);
  transition: background .3s var(--ease);
}
.faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 1.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--parchment);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  flex: none;
  font-family: var(--f-mono);
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item:hover{ background: #142330; }
.faq-item summary:focus-visible{ outline: 1px solid var(--gold); outline-offset: -4px; }
.faq-answer{
  margin: 0;
  padding: 0 1.9rem 1.7rem;
  color: var(--muted-2);
  font-size: .92rem;
  max-width: 68ch;
}

/* ---------- CTA final ---------- */
.cta-final{
  text-align: center;
  background: linear-gradient(160deg, var(--wine-deep), var(--ink) 60%);
}
.cta-final h2{ max-width: 20ch; margin-inline: auto; }
.cta-final .lede{ margin-inline: auto; text-align: center; }
.cta-final .hero-ctas{ justify-content: center; margin-top: 2rem; }

/* =========================================================
   FOOTER
   ========================================================= */
footer{
  background: var(--ink);
  border-top: 1px solid rgba(246,241,231,.08);
  padding: 4rem 0 2rem;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand img{ height: 46px; margin-bottom: 1rem; }
.footer-brand p{ color: var(--muted-2); font-size: .88rem; max-width: 32ch; }
.footer-col h5{
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
}
.footer-col ul{ display: grid; gap: .7rem; }
.footer-col a{ font-size: .9rem; color: var(--muted-2); transition: color .3s; }
.footer-col a:hover{ color: var(--parchment); }
.footer-bottom{
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(246,241,231,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--muted);
}
.footer-bottom a{ color: var(--muted); transition: color .3s; }
.footer-bottom a:hover{ color: var(--gold); }

.footer-credit{
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(246,241,231,.06);
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
}
.footer-credit a{
  color: var(--muted-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s;
}
.footer-credit a:hover{ color: var(--gold); }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float{
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wine);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(169,45,74,.4);
  transition: transform .35s var(--ease);
}
.whatsapp-float:hover{ transform: scale(1.08); }
.whatsapp-float::before{
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(169,45,74,.5);
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing{
  0%{ transform: scale(.9); opacity: .8; }
  100%{ transform: scale(1.5); opacity: 0; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px){
  .pillars-grid{ grid-template-columns: repeat(2, 1fr); }
  .musical-para .cards{ grid-template-columns: 1fr; }
  .premium-inner, .raizes, .sobre, .contato-grid{ grid-template-columns: 1fr; }
  .midia-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .hero-grid{ grid-template-columns: 1fr; text-align: left; }
  .hero-visual{ order: -1; height: 280px; }
}

@media (max-width: 760px){
  nav.primary-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--ink-2);
    border-left: 1px solid rgba(201,162,75,.2);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index: 95;
    overflow-y: auto;
  }
  nav.primary-nav.is-open{ transform: translateX(0); }
  nav.primary-nav ul{ flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .has-dropdown .dropdown{
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-top: .8rem;
    padding: 0 0 0 .8rem;
    min-width: 0;
  }
  .has-dropdown.is-open .dropdown{ display: block; }
  .hamburger{ display: inline-flex; }
  .nav-cta .btn-ghost{ display: none; }
  .nav-socials{ display: none; }
  .nav-socials-mobile{ display: flex; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid rgba(246,241,231,.1); }
  .pillars-grid{ grid-template-columns: 1fr; }
  .midia-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .sobre-stats{ grid-template-columns: 1fr 1fr; }
  .hero-proof{ gap: 1.6rem; }
  .form-row-split{ grid-template-columns: 1fr; }
}

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