/* Alma de Tango — salón nocturno: espresso, papel, oro antiguo */
:root {
  --void: #1f1612;
  --panel: #2a1e18;
  --card: #34261e;
  --espresso: #16100d;
  --surface: #f3ebe1;
  --surface-raised: #faf6f0;
  --latte: #c4a882;
  --cream: #ebe0d2;
  --red: #9e3d32;
  --red-hot: #b84a3d;
  --gold: #c9a227;
  --gold-bright: #e0bc4a;
  --yellow: #c9a227;
  --yellow-hot: #dbb43a;
  --ink: #1a120e;
  --ink-soft: #3d2e24;
  --text: #f7f1e8;
  --muted: #b9a795;
  --muted-soft: #8a7664;
  --line: rgba(201, 162, 39, 0.18);
  --line-strong: rgba(26, 18, 14, 0.1);
  --wa: #25d366;
  --wa-dark: #1ebe57;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 6px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.25rem;
  --space-6: 3.5rem;
  --space-7: 5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--void);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1080px, calc(100% - 2.75rem));
  margin-inline: auto;
}

/* ——— Logo ——— */
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.logo__script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(247, 241, 232, 0.88);
}

.logo__tango {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-top: -0.05rem;
}

.logo--footer {
  align-items: center;
  margin-bottom: var(--space-3);
}

/* ——— Header ——— */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-solid {
  background: rgba(22, 16, 13, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header__bar {
  height: var(--header-h);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-4);
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  color: rgba(247, 241, 232, 0.72);
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.menu-mobile {
  display: none;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header__social a:hover {
  color: var(--yellow);
}

.btn--header {
  padding: 0.7rem 1.2rem;
  font-size: 0.68rem;
  border-radius: var(--radius);
}

.burger {
  --burger-gap: 6px;
  display: none;
  position: relative;
  z-index: 60;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(247, 241, 232, 0.2);
  border-radius: var(--radius);
  background: rgba(22, 16, 13, 0.55);
  cursor: pointer;
  justify-self: end;
  place-items: center;
}

.burger span {
  display: block;
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s ease;
}

.burger span:nth-child(1) {
  transform: translateY(calc(var(--burger-gap) * -1));
}

.burger span:nth-child(3) {
  transform: translateY(var(--burger-gap));
}

.header.is-open .burger span:nth-child(1) {
  transform: rotate(45deg);
}

.header.is-open .burger span:nth-child(2) {
  opacity: 0;
}

.header.is-open .burger span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 4rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: var(--void);
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.68) contrast(1.08) saturate(0.92);
  transform: scale(1.04);
  animation: hero-drift 22s var(--ease) infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 50% 45%, rgba(15, 10, 8, 0.35), transparent 72%),
    linear-gradient(
      180deg,
      rgba(22, 16, 13, 0.72) 0%,
      rgba(22, 16, 13, 0.28) 42%,
      rgba(22, 16, 13, 0.78) 100%
    );
}

.hero__ornament {
  position: absolute;
  width: 96px;
  height: 96px;
  opacity: 0.35;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, var(--gold) 0 1.5px, transparent 2.5px) 0 0 / 16px 16px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
}

.hero__ornament--tl {
  top: 14%;
  left: 5%;
}

.hero__ornament--br {
  bottom: 12%;
  right: 5%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  animation: fade-up 1s var(--ease) both;
}

