/* ═══════════════════════════════════════════════════
   OSTIA DRINKS — Premium Landing Page CSS
═══════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: #0a0a0f;
  color: #f0ece3;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Design Tokens ── */
:root {
  --orange: #FF7A1A;
  --amber: #FFB347;
  --peach: #FFCF96;
  --cream: #FFF5E4;
  --dark: #0a0a0f;
  --dark-2: #131318;
  --dark-3: #1c1c24;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
}
.cursor-trail {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  border: 2px solid rgba(255,122,26,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease;
}
.cursor.hover { width: 40px; height: 40px; background: var(--amber); }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: 120px 0; overflow: hidden; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,122,26,0.12);
  border: 1px solid rgba(255,122,26,0.3);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #f0ece3;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-desc { font-size: 1.05rem; color: rgba(240,236,227,0.6); line-height: 1.7; }
.body-text { font-size: 1.05rem; color: rgba(240,236,227,0.7); line-height: 1.8; margin-bottom: 16px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #FF5D00 100%);
  color: white;
  box-shadow: 0 8px 30px rgba(255,122,26,0.4);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(255,122,26,0.6); }
.btn-outline {
  background: transparent;
  color: var(--peach);
  border: 1.5px solid rgba(255,207,150,0.4);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(-8deg); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes count-up { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes bar-grow {
  from { width: 0; }
}
@keyframes orb-move {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

/* ─────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 14px 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 6px;
  font-weight: 900; font-size: 1.3rem; letter-spacing: 0.05em;
}
.logo-drop { font-size: 1.5rem; animation: float 3s ease-in-out infinite; }
.nav-links {
  display: flex; list-style: none;
  align-items: center; gap: 36px;
}
.nav-link {
  font-size: 0.9rem; font-weight: 500;
  color: rgba(240,236,227,0.7);
  transition: color 0.3s, transform 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.nav-link:hover { color: #f0ece3; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--orange), #FF5D00);
  color: white;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(255,122,26,0.3);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,122,26,0.5); color: white; }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #f0ece3;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(19,19,24,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.1rem; color: #f0ece3; }
  .navbar { padding: 16px 24px; }
}

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,122,26,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(255,93,0,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #0a0a0f 0%, #131318 50%, #0f0c09 100%);
}
.particles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.6;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 580px;
  flex: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--amber);
  background: rgba(255,179,71,0.12);
  border: 1px solid rgba(255,179,71,0.25);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 32px;
  animation: fade-in-up 0.8s ease 0.2s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 28px;
  animation: fade-in-up 0.8s ease 0.3s both;
}
.hero-title .highlight {
  font-style: italic;
  background: linear-gradient(135deg, var(--orange), var(--amber), #FF5D00);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(240,236,227,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
  animation: fade-in-up 0.8s ease 0.4s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fade-in-up 0.8s ease 0.5s both;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  animation: fade-in-up 0.8s ease 0.6s both;
}
.stat {
  display: flex; flex-direction: column;
  align-items: flex-start;
}
.stat-num {
  font-size: 2.2rem; font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-pct { font-size: 1.4rem; font-weight: 700; color: var(--orange); }
.stat-label {
  font-size: 0.75rem; font-weight: 500;
  color: rgba(240,236,227,0.5);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.12);
}
.hero-visual {
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  width: min(48%, 580px);
  z-index: 1;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px);
  animation: orb-move 8s ease-in-out infinite;
}
.orb-1 {
  width: 400px; height: 400px; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,122,26,0.35), transparent 70%);
  animation-delay: 0s;
}
.orb-2 {
  width: 250px; height: 250px; top: 10%; right: 10%;
  background: radial-gradient(circle, rgba(255,93,0,0.25), transparent 70%);
  animation-delay: -3s;
}
.orb-3 {
  width: 200px; height: 200px; bottom: 10%; left: 5%;
  background: radial-gradient(circle, rgba(255,179,71,0.2), transparent 70%);
  animation-delay: -5s;
}
.hero-img {
  position: relative; z-index: 2;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(255,122,26,0.3));
  width: 100%;
}
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(240,236,227,0.4);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fade-in-up 1s ease 1s both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(240,236,227,0.4), transparent);
  animation: float 1.5s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  padding: 18px 0;
  background: linear-gradient(135deg, rgba(255,122,26,0.12), rgba(255,93,0,0.08));
  border-top: 1px solid rgba(255,122,26,0.2);
  border-bottom: 1px solid rgba(255,122,26,0.2);
}
.marquee-track {
  display: flex; gap: 60px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(240,236,227,0.6);
}
.marquee-track:hover { animation-play-state: paused; }

/* ─────────────────────────────────────────────────
   SPLIT LAYOUT
───────────────────────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-layout.reversed { direction: rtl; }
.split-layout.reversed > * { direction: ltr; }

/* ─────────────────────────────────────────────────
   PROPUESTA
───────────────────────────────────────────────── */
.propuesta { background: var(--dark-2); }
.pillars {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 32px;
}
.pillar {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 28px;
  flex: 1; min-width: 90px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.pillar:hover {
  background: rgba(255,122,26,0.1);
  border-color: rgba(255,122,26,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255,122,26,0.15);
}
.pillar-icon { font-size: 2rem; }
.pillar-label { font-size: 0.85rem; font-weight: 600; color: rgba(240,236,227,0.8); }

/* Brand Card */
.brand-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 48px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.4s ease;
}
.brand-card:hover { transform: scale(1.02) rotate(-1deg); }
.brand-card-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,122,26,0.12), transparent 60%);
  pointer-events: none;
}
.brand-card-content { position: relative; z-index: 1; }
.brand-quote {
  font-family: 'Playfair Display', serif;
  font-size: 6rem; line-height: 0.6;
  color: var(--orange); opacity: 0.4;
  margin-bottom: 16px;
}
.brand-card-content p {
  font-size: 1.1rem; color: rgba(240,236,227,0.75);
  line-height: 1.8;
}
.brand-fruit {
  position: absolute;
  font-size: 3rem;
  animation: float var(--dur, 4s) ease-in-out infinite;
  pointer-events: none;
}
.brand-fruit-1 { top: 16px; right: 24px; --dur: 4s; animation-delay: 0s; }
.brand-fruit-2 { bottom: 24px; right: 60px; --dur: 5s; animation-delay: -1s; }
.brand-fruit-3 { bottom: 40px; left: 24px; --dur: 3.5s; animation-delay: -2s; }

