/*
Theme Name: Mey Pole
Theme URI: https://meypoledancestudio.com
Author: Mey Pole Dance Studio
Description: Custom WordPress theme — Mey Pole Dance Studio, Lisboa
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: mey-pole
*/

/* ─── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --bg:           #0a0908;
  --bg-2:         #14110f;
  --bg-3:         #1c1815;
  --fg:           #f3ece1;
  --fg-dim:       #b8ad9e;
  --fg-muted:     #756c60;
  --line:         rgba(243,236,225,0.12);
  --line-strong:  rgba(243,236,225,0.28);
  --accent:       oklch(0.48 0.14 18);
  --accent-2:     oklch(0.82 0.08 75);
  --accent-glow:  oklch(0.55 0.20 15);
  --display:      "Cormorant Garamond", "Cormorant", serif;
  --sans:         "Manrope", system-ui, sans-serif;
  --mono:         "JetBrains Mono", ui-monospace, monospace;
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "ss01","ss02";
}
a      { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }
img, svg { display: block; max-width: 100%; }

/* ─── Utilities ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 800px) { .container { padding: 0 24px; } }

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.95;
}
.display em { font-style: italic; color: var(--accent-2); font-weight: 400; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
  padding-right: 36px;
}
.btn .arrow { transition: transform 0.4s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--accent); border-color: var(--accent); color: var(--fg); }
.btn--primary:hover { background: var(--accent-glow); border-color: var(--accent-glow); color: var(--fg); }

/* Photo placeholder — shown when no image is attached to the ACF field */
.photo-slot-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    repeating-linear-gradient(var(--ang, 30deg), oklch(0.20 0.04 25), oklch(0.20 0.04 25) 14px, oklch(0.16 0.03 25) 14px, oklch(0.16 0.03 25) 28px);
  pointer-events: none;
}
.photo-slot-bg::before {
  content: "";
  position: absolute; inset: 16px;
  border: 1px dashed rgba(243, 236, 225, 0.15);
}

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 24px 56px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,9,8,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 16px 56px;
  border-bottom-color: var(--line);
}
@media (max-width: 800px) { .nav, .nav.scrolled { padding: 16px 24px; } }

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { display: block; height: 44px; width: auto; }
@media (max-width: 600px) { .nav__logo { height: 36px; } }

.nav__links {
  display: flex; gap: 36px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.nav__links a {
  position: relative; padding: 6px 0;
  color: var(--fg-dim); transition: color 0.3s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--fg); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent-2);
}

.nav__cta { display: flex; align-items: center; gap: 16px; }

.nav__phone {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--fg-dim); display: flex; align-items: center; gap: 8px;
}
.nav__phone-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.7 0.18 145);
  box-shadow: 0 0 8px oklch(0.7 0.18 145);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  align-items: center; justify-content: center;
}
.nav__burger span {
  display: block; width: 14px; height: 1px; background: var(--fg); position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--fg);
}
.nav__burger span::before { top: -4px; }
.nav__burger span::after  { top:  4px; }

@media (max-width: 1050px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
}

/* ─── MOBILE MENU ───────────────────────────────────────────────────────────── */
.menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  padding: 96px 32px 32px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(.65,0,.35,1);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain;
}
.menu.open { transform: translateY(0); }
.menu__close {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center;
}
.menu__links {
  display: flex; flex-direction: column; gap: 18px;
  font-family: var(--display); font-size: 44px; font-style: italic;
}
.menu__links a { display: flex; align-items: baseline; gap: 16px; }
.menu__links a .n {
  font-family: var(--mono); font-size: 10px; font-style: normal;
  color: var(--fg-muted); letter-spacing: 0.2em;
}
.menu__foot {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--fg-dim); text-transform: uppercase;
  display: flex; flex-direction: column; gap: 10px;
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  padding: 120px 56px 48px;
  overflow: hidden;
}
@media (max-width: 800px) { .hero { padding: 100px 24px 32px; } }

.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, oklch(0.28 0.08 18 / 0.6), transparent 55%),
    radial-gradient(ellipse at 20% 80%, oklch(0.25 0.05 30 / 0.5), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px);
  pointer-events: none;
}

