/*
Theme Name: VK Studio
Theme URI: https://vkstudio.com
Author: Franco Alarcón
Description: Tema personalizado para VK Studio — Nail Art Academy. WooCommerce + LearnDash.
Version: 1.2.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
WC requires at least: 8.0
WC tested up to: 9.0
License: Privado
Text Domain: vk-studio
*/

/* ─────────────────────────────────────────────
   VARIABLES & RESET
───────────────────────────────────────────── */
:root {
  --black:        #000000;
  --black-soft:   #0d0d0d;
  --black-card:   #111111;
  --white:        #ffffff;
  --off-white:    #f5f5f5;
  --gray-light:   #EDEDED;
  --gray-mid:     #6a6a6a;
  --gray-light-text: #999;
  --pastel-pink:  #FFACD6;
  --blush-pink:   #FF7FB5;
  --vivid-pink:   #F33283;

  --font-display: neue-haas-grotesk-display, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    satoshi, neue-haas-grotesk-text, 'Helvetica Neue', system-ui, sans-serif;

  --nav-h: 68px;
  --radius: 8px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ─────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 26px; width: auto; }

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--vivid-pink);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.nav-action-btn {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: none;
  transition: color var(--transition);
}

.nav-action-btn:hover { color: var(--white); }

.cart-btn { position: relative; }

.cart-count {
  position: absolute;
  top: -8px; right: -10px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--vivid-pink);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity var(--transition), transform var(--transition);
}

.cart-count.visible { opacity: 1; transform: scale(1); }

.nav-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.18);
}

.nav-social a {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: color var(--transition);
}
.nav-social a:hover { color: var(--vivid-pink); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  justify-self: end;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--vivid-pink); }
.mobile-nav .mobile-actions {
  display: flex;
  gap: 28px;
  margin-top: 16px;
  align-items: center;
}
.mobile-nav .mobile-actions button,
.mobile-nav .mobile-actions a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  transition: color var(--transition);
}
.mobile-nav .mobile-actions button:hover,
.mobile-nav .mobile-actions a:hover { color: var(--white); }
.mobile-nav .mobile-sep { color: rgba(255,255,255,0.15); font-size: 0.8rem; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-rose {
  background: var(--vivid-pink);
  color: var(--white);
}
.btn-rose:hover {
  background: #d92070;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(243,50,131,0.4);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.3);
}
.btn-outline-dark:hover {
  background: var(--vivid-pink);
  border-color: var(--vivid-pink);
  color: var(--white);
}

/* ─────────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────────── */
.section-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--vivid-pink);
  flex-shrink: 0;
}
.section-label.on-dark { color: rgba(255,255,255,0.45); }
.section-label.on-light { color: rgba(0,0,0,0.45); }
.section-label.on-dark::before { background: var(--vivid-pink); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title.on-dark { color: var(--white); }
.section-title.on-light { color: var(--black); }
.section-title em { font-style: italic; color: var(--vivid-pink); }

.section-body {
  font-size: 0.92rem;
  line-height: 1.85;
}
.section-body.on-dark { color: rgba(255,255,255,0.55); }
.section-body.on-light { color: rgba(0,0,0,0.55); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Multi-layered overlay: bottom-up dark fade + overall dim */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.30) 100%),
    linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--nav-h) 24px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--vivid-pink);
  margin-bottom: 40px;
}

.hero-art-logo {
  width: clamp(280px, 55vw, 760px);
  height: auto;
  margin-bottom: 36px;
  filter: drop-shadow(0 24px 80px rgba(243,50,131,0.35));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-tagline strong {
  color: var(--white);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity var(--transition);
}
.scroll-indicator:hover { opacity: 0.7; }
.scroll-indicator span {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─────────────────────────────────────────────
   MARQUEE STRIP
───────────────────────────────────────────── */
.marquee-strip {
  background: var(--vivid-pink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 40px;
}
.marquee-track span.dot { color: rgba(255,255,255,0.5); padding: 0 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   ABOUT / FOUNDER (LIGHT SECTION)
───────────────────────────────────────────── */
.about {
  padding: 112px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-photo-wrap { position: relative; }

.about-photo-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-light);
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--black);
  color: var(--white);
  padding: 28px 24px;
  text-align: center;
  min-width: 120px;
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--vivid-pink);
}
.about-badge .lbl {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.about-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 32px 0;
}

.stat {
  flex: 1;
  padding: 0 28px;
  border-right: 1px solid var(--gray-light);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }

.stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.stat .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ─────────────────────────────────────────────
   QUOTE BANNER
───────────────────────────────────────────── */
.quote-banner {
  background: var(--black-soft);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.quote-inner {
  max-width: 900px;
  margin: 0 auto;
}

.quote-banner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
}

.quote-banner blockquote em {
  color: var(--vivid-pink);
  font-style: normal;
}

.quote-banner cite {
  display: block;
  margin-top: 32px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-style: normal;
}

/* ─────────────────────────────────────────────
   ONLINE ACADEMY (DARK)
───────────────────────────────────────────── */
.academy {
  padding: 80px 0;
  background: var(--black);
}

.academy-header {
  max-width: 680px;
  margin-bottom: 72px;
}
.academy-header .section-label { margin-bottom: 20px; }
.academy-header .section-title { margin-bottom: 16px; }

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 860px;
  margin-bottom: 96px;
  border: 1px solid rgba(255,255,255,0.08);
}