/* ─────────────────────────────────────────────────
   PRODUCTOS
───────────────────────────────────────────────── */
.productos { background: var(--dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255,122,26,0.4);
  box-shadow: 0 24px 60px rgba(255,122,26,0.2);
}
.product-glow {
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(255,122,26,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.product-card:hover .product-glow { opacity: 1; }
.product-card.featured {
  grid-row: span 1;
  border-color: rgba(255,122,26,0.3);
  background: linear-gradient(145deg, rgba(255,122,26,0.08), rgba(19,19,24,0.9));
}
.product-card.tropical .product-emoji { animation: spin-slow 8s linear infinite; display: inline-block; }
.product-badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,122,26,0.15);
  border: 1px solid rgba(255,122,26,0.3);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.product-emoji { font-size: 3rem; margin-bottom: 12px; display: block; }
.product-img-wrap {
  display: flex; justify-content: center; align-items: center;
  height: 220px;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap { transform: scale(1.08) translateY(-8px); }
.product-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}
.product-name {
  font-size: 1.1rem; font-weight: 700;
  color: #f0ece3;
  margin-bottom: 8px;
}
.product-desc { font-size: 0.85rem; color: rgba(240,236,227,0.55); line-height: 1.6; margin-bottom: 16px; }
.product-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.tag {
  font-size: 0.7rem; font-weight: 600;
  color: rgba(240,236,227,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 3px 10px;
}
.product-bar { margin-bottom: 10px; }
.bar-label { font-size: 0.72rem; color: rgba(240,236,227,0.4); margin-bottom: 4px; display: block; }
.bar-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 4px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-bar + .btn { margin-top: 16px; }

/* ─────────────────────────────────────────────────
   CALIDAD
───────────────────────────────────────────────── */
.calidad {
  background: var(--dark-2);
}
.calidad-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,122,26,0.08), transparent),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(255,93,0,0.06), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.feature-card:hover {
  background: rgba(255,122,26,0.08);
  border-color: rgba(255,122,26,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,122,26,0.12);
}
.feature-icon {
  font-size: 3rem; margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(255,122,26,0.4));
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #f0ece3; }
.feature-card p { font-size: 0.85rem; color: rgba(240,236,227,0.55); line-height: 1.6; }
.calidad-quote {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(240,236,227,0.7);
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid rgba(255,122,26,0.15);
  border-radius: 20px;
  background: rgba(255,122,26,0.04);
}
.calidad-quote em {
  color: var(--orange);
  font-style: italic;
}

