/* ==========================================
   StreamStudio.cl — Paleta Pastel Profesional
   Fondo gris claro · Texto negro · Acentos suaves
   ========================================== */

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

:root {
  --bg:        #F0EFEC;
  --bg-2:      #E8E7E3;
  --bg-3:      #FFFFFF;
  --bg-dark:   #1C1C1E;
  --bg-dark-2: #242426;

  --text:      #111111;
  --text-2:    #3A3A3C;
  --text-3:    #8A8A8E;
  --text-inv:  #F0EFEC;

  --sage:           #7BA99A;
  --sage-light:     #D6EAE5;
  --sage-dark:      #5C8A7C;
  --lavender:       #9B8EC4;
  --lavender-light: #E8E4F5;
  --peach:          #D4927A;
  --peach-light:    #F5E0D8;
  --sky:            #7AABCC;
  --sky-light:      #D8EDF8;
  --sand:           #C4A882;

  --accent:       var(--sage);
  --accent-light: var(--sage-light);

  --border:    #DCDCD8;
  --border-2:  #C4C4BE;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono:    'Space Mono', monospace;
  --font-body:    'DM Sans', sans-serif;

  --nav-h:  72px;
  --radius: 16px;
  --trans:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
}

.btn--primary {
  background: var(--text);
  color: var(--bg-3);
}
.btn--primary:hover {
  background: var(--text-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--text-inv);
  border: 1.5px solid rgba(240,239,236,0.25);
}
.btn--ghost:hover {
  border-color: rgba(240,239,236,0.6);
  background: rgba(240,239,236,0.08);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn--outline:hover {
  border-color: var(--text);
  background: rgba(17,17,17,0.03);
}

.btn--nav {
  background: var(--text);
  color: var(--bg-3);
  padding: 9px 22px;
  font-size: 13px;
}
.btn--nav:hover { background: var(--text-2); }

.btn--sage     { background: var(--sage);     color: white; }
.btn--sage:hover { background: var(--sage-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123,169,154,0.3); }
.btn--lavender { background: var(--lavender); color: white; }
.btn--lavender:hover { background: #8a7db3; transform: translateY(-1px); }
.btn--peach    { background: var(--peach);    color: white; }
.btn--peach:hover { background: #c07f67; transform: translateY(-1px); }

.btn--sm   { padding: 8px 18px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }
.btn--lg   { padding: 15px 32px; font-size: 15px; }

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(240, 239, 236, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo { text-decoration: none; flex-shrink: 0; }
.logo-svg     { height: 42px; width: auto; }
.logo-svg--sm { height: 34px; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-inv);
  border-radius: 2px;
  transition: var(--trans);
}

@media (max-width: 768px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
}

/* ==========================================
   HERO  (fondo oscuro para contraste máximo)
   ========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: rgba(123,169,154,0.13);
  top: -150px; left: -100px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: rgba(155,142,196,0.10);
  bottom: -80px; right: 80px;
}
.hero__glow--3 {
  width: 250px; height: 250px;
  background: rgba(212,146,122,0.09);
  top: 35%; right: 22%;
}

.scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,0.06) 3px, rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(123,169,154,0.35);
  border-radius: 50px;
  background: rgba(123,169,154,0.10);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeSlideDown 0.8s ease both;
}

.dot-live {
  width: 7px; height: 7px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(123,169,154,0.5);
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  0%   { box-shadow: 0 0 0 0 rgba(123,169,154,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(123,169,154,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,169,154,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(50px, 5.5vw, 82px);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.hero__title .line-1 { color: var(--text-inv);               animation: fadeSlideUp 0.8s 0.1s ease both; }
.hero__title .line-2 { color: var(--sage); font-style:italic; animation: fadeSlideUp 0.8s 0.2s ease both; }
.hero__title .line-3 { color: rgba(240,239,236,0.28);         animation: fadeSlideUp 0.8s 0.3s ease both; }

.hero__sub {
  font-size: 17px;
  color: rgba(240,239,236,0.55);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeSlideUp 0.8s 0.5s ease both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeSlideUp 0.8s 0.6s ease both;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.5px;
  color: var(--text-inv);
  line-height: 1;
}
.stat span {
  font-size: 10px;
  color: rgba(240,239,236,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-mono);
  display: block;
  margin-top: 4px;
}
.stat__sep { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

/* Hero right — preview cards */
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeIn 1s 0.8s ease both;
}

.hero__preview-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: var(--trans);
}
.hero__preview-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(123,169,154,0.3);
  transform: translateX(5px);
}