.hero__pole {
  position: absolute;
  right: 0;
  top: 0; bottom: 0;
  width: 38%;
  max-width: 640px;
  border-left: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-3);
}
.hero__pole-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.4) contrast(1.05) brightness(0.85);
  z-index: 1;
}
.hero__pole-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.45) 0%, transparent 30%, transparent 70%, rgba(10,9,8,0.85) 100%),
    linear-gradient(90deg, oklch(0.48 0.14 18 / 0.18), transparent 50%, oklch(0.48 0.14 18 / 0.12));
}
.hero__pole-labels {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between; padding: 32px 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em;
  color: var(--fg-dim); text-transform: uppercase;
}
.hero__pole-label   { writing-mode: vertical-rl; transform: rotate(180deg); padding: 24px; align-self: flex-start; }
.hero__pole-label.b { transform: rotate(0); align-self: flex-end; }

@media (max-width: 1400px) { .hero__pole { width: 28%; } }
@media (max-width: 700px)  { .hero__pole { display: none; } }

.hero__inner {
  position: relative; z-index: 2; width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-right: 40%;
}
@media (max-width: 1400px) { .hero__inner { padding-right: 32%; } }
@media (max-width: 700px)  { .hero__inner { padding-right: 0; gap: 28px; } }

.hero__top {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px;
}
.hero__location {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--fg-dim); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.hero__location::before { content: ""; width: 36px; height: 1px; background: var(--fg-dim); }
.hero__year { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--fg-muted); }

.hero__title {
  font-size: clamp(44px, 7vw, 116px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  max-width: 1100px;
}
.hero__title .line   { display: block; }
.hero__title .line em { font-style: italic; color: var(--accent-2); }
.hero__title .line-2 { padding-left: 0.3em; }

.hero__lede-top {
  max-width: 720px;
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.hero__lede-top strong { color: var(--fg); font-weight: 500; }
.hero__lede-cta {
  color: var(--accent-2);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.3s;
}
.hero__lede-cta:hover { opacity: 0.7; }

/* hero classes grid — straight to the point */
.hero__classes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__classes-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__classes-help {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-muted);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__classes-help .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.7 0.18 145);
  box-shadow: 0 0 8px oklch(0.7 0.18 145 / 0.6);
}
.hero__classes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: oklch(0.13 0.015 30 / 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 1300px) {
  .hero__classes-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__class:nth-child(n+4) { border-top: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .hero__classes-grid { grid-template-columns: 1fr 1fr; }
  .hero__class { border-top: 1px solid var(--line); }
  .hero__class:nth-child(-n+2) { border-top: none; }
}
.hero__class {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px 16px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  color: inherit;
}
/* Desktop: subgrid so every row aligns across all cards */
@media (min-width: 1301px) {
  .hero__classes-grid {
    grid-template-rows: auto auto auto auto 1px auto; /* num · name · sessions · meta · sep · foot */
    row-gap: 0;
  }
  .hero__class {
    grid-row: 1 / -1;
    display: grid;
    grid-template-rows: subgrid;
    row-gap: 0;
    padding-bottom: 0;
  }
  .hero__class-num   { padding-bottom: 12px; }
  .hero__class-name  { padding-bottom: 12px; }
  .hero__class-sessions { padding-bottom: 8px; }
  .hero__class-meta  { padding-bottom: 12px; }
  .hero__class-sep   { align-self: center; }
  .hero__class-foot  { margin-top: 0; padding: 12px 0; border-top: none; min-height: 80px; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; }
}
.hero__class:last-child { border-right: none; }
.hero__class:hover { background: oklch(0.18 0.04 25 / 0.5); }
.hero__class:hover .hero__class-foot .arrow { transform: translateX(3px); color: var(--accent-2); }
.hero__class-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent-2);
}
.hero__class-name {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hero__class-name em { font-style: italic; color: var(--fg-dim); font-weight: 400; font-size: 18px; }
.hero__class-sessions {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-2);
}
.hero__class-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero__class-sep {
  border-top: 1px dashed var(--line);
  margin: 10px 0;
}
.hero__class-foot {
  margin-top: auto;
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__class-foot .price {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--fg);
}
.hero__class-foot .price--dual {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 18px;
}
.hero__class-foot .price__row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.hero__class-foot .price__tag {
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
  min-width: 54px;
}
.hero__class-foot .arrow {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--fg-muted);
  transition: transform 0.3s, color 0.3s;
}

.hero__classes-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero__classes-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--fg-muted);
  text-transform: uppercase;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  margin-left: 4px;
}
.hero__classes-note strong { color: var(--accent-2); font-weight: 500; }