.hero__brand {
  margin: 0 0 var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.hero__brand-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 500;
  color: rgba(247, 241, 232, 0.92);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero__brand-tango {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.2rem, 9.5vw, 5.6rem);
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.hero h1:not(.hero__brand) {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 3.8rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

.hero__cycle {
  margin: 0 0 var(--space-3);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--latte);
}

.hero__sub {
  margin: 0 auto var(--space-5);
  max-width: 28rem;
  color: rgba(247, 241, 232, 0.82);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero__pillars {
  list-style: none;
  margin: 0 auto 1.6rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  max-width: 36rem;
  text-align: left;
}

.hero__pillars li {
  margin: 0;
}

.hero-pillar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  background: rgba(74, 50, 38, 0.55);
  border: 1px solid rgba(255, 210, 74, 0.4);
  border-radius: 14px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}

.hero-pillar:hover,
.hero-pillar:focus-visible {
  border-color: var(--yellow);
  background: rgba(74, 50, 38, 0.78);
  transform: translateY(-1px);
  outline: none;
}

.hero-pillar span {
  font-size: 1.05rem;
}

.hero-pillar small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero__contact {
  margin: 0 auto 1.1rem;
  max-width: 28rem;
}

.hero__contact-label,
.hero__social-label {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.hero__social-label {
  margin: 1.15rem 0 0.7rem;
  color: var(--cream);
}

.hero__contact .btn--wa {
  width: min(100%, 16rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 0;
}

.hero__meta {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}

.hero__offer {
  margin: 0.95rem 0 1.15rem;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.95rem;
}

.trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  color: var(--cream);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.register-form {
  display: grid;
  gap: 0.55rem;
}

.register-form--bar {
  width: min(720px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 0.85rem 1rem;
  padding: 1.2rem 1.25rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.register-form label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}

.register-form input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.register-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.register-form .btn {
  margin-top: 0.2rem;
  width: 100%;
}

.register-form--bar .btn {
  margin-top: 0;
  min-width: 8.5rem;
  height: 2.7rem;
}

.register-form__ok {
  margin: 0;
  font-size: 0.75rem;
  color: var(--yellow);
}

.register-form--bar .register-form__ok {
  grid-column: 1 / -1;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.social {
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: rgba(247, 241, 232, 0.06);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
}

.social:hover,
.social:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
  outline: none;
}

.social svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  fill: currentColor;
}

.header__social .socials {
  justify-content: flex-end;
}

.header__social .social {
  width: 36px;
  height: 36px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--gold);
  color: var(--ink);
}

.btn--accent:hover {
  background: var(--gold-bright);
}

.btn--outline {
  border: 1px solid rgba(247, 241, 232, 0.55);
  color: var(--text);
  background: rgba(22, 16, 13, 0.28);
}

.btn--outline:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(22, 16, 13, 0.45);
}

.btn--wa {
  background: var(--wa);
  color: #fff;
}

.btn--wa:hover {
  background: var(--wa-dark);
}

/* ——— Sections ——— */
.section {
  padding: clamp(4rem, 9vh, 6rem) 0;
}

.section--panel {
  background: var(--surface);
  color: var(--ink);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.section--void {
  background: var(--void);
}

.h2 {
  margin: 0 0 var(--space-4);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.01em;
}

.section--panel .h2 {
  color: var(--ink);
}

.h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 0.85rem auto 0;
  background: var(--gold);
  border-radius: 1px;
}

.section--panel .h2::after {
  background: var(--ink-soft);
  opacity: 0.35;
}

.h2--xl {
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
}

.testimonials .h2,
.testimonials .section-cta {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.testimonials .section-cta {
  margin-bottom: 0;
}

.h2--left::after {
  margin-left: 0;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.home-peek {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.home-peek img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--espresso);
}

.home-maestros-copy {
  max-width: 42rem;
  margin: 0 auto 0.4rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ——— Pillars ——— */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pillar {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.pillar:hover,
.pillar:focus-visible {
  border-color: rgba(201, 162, 39, 0.55);
  transform: translateY(-2px);
  outline: none;
}

.pillar__hint {
  display: block;
  margin: 0.85rem 0 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.pillar__icon {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
}

.pillar__title {
  display: block;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #fff;
}

.pillar__text {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ——— Services ——— */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.svc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.svc:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-2px);
}

.svc img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.svc__body {
  padding: 1.25rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.svc h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
}

.svc h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 0.45rem;
  background: var(--yellow);
}

.svc p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.svc__meta {
  margin: 0;
  color: var(--cream) !important;
  font-weight: 600;
  font-size: 0.92rem !important;
  flex: 0 !important;
  line-height: 1.55;
}

.svc__note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  flex: 0 !important;
}

.svc__price {
  color: var(--gold-bright) !important;
  font-weight: 700;
  font-size: 0.85rem !important;
  flex: 0 !important;
}

.svc .btn {
  align-self: flex-start;
}

/* ——— Historia ——— */
.historia-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.historia-cols h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--yellow);
}

.historia-cols p {
  margin: 0 0 0.85rem;
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.historia-banner {
  margin: 2.2rem 0 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.historia-banner img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
}

.prose {
  max-width: 46rem;
  margin: 0 auto 2.4rem;
}

.prose p {
  margin: 0 0 1.05rem;
  color: var(--cream);
  font-size: 1.02rem;
  line-height: 1.72;
}

.prose__close {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem !important;
  color: var(--yellow) !important;
  text-align: center;
  margin: 1.6rem 0 0 !important;
}

.places {
  display: grid;
  gap: 0.7rem;
  max-width: 46rem;
  margin: 0 auto 2.4rem;
}

.place {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
}

.place strong {
  display: block;
  color: var(--yellow);
  font-size: 0.95rem;
}

.place span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

#maestros {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.maestros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 0 0 2rem;
}

.maestro {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.45rem 1.3rem 1.35rem;
  text-align: center;
}

.maestro--btn {
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s var(--ease), background 0.2s;
}