.pricing-card {
  background: var(--black-card);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.pricing-card:hover { background: #161616; }

.pricing-card.featured {
  background: var(--vivid-pink);
}
.pricing-card.featured:hover { background: #e02878; }

.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--black);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.pricing-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.pricing-card.featured .pricing-label { color: rgba(255,255,255,0.7); }

.pricing-price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.pricing-price sup {
  font-size: 1.6rem;
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}

.pricing-period {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.65); }

.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 28px 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}
.pricing-features li i {
  color: var(--white);
  font-size: 0.65rem;
  margin-top: 5px;
  flex-shrink: 0;
}
.pricing-card:not(.featured) .pricing-features li i { color: var(--vivid-pink); }

/* Course cards */
.courses-section-title {
  margin-bottom: 48px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.course-card {
  background: var(--black-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.course-card:hover { background: #161616; }

.course-thumb {
  aspect-ratio: 4/3;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.course-card:hover .course-thumb img { transform: scale(1.05); }

.course-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.course-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--vivid-pink);
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.course-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.course-meta {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}
.course-meta span { display: flex; align-items: center; gap: 6px; }

.course-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  flex: 1;
}

.course-footer {
  padding: 20px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.course-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.course-price small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  display: block;
  line-height: 1;
}

/* ─────────────────────────────────────────────
   GROUP EVENTS (DARK PHOTO OVERLAY)
───────────────────────────────────────────── */
.events {
  padding: 80px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.events-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/stock/pexels-delbeautybox-211032-853427.jpg');
  background-size: cover;
  background-position: center 30%;
}
.events-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}

.events .container { position: relative; z-index: 1; }

.events-header {
  max-width: 680px;
  margin-bottom: 64px;
}
.events-header .section-label { margin-bottom: 20px; }
.events-header .section-title { margin-bottom: 16px; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}

.event-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 44px 40px;
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.event-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vivid-pink);
}

.event-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.event-info { display: flex; flex-direction: column; gap: 8px; }
.event-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.event-info i { width: 14px; color: rgba(255,255,255,0.25); }

.event-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: auto;
}

.events-cta { text-align: center; }

/* ─────────────────────────────────────────────
   PRIVATE CLASS (LIGHT SECTION)
───────────────────────────────────────────── */
.private {
  padding: 80px 0;
  background: var(--off-white);
}

.private-inner {
  max-width: 680px;
}

.private-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.private-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.private-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.private-list .icon {
  width: 40px;
  height: 40px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vivid-pink);
  font-size: 0.9rem;
}

.private-list .text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}

.private-list .text span {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

/* Booking widget */
.private-booking {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 0;
  overflow: hidden;
}

.private-booking-photo {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
}
.private-booking-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.private-booking-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.private-booking-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
}

.booking-class {
  background: var(--off-white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}
.booking-class:hover { border-color: var(--vivid-pink); }

.booking-class-info .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}
.booking-class-info .details {
  font-size: 0.7rem;
  color: var(--gray-mid);
  margin-top: 3px;
}
.booking-class-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────
   DIGITAL / CONTENT CREATOR (DARK)
───────────────────────────────────────────── */
.digital {
  padding: 112px 0;
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.digital-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.digital-content { display: flex; flex-direction: column; gap: 28px; }

.digital-steps { display: flex; flex-direction: column; gap: 0; }

.digital-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.digital-step:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--vivid-pink);
  letter-spacing: 0.1em;
  width: 24px;
  flex-shrink: 0;
  padding-top: 2px;
}

.step-content strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.step-content span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.digital-visual { position: relative; }