/* ─── MARQUEE ────────────────────────────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 24px 0; background: var(--bg);
}
.marquee__track {
  display: flex; gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--display); font-size: 48px; font-style: italic;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { display: inline-flex; align-items: center; gap: 64px; color: var(--fg); }
.marquee__track span::after { content: "✦"; color: var(--accent-2); font-size: 28px; font-style: normal; }
.marquee__track .alt { color: var(--fg-muted); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS (shared) ─────────────────────────────────────────────────────── */
.section { padding: 40px 0; position: relative; }
@media (max-width: 800px) { .section { padding: 48px 0 24px; } }
.section--alt { background: var(--bg-2); }

/* ─── Section gradient transitions ───────────────────────────────────────── */
/* No border-top on any section — transitions handled by gradients above */

/* Shared ::after shape */
#modalidades::after,
#sobre::after,
#vouchers::after,
#contactos::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; pointer-events: none; z-index: 1;
}
/* modalidades (--bg-2) → horario (--bg) */
#modalidades::after { background: linear-gradient(to bottom, transparent, var(--bg)); }
/* sobre (--bg) → galeria (--bg-2) */
#sobre::after       { background: linear-gradient(to bottom, transparent, var(--bg-2)); }
/* vouchers (--bg-2) → contactos (--bg) */
#vouchers::after    { background: linear-gradient(to bottom, transparent, var(--bg)); }
/* contactos (--bg) → footer (--bg-2) */
#contactos::after   { background: linear-gradient(to bottom, transparent, var(--bg-2)); }
#contactos .section__title { white-space: nowrap; }

.section__head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 56px;
  margin-bottom: 80px; align-items: end;
}
@media (max-width: 800px) { .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; } }

.section__num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--fg-muted); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.section__num::before { content: ""; width: 40px; height: 1px; background: var(--fg-muted); }
.section__title  { font-size: clamp(44px, 7vw, 116px); line-height: 0.9; }
.section__kicker { margin-top: 12px; color: var(--fg-dim); font-size: 15px; max-width: 480px; line-height: 1.7; }

/* ─── SOBRE ──────────────────────────────────────────────────────────────────── */
.sobre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .sobre__grid { grid-template-columns: 1fr; gap: 40px; } }

.sobre__portrait {
  position: relative;
  border: 1px solid var(--line); overflow: hidden;
}
.sobre__portrait img {
  display: block; width: 100%; height: auto;
  filter: grayscale(0.6) contrast(1.08) brightness(0.92);
}
.sobre__portrait::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, transparent 50%, rgba(10,9,8,0.7) 100%),
    linear-gradient(90deg, oklch(0.48 0.14 18 / 0.10), transparent 50%);
}
.sobre__portrait::after {
  content: "MARINA MEY  ·  FOUNDER";
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--fg);
}


.sobre__copy h3 {
  font-family: var(--display); font-size: clamp(36px,4vw,56px);
  line-height: 1.05; font-weight: 400; margin-bottom: 28px; letter-spacing: -0.01em;
}
.sobre__copy h3 em { font-style: italic; color: var(--accent-2); }
.sobre__copy p { color: var(--fg-dim); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }

.sobre__sig { margin-top: 28px; display: flex; align-items: center; gap: 20px; }
.sobre__sig-name { font-family: var(--display); font-style: italic; font-size: 28px; }
.sobre__sig-role {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--fg-muted); text-transform: uppercase;
  padding-left: 20px; border-left: 1px solid var(--line);
}

/* ─── AULAS ──────────────────────────────────────────────────────────────────── */
.aulas__tabs {
  display: flex; flex-wrap: wrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.aulas__tab {
  flex: 1; min-width: 180px; padding: 20px 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fg-muted);
  border-right: 1px solid var(--line);
  cursor: pointer; text-align: left;
  transition: color 0.3s, background 0.3s; position: relative;
}
.aulas__tab:last-child { border-right: none; }
.aulas__tab:hover { color: var(--fg-dim); }
.aulas__tab.active { color: var(--fg); }
.aulas__tab.active::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0;
  height: 1px; background: var(--accent-2);
}
.aulas__tab .num { display: block; font-size: 10px; color: var(--accent-2); margin-bottom: 6px; }

.aulas__panel {
  display: grid; grid-template-columns: 1.3fr 1fr;
  border-bottom: 1px solid var(--line); min-height: 520px;
}
@media (max-width: 900px) { .aulas__panel { grid-template-columns: 1fr; } }

.aulas__detail {
  padding: 56px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  border-right: 1px solid var(--line);
}
@media (max-width: 900px) { .aulas__detail { border-right: none; border-bottom: 1px solid var(--line); padding: 40px 24px; } }