.maestro--btn:hover,
.maestro--btn:focus-visible {
  border-color: var(--yellow);
  transform: translateY(-2px);
  outline: none;
}

.maestros--names {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.maestros--names .maestro {
  padding: 1.2rem 1.1rem 1.15rem;
}

.maestro__hint {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.maestro img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  margin-bottom: 0.9rem;
}

.maestros-banner {
  margin: 0 auto 1.6rem;
  max-width: 28rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.maestros-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.maestro__role {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}

.maestro h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
}

.maestro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ——— Testimonials ——— */
.testimonials {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(74, 50, 38, 0.72), rgba(74, 50, 38, 0.82)),
    url("assets/compania.jpg") center/cover;
}

.testimonials__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.t-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem;
}

.t-track::-webkit-scrollbar {
  display: none;
}

.t-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.25rem 1.2rem 1.1rem;
}

.t-card--long {
  flex-basis: min(400px, 86vw);
}

.t-initials {
  width: 48px;
  height: 48px;
  margin: 0 0 0.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 210, 74, 0.18);
  border: 2px solid rgba(255, 210, 74, 0.55);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.t-card h4 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.t-card p {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: inherit;
  font-style: normal;
}

.t-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.t-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(74, 50, 38, 0.45);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ——— Momentos / Galería ——— */
.momentos__head {
  text-align: center;
  margin-bottom: 2.4rem;
}

.momentos__lead {
  margin: -1.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--yellow);
}

.moment {
  margin-bottom: 2.75rem;
}

.moment__feature {
  display: block;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--espresso);
}

.moment h3 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
}

.moment h4 {
  margin: 1.1rem 0 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.moment__media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.moment__media img,
.moment__video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--espresso);
}

.moment__video {
  display: block;
}

/* ——— Contacto ——— */
.contacto {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.contacto__copy p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.contacto__cycle {
  margin: 0 0 1.25rem !important;
  color: var(--gold-bright) !important;
  font-weight: 600;
  font-size: 0.92rem !important;
}

.contacto--big {
  align-items: start;
  gap: 3rem;
}

.contacto__intro {
  font-size: 1.15rem !important;
  color: var(--cream) !important;
}

.contacto__phone {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-weight: 600;
}

.contacto__phone--xl {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1.1;
}

.contacto__address {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  color: #fff;
  font-weight: 600;
}

.contacto__address-sub {
  margin: 0 0 0.35rem !important;
  font-size: 1.12rem !important;
  color: var(--cream) !important;
}

.contacto__map {
  margin-top: 1.15rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 74, 0.4);
  min-height: 280px;
}

.contacto__map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.contacto__visual {
  position: relative;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 74, 0.4);
  box-shadow: 0 24px 60px rgba(61, 42, 31, 0.35);
}

.contacto__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(74, 50, 38, 0.5) 0%, rgba(74, 50, 38, 0.12) 45%, rgba(255, 210, 74, 0.18) 100%),
    radial-gradient(ellipse at 70% 30%, transparent 20%, rgba(74, 50, 38, 0.5) 100%);
  pointer-events: none;
}

.contacto__visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.03);
}

.contacto__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  min-width: min(100% - 2.5rem, 16rem);
  background: rgba(74, 50, 38, 0.82);
  border: 1px solid rgba(255, 210, 74, 0.5);
  backdrop-filter: blur(8px);
  color: #fff;
}

.contacto__badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.contacto__badge strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}

.contacto__badge-hint {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ——— Footer ——— */
.footer {
  background: var(--espresso);
  color: var(--muted);
  padding: var(--space-6) 0 calc(var(--space-6) + 1.5rem);
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

.footer h4 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
  color: rgba(247, 241, 232, 0.78);
  line-height: 1.5;
}

.footer__place p {
  font-size: 0.98rem;
}

.footer__phone {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text);
  font-weight: 600;
}

.footer__brand {
  text-align: center;
}

.footer__brand p:not(.logo) {
  font-size: 0.85rem;
  color: var(--muted-soft);
}

.footer__contact {
  text-align: right;
  display: grid;
  gap: 0.45rem;
  justify-items: end;
}

.footer__contact a:hover:not(.social) {
  color: var(--gold-bright);
}

.footer .socials {
  justify-content: end;
  margin-top: 0.75rem;
}