.hero__preview-thumb {
  width: 72px; height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-a { background: linear-gradient(135deg, #3d6057, #244840); }
.thumb-b { background: linear-gradient(135deg, #453e64, #2c2744); }
.thumb-c { background: linear-gradient(135deg, #614438, #3d2620); }

.thumb-play {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.thumb-play svg { color: var(--bg-dark); margin-left: 2px; }

.hero__preview-info { flex: 1; min-width: 0; }
.hero__preview-info strong { display: block; font-size: 13px; font-weight: 600; color: var(--text-inv); margin-bottom: 2px; }
.hero__preview-info span   { font-size: 12px; color: rgba(240,239,236,0.4); }

.hero__preview-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sage);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(240,239,236,0.25);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  z-index: 2;
  animation: fadeIn 1s 1.5s ease both;
}
.hero__scroll:hover { color: rgba(240,239,236,0.6); }
.hero__scroll svg { animation: bounce 2s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ==========================================
   SHARED SECTION STYLES
   ========================================== */

section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
  background: var(--sage-light);
  padding: 5px 14px;
  border-radius: 50px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-3);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header--inv .section-title { color: var(--text-inv); }
.section-header--inv .section-sub   { color: rgba(240,239,236,0.5); }
.section-header--inv .section-tag   { background: rgba(123,169,154,0.15); color: var(--sage); }

/* ==========================================
   STUDIOS — CON VIDEO
   ========================================== */

.estudios { background: var(--bg); }

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

.studio-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.studio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-2);
}
.studio-card--featured {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-light), var(--shadow-md);
}

/* ---- VIDEO AREA ---- */
.studio-card__video {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-dark);
  overflow: hidden;
  flex-shrink: 0;
}

.studio-card__video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.studio-card:hover .studio-card__video video {
  transform: scale(1.03);
}

/* Placeholder shown when video absent or loading */
.studio-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
}
.placeholder-a { background: linear-gradient(160deg, #2e4d46 0%, #1a2f2a 100%); }
.placeholder-b { background: linear-gradient(160deg, #38334f 0%, #221f36 100%); }
.placeholder-c { background: linear-gradient(160deg, #4a3530 0%, #2d1f1b 100%); }

.placeholder-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.placeholder-a .placeholder-icon { background: rgba(123,169,154,0.25); color: var(--sage); }
.placeholder-b .placeholder-icon { background: rgba(155,142,196,0.25); color: var(--lavender); }
.placeholder-c .placeholder-icon { background: rgba(212,146,122,0.25); color: var(--peach); }

.placeholder-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.placeholder-a .placeholder-label { color: rgba(123,169,154,0.7); }
.placeholder-b .placeholder-label { color: rgba(155,142,196,0.7); }
.placeholder-c .placeholder-label { color: rgba(212,146,122,0.7); }

/* Play/pause overlay */
.studio-card__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.30);
  opacity: 0;
  transition: opacity 0.3s;
}
.studio-card:hover .studio-card__video-overlay { opacity: 1; }

.video-play-btn {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.93);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
  color: var(--text);
}
.video-play-btn:hover { transform: scale(1.1); background: white; }
.video-play-btn svg   { margin-left: 3px; }

/* Mute button */
.video-mute-btn {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 30px; height: 30px;
  background: rgba(0,0,0,0.55);
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.studio-card:hover .video-mute-btn { opacity: 1; }

/* Badges */
.studio-card__video-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.badge-a { background: rgba(123,169,154,0.85); color: white; }
.badge-b { background: rgba(155,142,196,0.85); color: white; }
.badge-c { background: rgba(212,146,122,0.85); color: white; }

.studio-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(28,28,30,0.80);
  color: white;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* ---- CARD BODY ---- */
.studio-card__content {
  padding: 26px 26px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.studio-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.studio-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.studio-icon-a { background: var(--sage-light);      color: var(--sage); }
.studio-icon-b { background: var(--lavender-light);  color: var(--lavender); }
.studio-icon-c { background: var(--peach-light);     color: var(--peach); }

.studio-card__header h3 {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.studio-size { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: 1px; }

.studio-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; }

.studio-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}
.studio-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text-2);
}
.studio-features li svg { flex-shrink: 0; }
.check-a { color: var(--sage); }
.check-b { color: var(--lavender); }
.check-c { color: var(--peach); }

.studio-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  gap: 12px;
  margin-top: auto;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.price-period { font-size: 13px; color: var(--text-3); }

@media (max-width: 960px) {
  .studios-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ==========================================
   EQUIPMENT
   ========================================== */

.equipamiento { background: var(--bg-2); }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.equip-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.equip-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  border-radius: 0 0 var(--radius) var(--radius);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.equip-item:nth-child(1)::after,
.equip-item:nth-child(5)::after { background: var(--sage); }
.equip-item:nth-child(2)::after,
.equip-item:nth-child(6)::after { background: var(--lavender); }
.equip-item:nth-child(3)::after,
.equip-item:nth-child(7)::after { background: var(--peach); }
.equip-item:nth-child(4)::after,
.equip-item:nth-child(8)::after { background: var(--sky); }

.equip-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.equip-item:hover::after { transform: scaleX(1); }

.equip-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.equip-item:nth-child(1) .equip-icon,
.equip-item:nth-child(5) .equip-icon { background: var(--sage-light);     color: var(--sage); }
.equip-item:nth-child(2) .equip-icon,
.equip-item:nth-child(6) .equip-icon { background: var(--lavender-light); color: var(--lavender); }
.equip-item:nth-child(3) .equip-icon,
.equip-item:nth-child(7) .equip-icon { background: var(--peach-light);    color: var(--peach); }
.equip-item:nth-child(4) .equip-icon,
.equip-item:nth-child(8) .equip-icon { background: var(--sky-light);      color: var(--sky); }

.equip-item h4 { font-family: var(--font-display); font-size: 17px; color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px; }
.equip-item p  { font-size: 13px; color: var(--text-3); line-height: 1.6; }

@media (max-width: 960px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .equip-grid { grid-template-columns: 1fr; } }

/* ==========================================
   HOW IT WORKS
   ========================================== */

.como-funciona { background: var(--bg-dark); }

.steps {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.step {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--trans);
}
.step:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(123,169,154,0.25);
  transform: translateY(-4px);
}
.step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.step:hover .step__num { color: var(--sage); }
.step__content h4 { font-family: var(--font-display); font-size: 19px; color: var(--text-inv); margin-bottom: 10px; letter-spacing: -0.3px; }
.step__content p  { font-size: 13px; color: rgba(240,239,236,0.45); line-height: 1.7; }
.step__arrow { display: none; }

@media (max-width: 768px) {
  .steps { flex-direction: column; }
}

/* ==========================================
   PRICING
   ========================================== */

.precios { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.price-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--trans);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.price-card--featured {
  background: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.price-card--featured .price-card__type  { color: rgba(240,239,236,0.45); }
.price-card--featured .price-card__price { color: var(--text-inv); }
.price-card--featured .price-list li     { color: rgba(240,239,236,0.65); }
.price-card--featured .price-list li::before { color: var(--sage); }

.price-card__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: white;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card__studio { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 6px; }
.price-card--featured .price-card__studio { color: var(--sage); }
.price-card__type { font-size: 14px; color: var(--text-3); margin-bottom: 24px; }
.price-card__price {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 28px;
  display: flex; align-items: flex-start; gap: 3px;
}
.price-card__price sup { font-size: 22px; margin-top: 10px; }
.price-card__price sub { font-size: 13px; font-family: var(--font-body); font-weight: 400; color: var(--text-3); align-self: flex-end; margin-bottom: 9px; }

.price-list { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.price-list li::before { content: '✓'; color: var(--sage); font-weight: 700; }

.pricing-note {
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 14px;
  padding: 14px 24px;
  background: var(--bg-2);
  border-radius: 50px;
  max-width: 480px;
  margin: 0 auto;
}
.pricing-note svg { color: var(--sand); flex-shrink: 0; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 24px; }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonios { background: var(--bg-2); }

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

.testi-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--trans);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testi-stars { font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; color: var(--sand); }
.testi-card p { font-size: 15px; color: var(--text-2); line-height: 1.75; font-style: italic; margin-bottom: 24px; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; font-weight: 700; flex-shrink: 0; }
.testi-avatar--1 { background: var(--sage-light);     color: var(--sage); }
.testi-avatar--2 { background: var(--lavender-light); color: var(--lavender); }
.testi-avatar--3 { background: var(--peach-light);    color: var(--peach); }
.testi-author strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; }
.testi-author span   { font-size: 12px; color: var(--text-3); font-family: var(--font-mono); }

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

/* ==========================================
   BOOKING
   ========================================== */

.reservar { background: var(--bg-dark); position: relative; }
.reservar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,169,154,0.45), transparent);
}

