/* ==========================================================================
   NOEN PARTICIPAÇÕES — Identidade visual institucional
   Segmento: Gestão de participações societárias / investimentos
   Paleta: navy profundo + dourado antigo · Serif editorial (Spectral) + Inter
   ========================================================================== */

:root {
  /* Cores */
  --ink:        #0F1115;   /* navy quase preto — fundos escuros e títulos */
  --navy:       #1C2230;   /* petróleo — seções escuras secundárias */
  --navy-700:   #3c414d;
  --gold:       #cb5c2e;   /* dourado antigo — acento, uso contido */
  --gold-soft:  #d6805c;
  --gold-line:  rgba(203,92,46, .35);
  --paper:      #f4f5f8;   /* off-white frio — fundo claro base */
  --mist:       #eaecf0;   /* seção clara alternada */
  --slate:      #475166;   /* corpo de texto sobre claro */
  --slate-400:  #697386;
  --line:       #dee1e8;   /* hairlines */
  --line-dark:  rgba(255,255,255,.12);
  --white:      #FFFFFF;
  --focus:      #db8d6d;

  /* Tipografia */
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Escala / ritmo */
  --container: 1200px;
  --radius: 3px;
  --shadow-sm: 0 1px 2px rgba(15,17,21,.05), 0 4px 14px rgba(15,17,21,.05);
  --shadow-md: 0 10px 40px rgba(15,17,21,.10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------------------------------------- Base ------- */
* { box-sizing: border-box; }

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

body {
  font-family: var(--sans);
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif { font-family: var(--serif); color: var(--ink); font-weight: 500; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); line-height: 1.05; font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.12; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.25; }
p { margin: 0 0 1.1rem; }
a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
strong { color: var(--ink); font-weight: 600; }

.container-x { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }

/* Foco acessível */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, .btn:focus-visible, summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 2000;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color:#fff; }

/* Rótulos "eyebrow" — pequenas capitulares que estruturam as seções */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block;
}
.eyebrow.center { justify-content: center; }

.lead { font-size: 1.2rem; color: var(--slate); line-height: 1.65; }
.text-muted-2 { color: var(--slate-400); }

/* --------------------------------------------------------- Botões ------- */
.btn {
  --bs-btn-focus-box-shadow: none;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .01em; border-radius: var(--radius);
  padding: .85rem 1.7rem; transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: .5rem; border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--ink); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(203,92,46,.28); }