.aulas__detail h4 {
  font-family: var(--display); font-size: clamp(40px,5vw,72px);
  line-height: 1; font-weight: 400; letter-spacing: -0.01em;
}
.aulas__detail h4 em { font-style: italic; color: var(--accent-2); }
.aulas__detail p { color: var(--fg-dim); font-size: 15px; line-height: 1.7; max-width: 480px; }

.aulas__meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding-top: 32px; border-top: 1px solid var(--line); }
.aulas__meta-cell .l {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--fg-muted); text-transform: uppercase; margin-bottom: 8px;
}
.aulas__meta-cell .v { font-family: var(--display); font-style: italic; font-size: 28px; }

.aulas__image { background: var(--bg-3); position: relative; overflow: hidden; aspect-ratio: 4/3; }
@media (min-width: 901px) { .aulas__image { aspect-ratio: unset; } }
.aulas__image img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.8s ease;
}
.aulas__image:hover img { transform: scale(1.04); }
.aulas__image[data-tone="warm"] img { filter: contrast(1.05) brightness(0.92) saturate(0.85); object-position: center 35%; }
.aulas__image[data-tone="cool"] img { filter: grayscale(0.55) contrast(1.1) brightness(0.88); object-position: 60% center; }
.aulas__image[data-tone="red"]  img { filter: sepia(0.3) hue-rotate(-25deg) saturate(1.4) contrast(1.05) brightness(0.85); object-position: 30% center; }
.aulas__image[data-tone="mono"] img { filter: grayscale(1) contrast(1.15) brightness(0.95); object-position: center 40%; }
.aulas__image[data-tone="high"] img { filter: contrast(1.15) brightness(0.78) saturate(0.7); object-position: center top; }
.aulas__image::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 50%, rgba(10,9,8,0.85));
}
.aulas__image::after {
  content: attr(data-label);
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--fg); text-transform: uppercase;
}

/* ─── HORÁRIO — Timetable Grid ──────────────────────────────────────────────── */
.timetable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.timetable {
  display: grid;
  /* col 1 = hour labels; cols 2-7 = Mon-Sat */
  grid-template-columns: 36px repeat(6, minmax(100px, 1fr));
  /* row 1 = day headers; rows 2-24 = 30-min slots from 10h to 21h */
  grid-template-rows: 32px repeat(23, 24px);
  min-width: 640px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) {
  .timetable {
    grid-template-rows: 28px repeat(23, 34px);
    min-width: 560px;
  }
}

.timetable__corner {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  background: var(--bg);
  position: sticky; left: 0; z-index: 3;
}

.timetable__day-hd {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted);
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  background: var(--bg-2);
}
.timetable__day-hd:last-of-type { border-right: none; }

.timetable__hour {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--fg-muted);
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 5px 8px 0 0;
  border-right: 1px solid var(--line);
  background: var(--bg);
  position: sticky; left: 0; z-index: 1;
}

.timetable__hline {
  align-self: start; height: 0;
  border-top: 1px solid var(--line);
  pointer-events: none; z-index: 0;
}

.timetable__cell {
  margin: 2px;
  padding: 5px 8px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 3px;
  display: flex; flex-direction: column; gap: 2px;
  overflow: hidden;
}

.timetable__cell-time {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.06em; color: var(--accent-2);
}
.timetable__cell-name {
  font-family: var(--sans); font-style: normal;
  font-size: 12px; font-weight: 400; line-height: 1.2; color: var(--fg);
}
.timetable__cell-lvl {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; color: var(--fg-muted); text-transform: uppercase;
}

/* Desktop: show grid, hide list */
.schedule-list { display: none; }
.timetable-wrap--desktop { display: block; }

/* Mobile: hide grid, show list */
@media (max-width: 700px) {
  .timetable-wrap--desktop { display: none; }
  .schedule-list { display: flex; flex-direction: column; gap: 32px; }
}

/* ─── HORÁRIO — Mobile List ─────────────────────────────────────────────────── */
.schedule-list__day-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-muted);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 8px; margin-bottom: 4px;
}

.schedule-list__slot {
  display: flex; align-items: baseline; gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-list__time {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.06em; color: var(--accent-2);
  white-space: nowrap; flex-shrink: 0;
  min-width: 130px;
}

.schedule-list__info {
  display: flex; flex-direction: column; gap: 2px;
}

.schedule-list__name {
  font-family: var(--sans); font-style: normal;
  font-size: 15px; font-weight: 400; line-height: 1.3; color: var(--fg);
}

.schedule-list__lvl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; color: var(--fg-muted); text-transform: uppercase;
}