.reservar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.reservar__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -1px;
  color: var(--text-inv);
  line-height: 1.0;
  margin-bottom: 20px;
}
.reservar__title em { color: var(--sage); font-style: italic; }

.reservar__info p { color: rgba(240,239,236,0.5); font-size: 16px; margin-bottom: 36px; line-height: 1.8; }

.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link { display: flex; align-items: center; gap: 12px; color: rgba(240,239,236,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.contact-link:hover { color: var(--text-inv); }
.contact-link svg { color: var(--sage); flex-shrink: 0; }

.reservar__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.form-row   { display: flex; gap: 16px; }

.form-group label { font-size: 11px; font-family: var(--font-mono); letter-spacing: 1.5px; text-transform: uppercase; color: rgba(240,239,236,0.38); }

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-inv);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,169,154,0.15);
}
.form-group input::placeholder { color: rgba(240,239,236,0.22); }
.form-group select option       { background: var(--bg-dark); color: var(--text-inv); }

.form-note { text-align: center; font-size: 12px; color: rgba(240,239,236,0.28); font-family: var(--font-mono); }

@media (max-width: 900px) {
  .reservar__inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row        { flex-direction: column; }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p { font-size: 13px; color: rgba(240,239,236,0.38); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer__col h5  { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,239,236,0.3); margin-bottom: 16px; }
.footer__col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a   { font-size: 13px; color: rgba(240,239,236,0.42); text-decoration: none; transition: color 0.2s; }
.footer__col a:hover { color: var(--text-inv); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: rgba(240,239,236,0.22);
  font-family: var(--font-mono);
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeSlideUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn        { from { opacity: 0; } to { opacity: 1; } }

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ==========================================
   TOAST
   ========================================== */

.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text);
  box-shadow: var(--shadow-lg);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { width: 32px; height: 32px; background: var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ==========================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================== */

@media (max-width: 1024px) {
  section { padding: 80px 0; }

  .hero__content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__left { display: flex; flex-direction: column; align-items: center; }
  .hero__sub  { max-width: 520px; }
  .hero__actions { justify-content: center; }
  .hero__stats   { justify-content: center; }
  .hero__right   { max-width: 480px; margin: 0 auto; }

  .steps { flex-wrap: wrap; }
  .step  { min-width: calc(50% - 6px); flex: 0 0 calc(50% - 6px); }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ==========================================
   RESPONSIVE — MOBILE (max 640px)
   ========================================== */

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 16px; }
  section { padding: 60px 0; }

  .nav__inner { padding: 0 16px; }

  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero__title { font-size: clamp(42px, 13vw, 64px); }
  .hero__sub   { font-size: 15px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px; width: 100%;
  }
  .stat__sep { display: none; }
  .stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px; padding: 14px 10px; text-align: center;
  }
  .stat strong { font-size: 26px; }

  .section-title { font-size: clamp(28px, 9vw, 42px); }

  .studios-grid  { grid-template-columns: 1fr; }
  .studio-card__content { padding: 20px 18px; }
  .studio-card__footer  { flex-direction: column; align-items: flex-start; gap: 14px; }
  .studio-card__footer .btn { width: 100%; justify-content: center; }

  .equip-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .equip-item { padding: 20px 16px; }

  .steps { flex-direction: column; }
  .step  { min-width: 100%; flex: 0 0 100%; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card__price { font-size: 44px; }

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

  .reservar__title { font-size: clamp(36px, 11vw, 58px); }
  .reservar__form  { padding: 22px 18px; }
  .form-row        { flex-direction: column; }

  .footer { padding: 48px 0 24px; }
  .footer__inner  { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand  { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .toast { left: 16px; right: 16px; bottom: 16px; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 38px; }
  .equip-grid  { grid-template-columns: 1fr; }
}

@media (hover: none) {
  .studio-card:hover { transform: none; }
}