.btn-ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ink:hover { background: var(--navy); border-color: var(--navy); color:#fff; transform: translateY(-1px); }
.btn-outline-light2 { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light2:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-ink { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline-ink:hover { border-color: var(--ink); color: var(--ink); background: var(--paper); }
.btn i { font-size: 1.05em; }

/* --------------------------------------------------------- Header ------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(255,255,255,.0);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(15,17,21,.02);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand-name { font-family: var(--serif); font-size: 1.45rem; color: var(--ink); letter-spacing: .02em; line-height: 1; }
.brand-tag { display:block; font-family: var(--sans); font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

/* Header sobre hero escuro (home) — texto claro até rolar */
.site-header:not(.solid) .brand-name { color: #fff; }
.site-header:not(.solid) .nav-menu a { color: rgba(255,255,255,.86); }
.site-header:not(.solid) .nav-menu a:hover,
.site-header:not(.solid) .nav-menu a.active { color: #fff; }
.site-header:not(.solid) .nav-toggle span { background: #fff; }

.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  font-size: .92rem; font-weight: 500; color: var(--slate); letter-spacing: .01em;
  position: relative; padding: .3rem 0;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .28s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--ink); }

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

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 30px; height: 30px;
  background: none; border: none; cursor: pointer; padding: 4px 2px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
  .nav-toggle { display: flex; }
  .nav-drawer {
    position: fixed; inset: 78px 0 auto 0; background: var(--ink);
    border-top: 1px solid var(--line-dark);
    max-height: 0; overflow: hidden; transition: max-height .38s var(--ease);
  }
  .nav-drawer.open { max-height: 460px; }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.5rem 1rem; }
  .nav-menu li { border-bottom: 1px solid var(--line-dark); }
  .nav-menu a { display: block; padding: 1rem .2rem; color: rgba(255,255,255,.9); }
  .nav-menu a::after { display: none; }
  .nav-menu a.active { color: var(--gold); }
  .nav-drawer .nav-cta { padding: 1.1rem 1.5rem 1.4rem; }
  .nav-drawer .btn { width: 100%; justify-content: center; }
  .site-header:not(.solid) .nav-menu a { color: rgba(255,255,255,.9); }
}
@media (min-width: 992px) {
  .nav-drawer { display: flex; align-items: center; gap: 2rem; }
  .nav-drawer .nav-cta { display: none; } /* CTA fica na barra em desktop */
}

/* ---------------------------------------------------------- Hero -------- */
.hero {
  position: relative; background: var(--ink); color: #fff;
  padding: 190px 0 120px; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(203,92,46,.16), transparent 60%),
    radial-gradient(900px 500px at 8% 108%, rgba(60,65,77,.55), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #1d1f23 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: center; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { color: #fff; margin: 0 0 1.4rem; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p.lead { color: rgba(255,255,255,.78); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-meta { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line-dark); flex-wrap: wrap; }
.hero-meta .stat .num { font-family: var(--serif); font-size: 1.85rem; color: #fff; line-height: 1; }
.hero-meta .stat .lbl { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .5rem; }

.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.4)); }

@media (max-width: 991px) {
  .hero { padding: 150px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
}

/* -------------------------------------------------------- Seções -------- */
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.section.paper { background: var(--paper); }
.section.mist { background: var(--mist); }
.section.ink { background: var(--ink); color: rgba(255,255,255,.8); }
.section.ink h2, .section.ink h3 { color: #fff; }
.section.ink .eyebrow { color: var(--gold-soft); }

.section-head { max-width: 720px; margin-bottom: 3.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate); font-size: 1.12rem; margin-bottom: 0; }
.section.ink .section-head p { color: rgba(255,255,255,.72); }

/* Pilar página interna — cabeçalho */
.page-hero {
  background: var(--ink); color: #fff; padding: 170px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(900px 500px at 85% -20%, rgba(203,92,46,.14), transparent 60%),
              linear-gradient(180deg, var(--ink), #1d1f23);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero h1 { color: #fff; margin: 0 0 1.1rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.15rem; margin: 0; max-width: 40rem; }
.breadcrumb-x { display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 1.4rem; letter-spacing: .04em; }
.breadcrumb-x a { color: rgba(255,255,255,.7); }
.breadcrumb-x a:hover { color: var(--gold-soft); }
.breadcrumb-x i { font-size: .7rem; }

/* --------------------------------------------------- Cards / grids ------ */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px){ .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card-x {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.9rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; height: 100%;
}
.card-x:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-line); }
.card-x .ic {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: grid; place-items: center; margin-bottom: 1.4rem;
  background: linear-gradient(135deg, var(--ink), var(--navy)); color: var(--gold-soft);
  font-size: 1.45rem;
}
.card-x h3 { margin: 0 0 .6rem; font-size: 1.28rem; }
.card-x p { margin: 0; color: var(--slate); font-size: 1rem; }
.card-x .idx {
  position: absolute; top: 1.6rem; right: 1.7rem; font-family: var(--serif);
  font-size: .9rem; color: var(--gold); letter-spacing: .05em;
}

/* Diferenciais — layout compacto com hairline dourada */
.feature { display: flex; gap: 1.1rem; padding: 1.6rem 0; border-top: 1px solid var(--line); }
.feature .fic { color: var(--gold); font-size: 1.4rem; flex: none; margin-top: .1rem; }
.feature h3 { font-size: 1.15rem; margin: 0 0 .35rem; }
.feature p { margin: 0; font-size: .98rem; }
.section.ink .feature { border-top-color: var(--line-dark); }
.section.ink .feature p { color: rgba(255,255,255,.68); }

/* Processo — timeline numerada (a ordem carrega informação real) */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 2.5rem; counter-reset: step; }
@media (max-width: 900px){ .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .process { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0; font-family: var(--serif); font-size: 1.6rem;
  color: var(--gold); line-height: 1;
}
.step::after {
  content:""; position: absolute; top: .55rem; left: 3.2rem; right: -1.2rem; height: 1px;
  background: var(--gold-line);
}
.process .step:nth-child(3n)::after,
.process .step:last-child::after { display: none; }
@media (max-width: 900px){ .step::after{ display:none; } }
.step h3 { font-size: 1.16rem; margin: 0 0 .45rem; }
.step p { margin: 0; font-size: .97rem; }
.section.ink .step p { color: rgba(255,255,255,.68); }

/* Split (sobre / texto + painel) */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; gap: 2.5rem; } }
.panel {
  background: linear-gradient(160deg, var(--ink), var(--navy)); color: #fff;
  border-radius: var(--radius); padding: 2.6rem; position: relative; overflow: hidden;
}
.panel::before{ content:""; position:absolute; inset:0; background: radial-gradient(500px 300px at 100% 0, rgba(203,92,46,.16), transparent 60%); }
.panel h3 { color:#fff; }
.panel .dl { position: relative; z-index: 2; margin: 0; }
.panel .dl > div { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line-dark); }
.panel .dl > div:last-child { border-bottom: none; }
.panel dt { color: rgba(255,255,255,.6); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.panel dd { margin: 0; color: #fff; font-weight: 500; text-align: right; }

/* Missão / Visão / Valores */
.mvv { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 820px){ .mvv { grid-template-columns: 1fr; } }
.mvv .card-x .ic { background: transparent; border: 1px solid var(--gold-line); color: var(--gold); }

/* Valores list */
.values { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 2rem; }
@media (max-width: 620px){ .values { grid-template-columns: 1fr; } }
.values li { display: flex; gap: .7rem; padding: .7rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.values li i { color: var(--gold); font-size: .95rem; }
.values li strong { display:block; }
.values li span { font-size: .92rem; color: var(--slate-400); }

/* Faixa de números */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
@media (max-width: 760px){ .stats-band { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; } }
.stats-band .num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; line-height: 1; }
.stats-band .lbl { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .7rem; }
.stats-band .div { color: var(--gold-soft); }

/* ---------------------------------------------------------- FAQ --------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 0; font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
  position: relative; line-height: 1.4;
}
.faq-q::after {
  content: "\F64D"; font-family: "bootstrap-icons"; position: absolute; right: 0; top: 1.5rem;
  color: var(--gold); font-size: 1.1rem; transition: transform .3s var(--ease);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.faq-a-inner { padding: 0 3rem 1.6rem 0; color: var(--slate); }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------- Contato -------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: none; }
.info-list .ii { color: var(--gold); font-size: 1.15rem; margin-top: .15rem; flex: none; width: 22px; }
.info-list .lb { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); margin-bottom: .15rem; }
.info-list .vv { color: var(--ink); font-weight: 500; }
.info-list a.vv { color: var(--navy); }
.info-list a.vv:hover { color: var(--gold); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem; box-shadow: var(--shadow-sm); }
.form-label { font-size: .82rem; font-weight: 600; color: var(--ink); letter-spacing: .03em; margin-bottom: .4rem; display: block; }
.form-label .req { color: var(--gold); }
.form-control-x {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--paper);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-control-x:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(203,92,46,.12); }
textarea.form-control-x { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.2rem; }
.form-note { font-size: .82rem; color: var(--slate-400); margin-top: 1rem; }
.form-status { padding: 1rem 1.2rem; border-radius: var(--radius); font-size: .95rem; margin-top: 1.2rem; display: none; }
.form-status.ok { display: block; background: rgba(46,120,88,.1); color: #1f6b47; border: 1px solid rgba(46,120,88,.25); }
.form-status.err { display: block; background: rgba(180,50,50,.08); color: #a13030; border: 1px solid rgba(180,50,50,.2); }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; width: 100%; height: 340px; border: 0; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 3.2rem; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 90% 10%, rgba(203,92,46,.2), transparent 60%); }
.cta-band .inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color:#fff; margin: 0; }
.cta-band p { color: rgba(255,255,255,.75); margin: .6rem 0 0; max-width: 34rem; }

/* --------------------------------------------------- Documento legal ---- */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: 1.5rem; margin: 2.6rem 0 1rem; padding-top: 1.2rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.2rem; margin: 1.8rem 0 .7rem; }
.legal p, .legal li { color: var(--slate); }
.legal ul, .legal ol { padding-left: 1.3rem; margin-bottom: 1.2rem; }
.legal li { margin-bottom: .5rem; }
.legal .updated { display: inline-block; font-size: .85rem; color: var(--slate-400); background: var(--paper); border: 1px solid var(--line); padding: .5rem 1rem; border-radius: var(--radius); margin-bottom: 2.5rem; }
.legal .toc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.9rem; margin-bottom: 2.5rem; }
.legal .toc strong { display:block; margin-bottom: .8rem; font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.legal .toc ol { margin: 0; padding-left: 1.2rem; }
.legal .toc a { color: var(--navy); }

/* --------------------------------------------------------- Footer ------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color:#fff; }
.footer-about { font-size: .95rem; color: rgba(255,255,255,.62); margin: 1.2rem 0 1.4rem; max-width: 30rem; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 1.2rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .7rem; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .95rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; font-size: .93rem; color: rgba(255,255,255,.72); }
.footer-contact i { color: var(--gold); margin-top: .2rem; flex: none; }
.footer-contact a { color: rgba(255,255,255,.72); }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: var(--radius); display: grid; place-items: center; color: rgba(255,255,255,.75); font-size: 1.05rem; transition: all .25s var(--ease); }
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.6rem 0; flex-wrap: wrap; font-size: .84rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-legal-links { display: flex; gap: 1.3rem; flex-wrap: wrap; }

/* --------------------------------------------------- WhatsApp float ----- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 10px 30px rgba(37,211,102,.5); }
.wa-float::after {
  content: attr(data-tip); position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; font-family: var(--sans); font-size: .82rem; white-space: nowrap;
  padding: .5rem .85rem; border-radius: var(--radius); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease);
}
.wa-float:hover::after { opacity: 1; }
@media (max-width: 520px){ .wa-float::after { display:none; } }

/* --------------------------------------------------- Cookie banner ------ */
.cookie-bar {
  position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 140%);
  width: min(920px, calc(100% - 32px)); z-index: 1100;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 1.4rem 1.6rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  transition: transform .5s var(--ease);
}
.cookie-bar.show { transform: translate(-50%, 0); }
.cookie-bar .txt { flex: 1 1 340px; font-size: .92rem; color: var(--slate); }
.cookie-bar .txt strong { display:block; color: var(--ink); font-family: var(--serif); font-size: 1.05rem; margin-bottom: .2rem; }
.cookie-bar .acts { display: flex; gap: .7rem; flex-wrap: wrap; }
.cookie-bar .btn { padding: .65rem 1.3rem; font-size: .88rem; }

/* --------------------------------------------------- Reveal on scroll --- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }

/* Utilidades finas */
.divider-gold { width: 54px; height: 2px; background: var(--gold); border: none; margin: 1.6rem 0; }
.center { text-align: center; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.pill { display:inline-flex; align-items:center; gap:.4rem; font-size:.78rem; letter-spacing:.05em; padding:.35rem .8rem; border:1px solid var(--gold-line); border-radius:100px; color:var(--gold); background: rgba(203,92,46,.06); }
.section.ink .pill{ color: var(--gold-soft); }