/* ─────────────────────────────────────────────────
   ORIGEN
───────────────────────────────────────────────── */
.origen { background: var(--dark); }
.origen-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.origen-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8) saturate(1.2);
}
.origen-img-wrap:hover .origen-img { transform: scale(1.05); }
.origen-flag {
  position: absolute; top: 20px; left: 20px;
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.origen-chip {
  position: absolute; bottom: 20px; left: 20px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: white;
  background: rgba(255,122,26,0.85);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 18px;
}
.route-line {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px;
}
.route-point {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 1.5rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.route-point small { font-size: 0.7rem; color: rgba(240,236,227,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.route-point.active { opacity: 1; }
.route-point.active small { color: var(--orange); }
.route-dotted {
  flex: 1; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,122,26,0.4) 0, rgba(255,122,26,0.4) 6px, transparent 6px, transparent 14px);
  border-radius: 2px;
}

/* ─────────────────────────────────────────────────
   QUIÉNES SOMOS
───────────────────────────────────────────────── */
.quienes { background: var(--dark-3); }
.quienes-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(255,122,26,0.06), transparent);
}
.quienes-block {
  max-width: 760px; margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 56px;
  backdrop-filter: blur(16px);
  text-align: center;
}
.quienes-block p {
  font-size: 1.05rem; color: rgba(240,236,227,0.7);
  line-height: 1.8; margin-bottom: 20px;
}
.quienes-block strong { color: var(--orange); }
.values-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-top: 40px;
}
.value-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,122,26,0.08);
  border: 1px solid rgba(255,122,26,0.2);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.85rem; font-weight: 600;
  color: rgba(240,236,227,0.75);
  transition: all 0.3s ease;
}
.value-item:hover {
  background: rgba(255,122,26,0.18);
  color: var(--peach);
  transform: scale(1.05);
}
.value-icon { font-size: 1.2rem; }

/* ─────────────────────────────────────────────────
   DISTRIBUCIÓN
───────────────────────────────────────────────── */
.distribucion { background: var(--dark-2); }
.dist-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.dist-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px;
  backdrop-filter: blur(10px);
}
.dist-card p { font-size: 1rem; color: rgba(240,236,227,0.65); line-height: 1.8; margin-bottom: 20px; }
.dist-card strong { color: var(--peach); }
.dist-card .btn { margin-top: 8px; }
.dist-perks { display: flex; flex-direction: column; gap: 24px; }
.perk {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.perk:hover {
  border-color: rgba(255,122,26,0.35);
  background: rgba(255,122,26,0.06);
  transform: translateX(8px);
}
.perk-icon { font-size: 2.2rem; flex-shrink: 0; }
.perk strong { display: block; color: #f0ece3; margin-bottom: 4px; }
.perk p { font-size: 0.85rem; color: rgba(240,236,227,0.5); margin: 0; }

/* ─────────────────────────────────────────────────
   CONTACTO
───────────────────────────────────────────────── */
.contacto { background: var(--dark); }
.contact-wrap {
  position: relative;
  max-width: 720px; margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 72px 64px;
  backdrop-filter: blur(20px);
  text-align: center;
  overflow: hidden;
}
.contact-glow {
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,122,26,0.12), transparent 70%);
  pointer-events: none;
}
.contact-wrap .section-title { margin-bottom: 16px; }
.contact-wrap .body-text { margin-bottom: 32px; }
.contact-info {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.contact-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  background: rgba(255,122,26,0.08);
  border: 1px solid rgba(255,122,26,0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  color: rgba(240,236,227,0.8);
  transition: all 0.3s ease;
}
.contact-item:hover {
  background: rgba(255,122,26,0.18);
  color: var(--peach);
  transform: translateY(-2px);
}
.contact-icon { font-size: 1.1rem; }

/* Form */
.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem; font-weight: 600;
  color: rgba(240,236,227,0.5);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #f0ece3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,122,26,0.06);
  box-shadow: 0 0 0 3px rgba(255,122,26,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(240,236,227,0.25);
}
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  background: rgba(0,200,100,0.1);
  border: 1px solid rgba(0,200,100,0.25);
  border-radius: 12px;
  color: #5eff9e;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-success.visible { display: block; animation: fade-in-up 0.4s ease; }

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.footer {
  position: relative;
  background: #050508;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 40px;
  overflow: hidden;
}
.footer-orb {
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,122,26,0.06), transparent 70%);
  pointer-events: none;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-weight: 900; font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-logo span { font-size: 1.8rem; }
