/* ===== CUSTOM FONTS ===== */
@font-face {
  font-family: 'TAN Meringue';
  src: url('./TAN%20MERINGUE.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Codec Pro';
  src: url('./CodecPro-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== ROOT VARIABLES ===== */
:root {
  --bg-dark: #f1d4b1;
  --bg-card: #ffffff;
  --bg-card-hover: #faebd7;
  --text-main: #d97b52;
  --text-muted: #d97b52;
  --accent-primary: #b7c9a8;
  --accent-primary-hover: #a3b593;
  --accent-secondary: #d97b52;
  --border-color: #d97b52;
  --font-heading: 'TAN Meringue', 'Outfit', sans-serif;
  --font-subtitle: 'Codec Pro', 'Outfit', sans-serif;
  --font-body: 'League Spartan', 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 40px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: var(--font-body); }
body { background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }

h1, h2, h3, h4, h5, h6, .hero-tagline, .hero-subtitle, .subtitle-pricing { font-family: var(--font-subtitle); font-weight: 600; line-height: 1.2; color: var(--text-muted); }
.section-title { font-size: 2.8rem; margin-bottom: 1rem; font-weight: normal; letter-spacing: -1px; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.accent { color: var(--accent-primary); }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; border-radius: 9999px; font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: var(--transition); text-decoration: none; border: 2px solid transparent;
}
.btn-primary { background-color: var(--accent-primary); color: #2f2f2f; border-color: var(--accent-primary); }
.btn-primary:hover { background-color: transparent; color: var(--text-main); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-secondary { background-color: var(--bg-card); color: var(--text-main); border: 2px solid var(--border-color); }
.btn-secondary:hover { background-color: var(--bg-card-hover); border-color: var(--text-main); }
.btn-outline { background-color: transparent; color: var(--text-main); border: 2px solid var(--border-color); }
.btn-outline:hover { border-color: var(--accent-primary); color: var(--accent-primary); }
.btn-outline-nav { background-color: transparent; color: var(--text-main); border: 2px solid var(--text-main); font-size: 0.9rem; padding: 0.5rem 1.25rem; }
.btn-outline-nav:hover { background-color: var(--text-main); color: var(--bg-dark); }

/* ===== TOP BAR ===== */
.top-bar {
  background: rgba(255, 249, 242, 1);
  color: var(--text-main);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.top-bar p { margin: 0; }
.top-bar a {
  color: var(--text-main);
  text-decoration: underline;
}
.top-bar a:hover {
  color: var(--accent-primary);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 34px; left: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 5%; background: rgba(217, 123, 82, 0.95); backdrop-filter: blur(16px);
  z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled { padding: 0.6rem 5%; background: rgba(217, 123, 82, 0.98); }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a:not(.btn) { color: #fff; text-decoration: none; font-weight: 500; transition: var(--transition); }
.nav-links a:not(.btn):hover { color: var(--bg-card); }
.btn-outline-nav { background-color: transparent; color: #fff; border: 2px solid #fff; font-size: 0.9rem; padding: 0.5rem 1.25rem; }
.btn-outline-nav:hover { background-color: #fff; color: var(--text-main); }
.mobile-menu-icon { display: none; cursor: pointer; color: #fff; z-index: 200; }

/* Navbar Dropdown */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.nav-dropdown-toggle svg, .nav-dropdown-toggle i {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.nav-item-dropdown:hover .nav-dropdown-toggle svg,
.nav-item-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.08);
  min-width: 220px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  list-style: none;
  z-index: 200;
}
.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-main) !important;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-dropdown-menu li a:hover {
  background: rgba(217,123,82,0.08);
  color: var(--text-main) !important;
  padding-left: 1.5rem;
}
.mobile-dropdown-sub {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  gap: 0.5rem;
  margin-top: -0.5rem;
}
.mobile-dropdown-sub a {
  font-size: 1rem !important;
  color: var(--text-muted) !important;
  padding: 0.5rem 0 !important;
  border-bottom: 1px dashed rgba(0,0,0,0.05) !important;
}

/* ===== MOBILE MENU ===== */
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav-panel {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px; height: 100vh;
  background: var(--bg-card); z-index: 160; padding: 6rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.4);
}
.mobile-nav-panel.active { right: 0; }
.mobile-nav-panel a {
  color: var(--text-main); text-decoration: none; font-size: 1.25rem; font-weight: 500;
  padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition);
}
.mobile-nav-panel a:hover { color: var(--accent-primary); padding-left: 0.5rem; }
.mobile-nav-close {
  position: absolute; top: 1.25rem; right: 1.25rem; background: none; border: none;
  color: var(--text-main); cursor: pointer; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}

/* ===== HERO SECTION — FULL BLEED ===== */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 5% 4rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(217,123,82,0.3) 0%, rgba(47,47,47,0.7) 60%, var(--bg-dark) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.badge {
  display: inline-block; padding: 0.35rem 1rem; background-color: rgba(183,201,168,0.15);
  color: var(--accent-primary); border-radius: 999px; font-size: 0.875rem; font-weight: 600;
  margin-bottom: 2rem; border: 1px solid var(--accent-primary);
  animation: pulse-badge 3s ease-in-out infinite;
}
@keyframes pulse-badge { 0%,100% { box-shadow: 0 0 0 0 rgba(183,201,168,0.3); } 50% { box-shadow: 0 0 0 12px rgba(183,201,168,0); } }
.hero-title { font-family: var(--font-heading); font-weight: normal; font-size: 5.5rem; margin-bottom: 0; letter-spacing: -2px; color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.hero-tagline { font-size: 1.5rem; font-weight: 300; color: var(--text-main); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1.5rem; opacity: 0.9; }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-sub-detail { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.hero-social-proof { display: inline-block; background: rgba(255,255,255,0.9); padding: 0.5rem 1.25rem; border-radius: 999px; margin-bottom: 2rem; font-size: 0.9rem; font-weight: 600; color: #000; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.proof-stars { color: #f59e0b; margin-right: 0.25rem; letter-spacing: 1px; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; flex-wrap: wrap; }
.stat { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }
.stat i { color: var(--accent-primary); width: 18px; height: 18px; }

/* ===== MARQUEE ===== */
.marquee-section { background: var(--bg-card); padding: 1.25rem 0; overflow: hidden; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.marquee-track { display: flex; width: max-content; animation: marquee 25s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { white-space: nowrap; padding: 0 2.5rem; font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 0.75rem; }
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-primary); flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ABOUT SECTION (NOSOTROS) ===== */
.about-section { padding: 7rem 5%; background-color: var(--bg-dark); }
.about-container { max-width: 900px; margin: 0 auto; background: var(--bg-card); padding: 4rem; border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.about-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; }
.about-content { color: var(--text-main); line-height: 1.8; font-size: 1.05rem; }
.about-list { list-style: none; margin-top: 1.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.about-list li { display: flex; align-items: center; gap: 0.75rem; }
.about-list li i { color: var(--accent-primary); flex-shrink: 0; width: 20px; height: 20px; }
@media (max-width: 768px) {
  .about-container { padding: 2.5rem 1.5rem; }
}

/* ===== WHAT IS WINK? (QUÉ ES WINK) ===== */
.what-is-section { padding: 7rem 5%; background: var(--bg-dark); border-bottom: 1px solid rgba(0,0,0,0.05); }
.what-is-container { max-width: 1200px; margin: 0 auto; }
.section-label { display: block; text-align: center; color: #ffffff; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 1rem; }
.what-is-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 4rem; }

.what-is-steps { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.what-is-step { 
  flex: 1; min-width: 280px; background: var(--bg-card); padding: 2.5rem; 
  border-radius: var(--radius-lg); text-align: center; position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.what-is-step:hover { transform: translateY(-8px); border-color: var(--accent-primary); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.what-step-num { 
  position: absolute; top: 1rem; right: 1.5rem; font-family: var(--font-subtitle);
  font-size: 3rem; font-weight: 800; color: rgba(217,123,82,0.1); line-height: 1;
}
.what-step-icon { 
  width: 64px; height: 64px; background: rgba(183,201,168,0.15); color: var(--accent-primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.what-is-step h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--text-main); }
.what-is-step p { color: #555; font-size: 0.95rem; line-height: 1.6; }
.what-is-arrow { font-size: 2rem; color: var(--accent-primary); font-weight: 300; display: flex; align-items: center; justify-content: center; }

@media (max-width: 900px) {
  .what-is-steps { flex-direction: column; }
  .what-is-arrow { transform: rotate(90deg); margin: 1rem 0; }
}

/* ===== GALLERY ===== */
.gallery-section { padding: 7rem 5%; background: var(--bg-card); }
.gallery-scroll {
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 2rem 0; -ms-overflow-style: none; scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 auto; width: 320px; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; scroll-snap-align: start; position: relative;
  border: 2px solid rgba(0,0,0,0.06); transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); border-color: var(--accent-primary); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-label {
  position: absolute; bottom: 1.5rem; left: 1.5rem; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px); padding: 0.5rem 1rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-main);
}
.gallery-hint { text-align: center; margin-top: 1.5rem; color: var(--text-muted); font-size: 0.9rem; opacity: 0.7; }

/* ===== PRICING TEXT CARDS ===== */
.pricing-section { padding: 7rem 5%; background-color: var(--bg-dark); }
.subtitle-pricing { color: var(--text-muted); margin-bottom: 3rem; }
.pricing-text-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.pricing-text-card {
  background: var(--bg-card); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem; position: relative;
  display: flex; flex-direction: column; transition: var(--transition);
}
.pricing-text-card:hover { transform: translateY(-10px); border-color: rgba(0,0,0,0.15); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.pricing-text-card.highlight { border-color: var(--text-main); transform: scale(1.05); }
.pricing-text-card.highlight:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 20px 40px rgba(217,123,82,0.15); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--text-main); color: #fff; padding: 4px 16px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.pricing-card-header { text-align: center; border-bottom: 1px solid rgba(0,0,0,0.06); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.pricing-card-header h3 { font-size: 2rem; color: var(--text-main); margin-bottom: 0; font-family: var(--font-subtitle); }
.pricing-card-features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; padding: 0; }
.pricing-card-features li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; color: #555; }
.pricing-card-features li i { color: var(--text-main); width: 18px; height: 18px; flex-shrink: 0; }
.pricing-btn { width: 100%; text-align: center; padding: 1rem; font-size: 1.1rem; }
.text-addons { max-width: 800px; margin: 4rem auto 0; }
.addons-list-container { background: var(--bg-card); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.addons-text-list { list-style: none; padding: 0; margin: 0; }
.addons-text-list li { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px dashed rgba(0,0,0,0.1); color: #555; }
.addons-text-list li:last-child { border-bottom: none; }
.addons-text-list li strong { color: var(--text-main); font-size: 1.1rem; font-family: var(--font-subtitle); }


/* ===== BOOKING SECTION ===== */
.booking-section { padding: 7rem 5%; }
.booking-container { background: var(--bg-card); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: 4rem; }
.booking-info p { color: var(--text-muted); margin-bottom: 2rem; }
.disclaimer-alert { display: flex; gap: 1rem; background: rgba(183,201,168,0.1); border: 1px solid var(--accent-primary); padding: 1.5rem; border-radius: var(--radius-sm); color: var(--text-muted); font-size: 0.9rem; }
.disclaimer-alert i { color: var(--accent-primary); flex-shrink: 0; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent-primary); color: #2f2f2f;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(183,201,168,0.4);
  transition: var(--transition); cursor: pointer; text-decoration: none;
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-cta:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 12px 40px rgba(183,201,168,0.5); }
.floating-cta svg, .floating-cta i { width: 26px; height: 26px; }

/* ===== FOOTER ===== */
.footer-tagline { font-size: 1rem; color: var(--accent-primary); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem; }
footer { background: var(--bg-card); padding: 4rem 5% 2rem; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); margin-bottom: 1.5rem; }
.socials { display: flex; gap: 1rem; }
.socials a { color: var(--text-main); background: rgba(0,0,0,0.05); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); }
.socials a:hover { background: var(--accent-primary); color: #2f2f2f; transform: translateY(-3px); }
.footer-links h3 { font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-primary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.05); color: var(--text-muted); font-size: 0.875rem; }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal.active { opacity: 1; pointer-events: all; }
.modal-content { background: var(--bg-card); padding: 2rem; border-radius: var(--radius-md); width: 90%; max-width: 800px; position: relative; transform: scale(0.95); transition: transform 0.3s ease; }
.modal.active .modal-content { transform: scale(1); }
.close-modal { position: absolute; top: 1rem; right: 1rem; background: transparent; border: none; color: var(--text-muted); cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); }
.close-modal:hover { background: var(--bg-dark); color: var(--text-main); }
.video-placeholder { aspect-ratio: 16/9; background: var(--bg-dark); border: 1px dashed rgba(0,0,0,0.1); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); text-align: center; gap: 1rem; }
.video-placeholder i { width: 48px; height: 48px; color: var(--accent-primary); }

/* ===== HERO LOCATION ===== */
.hero-location { font-family: var(--font-subtitle); font-size: 1.1rem; font-weight: 600; color: var(--accent-primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; }

/* ===== BOOKING STEPS (COMO FUNCIONA) ===== */
.booking-steps-section { padding: 7rem 5%; background: var(--bg-card); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.step-card {
  padding: 2.5rem 2rem; background: var(--bg-card); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg); position: relative; transition: var(--transition); overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(217,123,82,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.step-card:hover::before { opacity: 1; }
.step-card:hover { border-color: var(--text-main); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.step-number { position: absolute; top: 15px; right: 20px; font-size: 3.5rem; font-family: var(--font-subtitle); font-weight: 800; color: #f5f5f5; line-height: 1; }
.step-icon { width: 56px; height: 56px; background: rgba(217,123,82,0.1); color: var(--text-main); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.step-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--text-main); }
.step-card p { color: #555; font-size: 0.95rem; position: relative; z-index: 1; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 7rem 5%; background: var(--bg-card); overflow: hidden; }
.reviews-slider-container { margin: 3rem auto; max-width: 1200px; position: relative; overflow: hidden; }

.reviews-track { display: flex; width: max-content; animation: scroll-reviews 30s linear infinite; gap: 2rem; padding: 1rem 0; }
.reviews-track:hover { animation-play-state: paused; }
.review-card { background: var(--bg-dark); padding: 2rem; border-radius: var(--radius-md); width: 350px; flex-shrink: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.review-card:hover { transform: translateY(-5px); }
.review-stars { color: #f59e0b; font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { color: var(--text-main); font-size: 1rem; margin-bottom: 1.5rem; font-style: italic; }
.review-author { color: var(--text-muted); font-weight: 700; font-family: var(--font-subtitle); }

@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

@media (max-width: 768px) {
  .review-card { width: 280px; padding: 1.5rem; }
  .reviews-slider-container::before, .reviews-slider-container::after { width: 40px; }
}

/* ===== FAQ ===== */
.faq-section { padding: 7rem 5%; background: var(--bg-card); }
.faq-container { max-width: 800px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-item summary {
  padding: 1.25rem 0; font-family: var(--font-subtitle); font-size: 1.1rem; font-weight: 600;
  color: var(--text-muted); cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-primary); transition: transform 0.3s ease; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: #2f2f2f; }
.faq-item p { padding: 0 0 1.25rem; color: var(--text-main); line-height: 1.7; font-size: 0.95rem; }

/* ===== STUDIO GALLERY (PRESENTAMOS WINK) ===== */
.studio-gallery-section { padding: 4rem 5%; background: var(--bg-dark); border-top: 1px solid rgba(0,0,0,0.05); overflow: hidden; position: relative; }
.studio-gallery-header { margin-bottom: 2rem; }
.studio-gallery-wrapper { width: 100%; overflow: hidden; position: relative; padding-bottom: 1.5rem; }
.studio-gallery-wrapper::before, .studio-gallery-wrapper::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.studio-gallery-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.studio-gallery-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }

.studio-gallery-track { 
  display: flex; 
  width: max-content; 
  gap: 1rem; 
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  will-change: transform;
}
.studio-gallery-track.is-dragging {
  cursor: grabbing;
}

.studio-gallery-item { flex: 0 0 auto; width: 260px; aspect-ratio: 4/5; border-radius: var(--radius-md); overflow: hidden; position: relative; }
.studio-gallery-item img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform 0.4s ease; }
.studio-gallery-item:hover img { transform: scale(1.05); }

/* Gallery Controls */
.gallery-arrow {
  position: absolute;
  top: calc(50% - 1.5rem);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 123, 82, 0.3);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}
.gallery-arrow:hover {
  background: var(--text-main);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

@media (max-width: 768px) {
  .gallery-arrow { display: none; }
  .studio-gallery-wrapper::before, .studio-gallery-wrapper::after { width: 40px; }
  .studio-gallery-item { width: 200px; }
}


/* ===== SELF-QUALIFICATION ===== */
.qualify-section { padding: 7rem 5%; background: var(--bg-card); }
.qualify-container { max-width: 800px; margin: 0 auto; }
.qualify-subtitle { color: var(--text-muted); margin-bottom: 3rem; }
.qualify-tabs { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.qualify-tab { background: transparent; border: 2px solid var(--border-color); color: var(--text-main); padding: 0.8rem 1.5rem; border-radius: 999px; font-weight: 600; font-family: var(--font-body); cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; }
.qualify-tab.active, .qualify-tab:hover { background: var(--text-main); color: #fff; border-color: var(--text-main); }
.qualify-content { display: none; animation: fadeIn 0.4s ease-out forwards; }
.qualify-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.qualify-heading { font-size: 1.5rem; margin-bottom: 1.5rem; font-family: var(--font-subtitle); color: var(--text-main); text-align: center; }
.qualify-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.qualify-item { display: flex; gap: 1rem; background: var(--bg-dark); padding: 1.25rem 1.5rem; border-radius: var(--radius-md); cursor: pointer; border: 2px solid transparent; transition: var(--transition); align-items: flex-start; }
.qualify-item:hover { border-color: rgba(0,0,0,0.1); transform: translateX(4px); }
.qualify-item.checked { background: rgba(183,201,168,0.2); border-color: var(--accent-primary); }
.qualify-check { width: 24px; height: 24px; border: 2px solid var(--text-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; transition: var(--transition); }
.qualify-check i { opacity: 0; width: 14px; height: 14px; color: #fff; transition: var(--transition); }
.qualify-item.checked .qualify-check { background: var(--accent-primary); border-color: var(--accent-primary); }
.qualify-item.checked .qualify-check i { opacity: 1; }
.qualify-item span { color: #444; line-height: 1.5; font-size: 0.95rem; }
.qualify-progress { background: var(--bg-dark); border-radius: 999px; padding: 1rem 1.5rem; text-align: center; margin-bottom: 2rem; border: 1px solid rgba(0,0,0,0.05); }
.qualify-progress-bar { height: 8px; background: rgba(0,0,0,0.1); border-radius: 999px; overflow: hidden; margin-bottom: 0.8rem; }
.qualify-progress-fill { height: 100%; width: 0%; background: var(--text-main); transition: width 0.4s ease-out; }
.qualify-progress-text { font-size: 0.9rem; font-weight: 600; color: var(--text-main); }
.qualify-cta { display: none; text-align: center; animation: fadeInScale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.qualify-cta.visible { display: block; }
.qualify-cta-inner { background: linear-gradient(135deg, rgba(217,123,82,0.1) 0%, transparent 100%); border: 2px solid var(--text-main); padding: 2.5rem; border-radius: var(--radius-lg); }
.qualify-cta-emoji { font-size: 3rem; margin-bottom: 1rem; }
.qualify-cta-inner h4 { font-size: 1.8rem; color: var(--text-main); margin-bottom: 1rem; font-family: var(--font-subtitle); }
.qualify-cta-inner p { color: #555; margin-bottom: 2rem; font-size: 1.05rem; }
.qualify-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== SERVICES B2B ===== */
.b2b-section { padding: 7rem 5%; background: var(--bg-card); border-top: 1px solid rgba(0,0,0,0.05); }
.b2b-container { max-width: 1000px; margin: 0 auto; }
.b2b-subtitle { color: var(--text-muted); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; font-size: 1.1rem; }
.b2b-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.b2b-card { text-align: left; padding: 2rem; background: var(--bg-dark); border-radius: var(--radius-lg); transition: var(--transition); }
.b2b-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.b2b-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.5); color: var(--text-main); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.b2b-card h4 { font-size: 1.2rem; color: var(--text-main); margin-bottom: 1rem; }
.b2b-card p { font-size: 0.95rem; color: #555; }
.b2b-cta { background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(217,123,82,0.1) 100%); padding: 3rem; border-radius: var(--radius-lg); }
.b2b-cta-text { font-size: 1.2rem; font-weight: 600; color: var(--text-main); margin-bottom: 1.5rem; }
.b2b-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FLOATING WHATSAPP & STICKY CTA ===== */
.floating-whatsapp {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition); cursor: pointer; text-decoration: none;
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.mobile-sticky-bar { display: none; }

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { padding-top: 8rem; }
  .hero-title { font-size: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-icon { display: block; }
  .hero-title { font-size: 2.8rem; }
  .hero-tagline { font-size: 1.1rem; letter-spacing: 2px; }
  .hero-location { font-size: 0.9rem; }
  .section-title { font-size: 2rem; }
  .pricing-text-card.highlight { transform: none; }
  .pricing-text-card.highlight:hover { transform: translateY(-5px); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .floating-cta { display: none; } /* hidden on mobile in favor of sticky bar */
  .floating-whatsapp { display: none; } /* hidden on mobile in favor of sticky bar */
  
  /* Mobile Sticky Bar */
  .mobile-sticky-bar {
    display: flex; position: fixed; bottom: 0; left: 0; width: 100%;
    z-index: 100; background: var(--bg-card); box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 0.75rem 1rem; gap: 0.75rem; border-top: 1px solid rgba(0,0,0,0.05);
  }
  .mobile-sticky-book {
    flex: 1; background: var(--text-main); color: #fff; border-radius: 999px;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-weight: 600; text-decoration: none; padding: 0.75rem;
  }
  .mobile-sticky-wa {
    width: 48px; height: 48px; background: #25D366; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0;
  }
  
  .marquee-item { font-size: 0.95rem; padding: 0 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 1rem; }
  .qualify-item { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
  .qualify-check { margin-top: 0; margin-bottom: 0.5rem; }
  .b2b-cta { padding: 2rem 1.5rem; }
}