/* ─── GALERIA ────────────────────────────────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2,1fr); } }

.gallery__item {
  background: var(--bg-3); position: relative;
  cursor: pointer; overflow: hidden; transition: transform 0.5s;
}
.gallery__item img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s ease, filter 0.5s;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item[data-tone="a"] img { filter: contrast(1.05) brightness(0.88); object-position: center 30%; }
.gallery__item[data-tone="b"] img { filter: grayscale(1) contrast(1.15) brightness(0.92); }
.gallery__item[data-tone="c"] img { filter: sepia(0.4) hue-rotate(-30deg) saturate(1.5) contrast(1.05) brightness(0.85); object-position: 70% center; }
.gallery__item[data-tone="d"] img { filter: grayscale(0.5) contrast(1.1) brightness(0.85); object-position: 20% center; }
.gallery__item[data-tone="e"] img { filter: contrast(1.2) brightness(0.78) saturate(0.6); object-position: center bottom; }
.gallery__item[data-tone="f"] img { filter: hue-rotate(-10deg) saturate(0.6) contrast(1.1) brightness(0.88); object-position: 80% 30%; }
.gallery__item[data-tone="g"] img { filter: grayscale(0.7) sepia(0.2) contrast(1.15); object-position: center 70%; }
.gallery__item[data-tone="h"] img { filter: contrast(1.1) brightness(0.82); object-position: 40% center; }
.gallery__item:hover { transform: scale(0.985); }
.gallery__item::after {
  content: attr(data-label);
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--fg-dim); text-transform: uppercase;
}
.gallery__item::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45));
  opacity: 0; transition: opacity 0.4s;
}
.gallery__item:hover::before { opacity: 1; }
.gallery__item .num {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--fg-muted);
}
.g-1 { grid-column: span 4; grid-row: span 2; aspect-ratio: 3/4; }
.g-2 { grid-column: span 5; aspect-ratio: 5/3; }
.g-3 { grid-column: span 3; aspect-ratio: 3/4; }
.g-4 { grid-column: span 3; aspect-ratio: 1; }
.g-5 { grid-column: span 5; aspect-ratio: 5/3; }
.g-6 { grid-column: span 4; aspect-ratio: 4/3; }
.g-7 { grid-column: span 4; aspect-ratio: 4/3; }
.g-8 { grid-column: span 4; aspect-ratio: 4/3; }
@media (max-width: 800px) {
  .g-1,.g-2,.g-3,.g-4,.g-5,.g-6,.g-7,.g-8 { grid-column: span 1; aspect-ratio: 3/4; grid-row: auto; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,9,8,0.95); backdrop-filter: blur(20px);
  display: grid; place-items: center; padding: 56px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  width: 60vw; max-width: 720px; aspect-ratio: 3/4;
  background: var(--bg-3); position: relative;
  border: 1px solid var(--line-strong); overflow: hidden;
}
.lightbox__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lightbox__img::after {
  content: attr(data-label);
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--fg);
  text-transform: uppercase; background: rgba(10,9,8,0.5); padding: 6px 10px;
}
.lightbox__close, .lightbox__nav {
  position: absolute; width: 48px; height: 48px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 14px;
  background: rgba(20,17,15,0.6); cursor: pointer;
}
.lightbox__close          { top: 32px; right: 32px; }
.lightbox__nav.prev       { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next       { right: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--fg-dim);
}

/* ─── VÍDEOS ──────────────────────────────────────────────────────────────────── */
.videos { display: grid; grid-template-columns: 1.6fr 1fr; border: 1px solid var(--line); }
@media (max-width: 900px) { .videos { grid-template-columns: 1fr; } }

.videos__player {
  position: relative; aspect-ratio: 16/9;
  background: var(--bg-3); cursor: pointer; overflow: hidden;
  border-right: 1px solid var(--line);
}
@media (min-width: 901px) { .videos__player { aspect-ratio: unset; height: 100%; } }
@media (max-width: 900px) { .videos__player { border-right: none; border-bottom: 1px solid var(--line); } }
.videos__player img,
.videos__player iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: none; }
.videos__player img { filter: brightness(0.78) contrast(1.05); transition: filter 0.4s; }
.videos__player:hover img { filter: brightness(0.88) contrast(1.08); }
.videos__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,9,8,0.85) 100%);
  pointer-events: none;
}
.videos__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center; color: var(--fg);
  border: 1px solid oklch(0.85 0.08 75 / 0.4);
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 0 0 8px rgba(10,9,8,0.4), 0 20px 50px rgba(0,0,0,0.5);
  pointer-events: none;
}
.videos__player:hover .videos__play { transform: translate(-50%,-50%) scale(1.08); background: var(--accent-glow); }