body.is-page .header {
  background: rgba(22, 16, 13, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.page-main {
  padding: calc(var(--header-h) + 2.75rem) 0 0;
  min-height: 70vh;
}

.discounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.discount {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.3rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.discount__level {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}

.discount h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
}

.discount p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.discount__price {
  color: var(--yellow) !important;
  font-weight: 700;
}

.discount .btn {
  align-self: flex-start;
  margin-top: auto;
}

.page-lead {
  max-width: 36rem;
  margin: -0.35rem auto var(--space-5);
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.section--panel .page-lead {
  color: var(--ink-soft);
}

.page-lead--left {
  margin-left: 0;
  text-align: left;
}

.float-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.float-wa:hover {
  background: var(--wa-dark);
  transform: scale(1.05);
}

/* ——— Story dialog ——— */
.story-dialog {
  width: min(680px, calc(100% - 1.5rem));
  max-height: min(86vh, 720px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(255, 210, 74, 0.45);
  border-radius: 14px;
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(61, 42, 31, 0.45);
}

.story-dialog__inner {
  position: relative;
  padding: 1.6rem 1.5rem 1.7rem;
}

.story-dialog::backdrop {
  background: rgba(61, 42, 31, 0.72);
}

.story-dialog h3 {
  margin: 0 1.75rem 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--yellow);
}

.story-dialog p {
  margin: 0 0 0.85rem;
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.story-dialog__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 1rem;
}

.story-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.story-dialog [hidden] {
  display: none;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1) translate3d(-1%, -0.5%, 0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__photo,
  .hero__content {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .register-form--bar {
    grid-template-columns: 1fr;
  }

  .register-form--bar .btn {
    width: 100%;
  }

  .register-form--bar .register-form__ok {
    text-align: center;
  }
}

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

@media (max-width: 920px) {
  .pillars,
  .services,
  .discounts,
  .historia-cols,
  .maestros,
  .contacto,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .moment__media,
  .home-peek {
    grid-template-columns: 1fr 1fr;
  }

  .footer__contact {
    text-align: left;
    justify-items: start;
  }

  .footer .socials {
    justify-content: center;
  }

  .historia-banner img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 780px) {
  .header {
    z-index: 70;
  }

  .header.is-open,
  .header.is-solid {
    background: var(--espresso);
    border-bottom: 1px solid var(--line);
  }

  .header.is-open {
    backdrop-filter: none;
  }

  .header__bar {
    grid-template-columns: 1fr auto;
    width: min(1180px, calc(100% - 1.25rem));
  }

  .nav--desktop,
  .header__social,
  .btn--header {
    display: none;
  }

  .burger {
    display: grid;
  }

  .menu-mobile {
    position: fixed;
    inset: 0;
    z-index: 65;
    display: block;
    padding: calc(var(--header-h) + 0.5rem) 1.5rem 2rem;
    background: var(--espresso);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
      visibility 0.25s;
  }

  .menu-mobile.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-mobile[hidden] {
    display: none;
  }

  .menu-mobile.is-open[hidden] {
    display: block;
  }

  .menu-mobile__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
  }

  .menu-mobile__nav > a {
    display: block;
    padding: 1.05rem 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-mobile__nav > a:active {
    color: var(--gold-bright);
  }

  .menu-mobile__wa {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 1.75rem;
    padding: 1rem 1.25rem !important;
    border: 0 !important;
    border-radius: 4px;
    background: var(--wa);
    color: #04160a !important;
    font-size: 0.92rem !important;
    letter-spacing: 0.04em;
    text-transform: none !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .float-wa {
    opacity: 0;
    pointer-events: none;
  }

  .t-nav {
    display: none;
  }

  .hero__pillars {
    grid-template-columns: 1fr;
  }

  .hero-pillar {
    font-size: 0.8rem;
  }

  .trust {
    gap: 0.45rem 0.85rem;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
  }

  .moment__media {
    grid-template-columns: 1fr;
  }

  .menu-mobile .socials {
    max-width: 420px;
    margin: 1.5rem auto 0;
    justify-content: center;
  }

  .social {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .social svg {
    width: 20px;
    height: 20px;
  }

  .wrap {
    width: min(1100px, calc(100% - 1.5rem));
  }

  .float-wa {
    width: 52px;
    height: 52px;
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .float-wa svg {
    display: block;
    width: 26px;
    height: 26px;
  }
}

/* Próximo curso */
.course {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.course__eyebrow {
  margin: 0 0 var(--space-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.course__title {
  margin: 0 0 var(--space-2);
  color: var(--ink);
}

.course__title::after {
  background: var(--ink-soft);
  opacity: 0.35;
}

.course__lead {
  margin: 0 auto var(--space-5);
  color: var(--ink-soft);
}

.course__card {
  padding: clamp(1.75rem, 4vw, 2.35rem);
  background: var(--surface-raised);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(26, 18, 14, 0.06);
}

.course__facts {
  margin: 0 0 var(--space-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-5);
  text-align: left;
}

.course__facts dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.course__facts dd {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.course__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--line-strong);
}

.course__hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted-soft);
  max-width: 22rem;
  line-height: 1.45;
}

@media (max-width: 560px) {
  .course__facts {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}