.digital-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #1a1a1a;
}
.digital-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.digital-float-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--vivid-pink);
  color: var(--white);
  padding: 22px 28px;
  max-width: 210px;
}
.digital-float-card .card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.digital-float-card .card-sub {
  font-size: 0.66rem;
  opacity: 0.8;
  margin-top: 5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS (DARK)
───────────────────────────────────────────── */
.testimonials {
  padding: 112px 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonials-header {
  max-width: 580px;
  margin-bottom: 64px;
}
.testimonials-header .section-label { margin-bottom: 20px; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonial-card {
  background: var(--black-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(243,50,131,0.3); }

.testimonial-stars {
  color: var(--vivid-pink);
  font-size: 0.8rem;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--vivid-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.author-role { font-size: 0.7rem; color: rgba(255,255,255,0.35); }

/* ─────────────────────────────────────────────
   CTA BAND (VIVID PINK + PATTERN)
───────────────────────────────────────────── */
.cta-band {
  padding: 112px 0;
  background-color: var(--vivid-pink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* VK pattern overlay using the logo */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/logo/Recurso 3.png');
  background-size: 110px auto;
  background-repeat: repeat;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.cta-band .container { position: relative; z-index: 1; }

.cta-brand-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 40px;
  filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0,0,0,0.2));
}

.cta-band .section-label {
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  justify-content: center;
}
.cta-band .section-label::before { background: rgba(255,255,255,0.5); }

.cta-band .section-title {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
}
.cta-band .section-title em { color: var(--black); }

.cta-band .section-body {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 48px;
}

.cta-band-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .brand-logo {
  height: 24px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.9;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--vivid-pink);
  color: var(--vivid-pink);
}

.footer-col h4 {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 24px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.footer-contact .contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 6px;
  margin-top: 20px;
}
.footer-contact .contact-label:first-child { margin-top: 0; }

.footer-bottom {
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
}

.footer-bottom a {
  color: rgba(255,255,255,0.2);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────────
   MODALS
───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  width: min(480px, 100%);
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-header {
  background: var(--black);
  padding: 36px 40px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.modal-header .modal-logo {
  display: block;
  height: 20px;
  width: auto;
  margin-bottom: 14px;
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.14); color: var(--white); }

.modal-body { padding: 36px 40px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus { border-color: var(--vivid-pink); }

.form-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 16px;
}
.form-link a { color: var(--vivid-pink); }

/* Cart Modal */
.cart-modal .modal { width: min(560px, 100%); }

.cart-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.cart-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.cart-item-thumb {
  width: 52px;
  height: 52px;
  background: var(--vivid-pink);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 3px; color: var(--white); }
.cart-item-detail { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.cart-item-price { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); }

.cart-remove { color: rgba(255,255,255,0.25); font-size: 0.78rem; transition: color var(--transition); margin-top: 4px; }
.cart-remove:hover { color: #e05555; }

.cart-empty { text-align: center; padding: 48px 0; color: rgba(255,255,255,0.2); }
.cart-empty i { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.cart-empty p { font-size: 0.85rem; }

.cart-summary {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-total span { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); }
.cart-total strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 3000;
  background: var(--black-card);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 22px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--vivid-pink); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid   { gap: 60px; }
  .private-inner { gap: 60px; }
  .digital-inner { gap: 60px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links, .nav-divider, .nav-social { display: none; }
  .nav-inner { grid-template-columns: 1fr auto auto; }
  .nav-actions { gap: 12px; }
  .nav-actions .nav-action-btn:not(.cart-btn) { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero-art-logo { width: clamp(240px, 80vw, 480px); }

  .about-grid     { grid-template-columns: 1fr; gap: 56px; }
  .about-badge    { right: 0; bottom: -16px; }
  .about-photo-frame { aspect-ratio: 4/3; }

  .pricing-grid   { grid-template-columns: 1fr; }
  .courses-grid   { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .events-grid    { grid-template-columns: 1fr; }
  .private-inner  { grid-template-columns: 1fr; }
  .digital-inner  { grid-template-columns: 1fr; }
  .digital-float-card { display: none; }
  .testimonials-track { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .hero-ctas      { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .about-stats    { flex-direction: column; gap: 0; }
  .stat           { border-right: none; border-bottom: 1px solid var(--gray-light); padding: 20px 0; }
  .stat:last-child { border-bottom: none; }
  .cta-band-btns  { flex-direction: column; align-items: center; }
  .toast          { left: 20px; right: 20px; bottom: 16px; }
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