.videos__meta {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 8px; pointer-events: none;
}
.videos__kicker { font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; color: var(--accent-2); text-transform: uppercase; }
.videos__meta h4 {
  font-family: var(--display); font-size: clamp(28px,3.5vw,44px);
  font-weight: 400; line-height: 1.05; font-style: italic; letter-spacing: -0.01em;
}
.videos__meta p { color: var(--fg-dim); font-size: 14px; max-width: 520px; line-height: 1.6; }

.videos__list {
  display: flex; flex-direction: column;
  background: var(--bg-3); max-height: 560px; overflow-y: auto;
}
.videos__item {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 16px;
  align-items: center; padding: 16px; text-align: left;
  border-bottom: 1px solid var(--line); cursor: pointer;
  transition: background 0.3s; background: transparent; position: relative;
  font: inherit; color: inherit;
}
.videos__item:last-child { border-bottom: none; }
.videos__item:hover  { background: oklch(0.16 0.02 25); }
.videos__item.active { background: oklch(0.18 0.04 25); }
.videos__item.active .videos__item-title { color: var(--fg); }
.videos__item.active::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--accent-2);
}
.videos__thumb {
  width: 96px; height: 64px; border-radius: 4px;
  overflow: hidden; background: var(--bg); position: relative;
  border: 1px solid var(--line); flex-shrink: 0;
}
.videos__thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.videos__thumb-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; color: var(--fg-muted);
  background: repeating-linear-gradient(30deg, oklch(0.20 0.04 25), oklch(0.20 0.04 25) 8px, oklch(0.16 0.03 25) 8px, oklch(0.16 0.03 25) 16px);
}
.videos__item-meta  { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.videos__item-title { font-family: var(--display); font-style: italic; font-size: 18px; line-height: 1.15; color: var(--fg-dim); }
.videos__item-num   { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--fg-muted); }

.videos__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
  flex-wrap: wrap; gap: 16px;
}
.videos__channel { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--fg-dim); text-transform: uppercase; }

/* ─── EVENTOS ─────────────────────────────────────────────────────────────────── */
/* ─── EVENTOS (v2 — split video / text) ─────────────────────────────────────── */
.eventos__video-wrap {
  position: relative;
  width: 88%;
  margin: 40px auto;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  overflow: hidden;
  background: var(--bg-3);
}
@media (max-width: 700px) { .eventos__video-wrap { width: 100%; } }
@media (max-width: 700px) { .eventos__video-wrap { aspect-ratio: 16 / 9; max-height: none; } }

.eventos__iframe {
  position: absolute;
  /* Scale to 16:9 inside 21:9 container (cover, no black bars).
     Height = container_height × (21/16) + extra to hide YT chrome. */
  width: 100%;
  height: calc(100% + 120px);
  top: -60px;
  transform: none;
  left: 0;
  border: 0;
}

.eventos__video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, var(--bg) 0%, transparent 10%, transparent 90%, var(--bg) 100%),
    linear-gradient(to right,  var(--bg) 0%, transparent 8%,  transparent 92%, var(--bg) 100%);
  pointer-events: none;
}

.eventos__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0 16px;
}
.eventos__text {
  color: var(--fg-dim);
  font-size: 17px;
  line-height: 1.75;
}
.eventos__actions { margin-top: 8px; }

/* ─── VOUCHERS (v3 — split text / image) ─────────────────────────vouchers__split───────────── */
#vouchers.section { padding: 48px 0 40px; }
#vouchers .section__head { margin-bottom: 48px; }

.vouchers__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}
@media (max-width: 900px) { .vouchers__split { grid-template-columns: 1fr; gap: 32px; } }

.vouchers__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 25px;
}
.vouchers__text {
  color: var(--fg-dim);
  font-size: 17px;
  line-height: 1.75;
}
.vouchers__actions { margin-top: 8px; }