.footer-tagline {
  font-size: 1rem; color: rgba(240,236,227,0.4);
  font-style: italic;
}
.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col strong {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(240,236,227,0.3);
  margin-bottom: 4px;
}
.footer-links-col a, .footer-links-col span {
  font-size: 0.9rem; color: rgba(240,236,227,0.5);
  transition: color 0.3s;
}
.footer-links-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem; color: rgba(240,236,227,0.25);
}

/* ─────────────────────────────────────────────────
   MODAL
───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: relative;
  background: #131318;
  border: 1px solid rgba(255,122,26,0.3);
  border-radius: 28px;
  padding: 56px 48px;
  max-width: 500px; width: 100%;
  text-align: center;
  transform: scale(0.85) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; width: 36px; height: 36px;
  font-size: 1rem; color: rgba(240,236,227,0.6);
  cursor: pointer; transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(255,122,26,0.2); color: var(--orange); }
.modal-emoji { font-size: 4rem; margin-bottom: 16px; display: block; }
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  margin-bottom: 16px; color: #f0ece3;
}
.modal-desc { font-size: 0.95rem; color: rgba(240,236,227,0.6); line-height: 1.7; margin-bottom: 24px; }
.modal-features {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 32px;
}
.modal-features span {
  font-size: 0.75rem; font-weight: 600;
  background: rgba(255,122,26,0.1);
  border: 1px solid rgba(255,122,26,0.25);
  color: var(--orange);
  border-radius: 999px; padding: 6px 14px;
}

/* ─────────────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), #FF5D00);
  color: white; font-size: 1.2rem; font-weight: 700;
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(255,122,26,0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 900;
}
.back-top.visible { transform: translateY(0); opacity: 1; }
.back-top:hover { transform: translateY(-4px) scale(1.1); }

/* ─────────────────────────────────────────────────
   AOS (Animate On Scroll)
───────────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
[data-aos-delay="80"] { transition-delay: 80ms; }
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="160"] { transition-delay: 160ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="320"] { transition-delay: 320ms; }
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-30px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos="flip-left"] { transform: perspective(600px) rotateY(-30deg); }
[data-aos].animated {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 992px) {
  .split-layout, .split-layout.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .hero { flex-direction: column; padding-top: 140px; padding-bottom: 80px; }
  .hero-visual {
    position: relative; right: auto; top: auto;
    transform: none; width: 80%; max-width: 400px;
    margin: 40px auto 0;
  }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .dist-grid { grid-template-columns: 1fr; }
  .contact-wrap { padding: 48px 32px; }
  .quienes-block { padding: 40px 28px; }
}
@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .hero-title { font-size: 2.6rem; }
  .navbar { padding: 16px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrap { padding: 40px 24px; }
  .modal { padding: 40px 28px; }
  .hero-stats { gap: 20px; }
  .productos .container { padding: 0 16px; }
}