.vouchers__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── CTA BAND ────────────────────────────────────────────────────────────────── */
.cta-band { padding: 120px 0; background: var(--accent); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, oklch(0.55 0.18 15 / 0.4), transparent 50%),
    radial-gradient(circle at 20% 50%, oklch(0.32 0.10 15 / 0.4), transparent 50%);
}
.cta-band__inner {
  position: relative; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 32px;
}
.cta-band h3 {
  font-family: var(--display); font-size: clamp(48px,6vw,96px);
  line-height: 0.95; font-weight: 400; max-width: 900px; letter-spacing: -0.01em;
}
.cta-band h3 em { font-style: italic; color: var(--accent-2); }
.cta-band .btn { border-color: var(--fg); background: var(--fg); color: var(--accent); }
.cta-band .btn:hover { background: var(--bg); color: var(--fg); border-color: var(--bg); }

/* ─── CONTACTOS ───────────────────────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; gap: 32px; } }

.contact__info { display: flex; flex-direction: column; }
.contact__row {
  display: grid; grid-template-columns: 140px 1fr; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.contact__row .l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--fg-muted); text-transform: uppercase; }
.contact__row .v { font-family: var(--display); font-style: italic; font-size: 24px; line-height: 1.2; overflow-wrap: break-word; word-break: break-word; min-width: 0; }
@media (max-width: 600px) { .contact__row .v { font-size: 18px; } }

.contact__social { display: flex; gap: 16px; margin-top: 8px; }
.contact__social a {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; transition: all 0.3s;
}
.contact__social a:hover { background: var(--accent-2); color: var(--bg); border-color: var(--accent-2); }

/* Map */
.contact__map {
  margin-top: 24px; aspect-ratio: 16/9;
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.contact__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.9) contrast(1.1); }
.contact__map-pin {
  position: absolute; top: 48%; left: 52%;
  width: 16px; height: 16px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 6px oklch(0.48 0.14 18 / 0.3), 0 0 0 12px oklch(0.48 0.14 18 / 0.15);
  animation: pulse 2.5s infinite;
}
.contact__map-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--fg-dim); text-transform: uppercase;
  background: rgba(10,9,8,0.7); padding: 8px 12px;
}

/* CF7 + native form shared styles */
.contact__form-wrap {
  background: var(--bg-3); border: 1px solid var(--line); padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact__form-wrap h4 { font-family: var(--display); font-size: 32px; font-weight: 400; line-height: 1.1; margin-bottom: 4px; }
.contact__form-wrap h4 em { font-style: italic; color: var(--accent-2); }
.contact__form-wrap .form-desc { color: var(--fg-dim); font-size: 14px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label,
.wpcf7-form .form-field span.wpcf7-form-control-wrap { display: flex; flex-direction: column; }
.form-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--fg-muted); text-transform: uppercase;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--line-strong);
  padding: 12px 0; color: var(--fg); font-family: var(--sans); font-size: 15px;
  font-weight: 300; outline: none; transition: border-color 0.3s; width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent-2); }
select   { appearance: none; cursor: pointer; }
textarea { resize: vertical; min-height: 80px; }

/* CF7 overrides */
.wpcf7-form p { margin: 0; }
.wpcf7-form br { display: none; }
.wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0; padding: 12px 16px;
  border: 1px solid var(--line-strong);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em;
  color: var(--fg-dim);
}
.wpcf7-form.sent .wpcf7-response-output { border-color: var(--accent-2); color: var(--accent-2); }
.wpcf7-not-valid-tip { font-family: var(--mono); font-size: 10px; color: oklch(0.7 0.2 30); margin-top: 4px; }
.wpcf7-spinner { display: none !important; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────────── */
.footer { background: var(--bg-2); padding: 80px 0 32px; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 64px; border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand { font-family: var(--display); font-style: italic; font-size: clamp(48px,6vw,88px); line-height: 0.9; letter-spacing: -0.01em; }
.footer__brand em { color: var(--accent-2); }
.footer__logo { display: block; width: 180px; height: auto; margin-top: 24px; opacity: 0.8; }

.footer__col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--fg-muted); text-transform: uppercase; margin-bottom: 20px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col li, .footer__col a { color: var(--fg-dim); font-size: 14px; }
.footer__col a { transition: color 0.3s; }
.footer__col a:hover { color: var(--fg); }

.footer__newsletter { display: flex; gap: 8px; margin-top: 8px; }
.footer__newsletter input {
  flex: 1; background: transparent; border: none; border-bottom: 1px solid var(--line-strong);
  padding: 8px 0; color: var(--fg); font: inherit; font-size: 13px; outline: none;
}
.footer__newsletter button {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--accent-2);
}

.footer__bot {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--fg-muted); text-transform: uppercase;
}
.footer__bot a { transition: color 0.3s; }
.footer__bot a:hover { color: var(--fg); }

/* ─── Fluent Forms (contact section) ─────────────────────────────────────────── */
.contact__form .fluentform p { margin: 0; }
.contact__form .ff-el-form-control {
  background: transparent; border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0; color: var(--fg); font: inherit; font-size: 15px;
  outline: none; width: 100%; transition: border-color 0.3s;
}
.contact__form .ff-el-form-control:focus { border-color: var(--accent-2); }
.contact__form .ff-el-input--label label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--fg-muted); text-transform: uppercase;
}
.contact__form .ff-btn-md {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; border-radius: 999px;
  background: var(--accent); border: 1px solid var(--accent);
  color: var(--fg); font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1); margin-top: 8px;
}
.contact__form .ff-btn-md:hover { background: var(--accent-glow); border-color: var(--accent-glow); }

/* ─── PAGE HEADER (sub-pages) ─────────────────────────────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.page-header__eyebrow { margin-bottom: 16px; }
.page-header__title { font-size: clamp(64px,9vw,140px); line-height: 0.9; }

/* ─── MAP (contactos) ─────────────────────────────────────────────────────────── */
.map {
  margin-top: 24px; aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, oklch(0.18 0.02 230 / 0.5), oklch(0.14 0.02 250 / 0.5)),
    repeating-linear-gradient(0deg, transparent 0, transparent 31px, oklch(0.25 0.03 250 / 0.4) 31px, oklch(0.25 0.03 250 / 0.4) 32px),
    repeating-linear-gradient(90deg, transparent 0, transparent 31px, oklch(0.25 0.03 250 / 0.4) 31px, oklch(0.25 0.03 250 / 0.4) 32px),
    var(--bg-3);
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.map__pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 6px oklch(0.48 0.14 18 / 0.3), 0 0 0 12px oklch(0.48 0.14 18 / 0.15);
  animation: pulse 2.5s infinite;
}
.map__label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--fg-dim); text-transform: uppercase;
  background: rgba(10,9,8,0.7); padding: 8px 12px;
}

/* Contact form fields */
.contact__field { display: flex; flex-direction: column; gap: 6px; }
.contact__field label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--fg-muted); text-transform: uppercase;
}
.contact__form { background: var(--bg-3); border: 1px solid var(--line); padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact__form h4 { font-family: var(--display); font-size: 32px; font-weight: 400; line-height: 1.1; margin-bottom: 4px; }
.contact__form h4 em { font-style: italic; color: var(--accent-2); }

/* Videos aliases (design names) */
.videos__player-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,9,8,0.85) 100%); pointer-events: none; }
.videos__featured-meta  { position: absolute; bottom: 28px; left: 28px; right: 28px; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.videos__featured-meta h4 { font-family: var(--display); font-size: clamp(28px,3.5vw,44px); font-weight: 400; line-height: 1.05; font-style: italic; letter-spacing: -0.01em; }
.videos__featured-meta p  { color: var(--fg-dim); font-size: 14px; max-width: 520px; line-height: 1.6; }
.videos__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 84px; height: 84px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: var(--fg); border: 1px solid oklch(0.85 0.08 75 / 0.4); transition: transform 0.3s, background 0.3s; box-shadow: 0 0 0 8px rgba(10,9,8,0.4), 0 20px 50px rgba(0,0,0,0.5); cursor: pointer; }
.videos__player:hover .videos__play { transform: translate(-50%,-50%) scale(1.08); background: var(--accent-glow); }

/* ─── 404 ─────────────────────────────────────────────────────────────────────── */
.error-404 { min-height: 100vh; display: grid; place-items: center; text-align: center; }

/* ─── Cookie bar ──────────────────────────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9500;
  background: var(--bg-3);
  border-top: 1px solid var(--line-strong);
  padding: 20px 0;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-bar__inner p {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: var(--fg-dim);
  margin: 0;
  line-height: 1.65;
}
.cookie-bar__inner a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.cookie-bar__btns { display: flex; gap: 12px; flex-shrink: 0; }
@media (max-width: 640px) {
  .cookie-bar__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-bar__btns { width: 100%; }
  .cookie-bar__btns .btn { flex: 1; justify-content: center; }
}
.error-404 h1 { font-family: var(--display); font-style: italic; font-size: clamp(80px,14vw,200px); color: var(--accent-2); line-height: 1; }
