/* ═══════════════════════════════════════════
   PLANET WAFFLE — styles.css
   Paleta: Navy #0A1235 · Gold #F7C229 · White
   Fuentes: Fredoka One (títulos) · Nunito (cuerpo)
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:       #0A1235;
  --bg-mid:   #0D1640;
  --bg-card:  #111E58;
  --cloud:    #172066;
  --gold:     #F7C229;
  --gold-dim: rgba(247,194,41,0.18);
  --white:    #ffffff;
  --gray:     rgba(255,255,255,0.65);
  --uber:     #06C167;
  --rappi:    #FF441B;
  --radius:   20px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--white); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; }

/* ── Helpers ── */
.gold { color: var(--gold); }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* ════════════════════════════════════════════
   STARFIELD (generated by JS)
════════════════════════════════════════════ */
#stars-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star-dot {
  position: absolute;
  border-radius: 50%;
  animation: twinkle var(--d, 3s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: var(--lo, 0.2); transform: scale(1); }
  50%       { opacity: 1;              transform: scale(1.6); }
}

.sparkle {
  position: absolute;
  pointer-events: none;
  user-select: none;
  animation: sparklePulse var(--d, 4s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes sparklePulse {
  0%, 100% { opacity: 0.25; transform: scale(0.8) rotate(0deg); }
  50%       { opacity: 1;    transform: scale(1.2) rotate(45deg); }
}

/* ════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes floatAlt {
  0%, 100% { transform: translateY(-6px); }
  50%       { transform: translateY(8px); }
}
@keyframes rocketBob {
  0%, 100% { transform: translateY(0)  rotate(-35deg); }
  50%       { transform: translateY(-10px) rotate(-35deg); }
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
#navbar {
  position: fixed;
  inset: 0 0 auto;
  height: 68px;
  z-index: 1000;
  background: rgba(10,18,53,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-dim);
  transition: background 0.3s;
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-img  { height: 46px; width: auto; }
.nav-brand-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--gold);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list a {
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-list a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 0.48rem 1.4rem;
  border-radius: 50px;
  font-weight: 800 !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.88; transform: scale(1.04); }

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

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
  text-align: center;
}

/* Glow */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(247,194,41,0.1) 0%, transparent 70%);
}

/* ── Decorative planets ── */
.deco-planet {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.deco-planet--purple {
  width: 100px; height: 100px;
  top: 10%; left: 4%;
  background: radial-gradient(circle at 35% 30%, #be80e8, #4A235A);
  box-shadow: 0 0 24px rgba(190,128,232,0.3);
  animation: float 6s ease-in-out infinite;
}
.deco-planet--blue {
  width: 80px; height: 80px;
  top: 8%; right: 6%;
  background: radial-gradient(circle at 35% 30%, #5ab4ee, #1A5276);
  box-shadow: 0 0 20px rgba(90,180,238,0.3);
  animation: floatAlt 7s ease-in-out infinite;
}

.planet-ring {
  position: absolute;
  width: 145%; height: 30%;
  top: 35%; left: -22%;
  border: 2.5px solid rgba(247,194,41,0.55);
  border-radius: 50%;
  transform: rotateX(68deg);
}
.deco-planet--blue .planet-ring {
  border-color: rgba(180,220,255,0.5);
}

/* ── Rocket ── */
.deco-rocket {
  position: absolute;
  font-size: 4.8rem;
  bottom: 22%; left: 4%;
  z-index: 1;
  pointer-events: none;
  animation: rocketBob 3.5s ease-in-out infinite;
}

/* ── Comet ── */
.deco-comet {
  position: absolute;
  top: 18%; right: 10%;
  width: 110px; height: 7px;
  border-radius: 50px;
  background: linear-gradient(to right, transparent, #FF8C00, #FFD700);
  transform: rotate(28deg);
  pointer-events: none;
  z-index: 1;
}
.deco-comet::before {
  content: '';
  position: absolute;
  right: -4px; top: -13px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD700 30%, #FF4500);
}

/* ── Cloud bank ── */
.hero-clouds {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 190px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.cp { position: absolute; background: var(--cloud); border-radius: 50%; }
.cp1 { width: 380px; height: 260px; bottom: -130px; left: -70px; }
.cp2 { width: 240px; height: 190px; bottom:  -70px; left:  130px; }
.cp3 { width: 320px; height: 230px; bottom: -110px; left:  290px; }
.cp4 { width: 420px; height: 290px; bottom: -150px; right: -60px; }
.cp5 { width: 270px; height: 210px; bottom:  -80px; right: 190px; }
.cp6 { width: 200px; height: 160px; bottom:  -40px; right: 390px; }

/* ── Speech bubble (desktop) ── */
.hero-speech {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 3px solid var(--bg);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  color: var(--bg);
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  max-width: 155px;
  line-height: 1.45;
  box-shadow: 4px 4px 0 var(--bg);
  pointer-events: none;
  z-index: 3;
}
.hero-speech::after {
  content: '';
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%);
  border: 9px solid transparent;
  border-left-color: var(--white);
}

/* ── Hero content ── */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(247,194,41,0.12);
  border: 1.5px solid rgba(247,194,41,0.35);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

/* Logo */
.hero-logo-wrap {
  position: relative;
  width: 400px; height: 400px;
  margin: 0 auto 1.25rem;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 32px rgba(247,194,41,0.45));
}
.hero-logo-emoji {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14rem;
  opacity: 0.4;
}
.hero-logo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}

/* Headline */
.hero-headline { margin-bottom: 0.75rem; }

/* "UN DESAYUNO" — pill con borde morado */
.hero-banner-label {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.1rem, 2.8vw, 1.9rem);
  padding: 0.3rem 2rem;
  border-radius: 50px;
  border: 3px solid #8B35CC;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-family: 'Fredoka One', cursive;
  line-height: 0.95;
}

/* "FUERA DE ESTE" — ribbon dorado con puntas */
.hero-title-mid {
  display: inline-block;
  font-size: clamp(1.6rem, 5vw, 3.4rem);
  color: var(--bg);
  background: #F5A623;
  padding: 0.3rem 3.5rem;
  clip-path: polygon(
    28px 0%,
    calc(100% - 28px) 0%,
    100% 50%,
    calc(100% - 28px) 100%,
    28px 100%,
    0% 50%
  );
  line-height: 1.2;
  margin-bottom: 0.1em;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-text-stroke: 0;
}

/* "PLANETA" — enorme con outline */
.hero-title-big {
  display: block;
  font-size: clamp(4rem, 14vw, 9rem);
  -webkit-text-stroke: 4px var(--bg);
  paint-order: stroke fill;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0.9rem 0 1.8rem;
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
/* Logo images */
.btn-logo        { height: 24px; width: auto; flex-shrink: 0; display: block; }
.platform-logo   { height: 40px; width: auto; display: block; }
.footer-btn-logo { height: 20px; width: auto; display: block; margin: 0 auto; }

.btn-uber  { background: var(--white); color: var(--bg); }
.btn-rappi { background: var(--white); color: var(--bg); }

.btn-uber:hover  { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,255,255,0.35); }
.btn-rappi:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,255,255,0.35); }

/* Trust row */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.trust-sep { color: rgba(255,255,255,0.2); }

/* ════════════════════════════════════════════
   SHARED SECTION STYLES
════════════════════════════════════════════ */
section { position: relative; z-index: 1; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-tag {
  display: inline-block;
  background: rgba(247,194,41,0.12);
  border: 1px solid rgba(247,194,41,0.3);
  border-radius: 50px;
  padding: 0.28rem 1rem;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 600;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════ */
.features-section {
  background: linear-gradient(to bottom, var(--cloud) 0%, var(--bg-mid) 55%);
  padding: 0 1.5rem 4.5rem;
  position: relative;
  z-index: 3;
}

.features-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 3rem;
}

.feature-item {
  text-align: center;
  flex: 1;
  min-width: 130px;
  max-width: 195px;
}

.feature-icon-ring {
  width: 84px; height: 84px;
  border: 2.5px dashed var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  background: rgba(247,194,41,0.07);
  transition: background 0.3s, transform 0.3s;
}
.feature-item:hover .feature-icon-ring {
  background: rgba(247,194,41,0.15);
  transform: scale(1.08) rotate(5deg);
}

.feature-emoji  { font-size: 2rem; }
.feature-label  { display: block; font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.25rem; }
.feature-desc   { font-size: 0.8rem; color: var(--gray); font-weight: 600; line-height: 1.4; }

/* ════════════════════════════════════════════
   PRODUCTS / MENU
════════════════════════════════════════════ */
.menu-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg) 60%);
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(247,194,41,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(247,194,41,0.5);
  box-shadow: 0 18px 44px rgba(0,0,0,0.4), 0 0 24px rgba(247,194,41,0.1);
}
.product-card--combo { border-color: rgba(255,68,27,0.3); }

/* Image box */
.product-img-box {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0E1E5A, #1A2D80);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img-fallback {
  font-size: 4.5rem;
  opacity: 0.22;
  user-select: none;
  pointer-events: none;
}
.product-img-box img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-box img { transform: scale(1.07); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--gold);
  color: var(--bg);
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.22rem 0.7rem;
  border-radius: 50px;
}

/* Card body */
.product-body  { padding: 1.2rem 1.4rem 1.5rem; }
.product-name  { font-family: 'Fredoka One', cursive; font-size: 1.4rem; margin-bottom: 0.4rem; }
.product-desc  { font-size: 0.875rem; color: var(--gray); font-weight: 600; line-height: 1.55; margin-bottom: 1.1rem; }

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 0.46rem 1.1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  transition: background 0.22s, color 0.22s;
}
.product-btn:hover { background: var(--gold); color: var(--bg); }

/* ════════════════════════════════════════════
   HOW TO ORDER
════════════════════════════════════════════ */
.order-section {
  padding: 5rem 1.5rem;
  background: var(--bg-mid);
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto 3.5rem;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 195px;
  max-width: 245px;
  text-align: center;
  padding: 2rem 1.2rem;
  background: rgba(10,18,53,0.5);
  border: 1px solid rgba(247,194,41,0.18);
  border-radius: var(--radius);
}
.step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.7rem;
}
.step-icon  { font-size: 2.4rem; margin-bottom: 0.6rem; }
.step-name  { font-family: 'Fredoka One', cursive; font-size: 1.15rem; margin-bottom: 0.4rem; }
.step-text  { font-size: 0.875rem; color: var(--gray); font-weight: 600; line-height: 1.55; }
.step-text strong { color: var(--gold); font-weight: 800; }

.step-connector {
  flex-shrink: 0;
  width: 36px;
  border-top: 2px dashed rgba(247,194,41,0.3);
  margin-bottom: 1rem;
}

/* Platform tiles */
.platforms-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.platform-link {
  display: block;
  transition: transform 0.25s, opacity 0.25s;
}
.platform-link img {
  height: 52px;
  width: auto;
  display: block;
}
.platform-link:hover { transform: translateY(-4px); opacity: 0.85; }

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about-section { padding: 5rem 1.5rem; background: var(--bg); }

.about-grid {
  display: flex;
  gap: 5rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text { flex: 1; min-width: 280px; }
.about-text .section-tag { margin-bottom: 0.9rem; }
.about-text p {
  color: var(--gray);
  font-weight: 600;
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 0.9rem;
}

.about-perks { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.about-perks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.94rem;
}
.about-perks li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.about-visual { flex-shrink: 0; }
.about-planet {
  position: relative;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #253A9A, #0B1740);
  border: 3px solid rgba(247,194,41,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  box-shadow: 0 0 70px rgba(247,194,41,0.12);
  animation: float 6s ease-in-out infinite;
  overflow: visible;
}
.about-planet-ring {
  position: absolute;
  width: 390px; height: 60px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(70deg);
  border: 3px solid rgba(247,194,41,0.25);
  border-radius: 50%;
  pointer-events: none;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
#footer {
  background: var(--bg-mid);
  border-top: 1px solid rgba(247,194,41,0.12);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.footer-brand { flex: 1; min-width: 180px; }
.footer-logo  { height: 70px; width: auto; margin-bottom: 0.7rem; display: block; margin-left: auto; margin-right: auto; }
.footer-brand-name { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: var(--gold); margin-bottom: 0.2rem; }
.footer-tagline    { font-size: 0.85rem; color: var(--gray); font-weight: 600; }

.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a { color: var(--gray); font-weight: 700; font-size: 0.9rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

.footer-platforms { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-btn {
  display: block;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-btn:hover { opacity: 0.85; transform: translateX(3px); }
.fp-uber  { background: var(--white); color: var(--bg); }
.fp-rappi { background: var(--white); color: var(--bg); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.4rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  font-weight: 600;
}

/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .js .animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .js .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger for grid items */
  .js .products-grid .product-card:nth-child(2) { transition-delay: 80ms; }
  .js .products-grid .product-card:nth-child(3) { transition-delay: 160ms; }
  .js .products-grid .product-card:nth-child(4) { transition-delay: 80ms; }
  .js .products-grid .product-card:nth-child(5) { transition-delay: 160ms; }
  .js .products-grid .product-card:nth-child(6) { transition-delay: 240ms; }

  .js .features-grid .feature-item:nth-child(2) { transition-delay: 80ms; }
  .js .features-grid .feature-item:nth-child(3) { transition-delay: 160ms; }
  .js .features-grid .feature-item:nth-child(4) { transition-delay: 240ms; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { gap: 3rem; justify-content: center; }
  .about-visual  { order: -1; }
  .about-text .section-title { text-align: center !important; }
  .about-perks   { align-items: center; }
  .hero-speech   { display: none; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 680px)
════════════════════════════════════════════ */
@media (max-width: 680px) {
  /* Nav */
  .hamburger { display: flex; }
  #main-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(10,18,53,0.98);
    border-bottom: 1px solid var(--gold-dim);
    padding: 1.5rem;
  }
  #main-nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: center; gap: 1.25rem; }

  /* Hero */
  .deco-planet--purple { width: 56px; height: 56px; top: 6%; left: 2%; }
  .deco-planet--blue   { width: 44px; height: 44px; top: 5%; right: 2%; }
  .deco-rocket { font-size: 2rem; bottom: 18%; left: 2%; }
  .hero-logo-wrap   { width: 150px; height: 150px; }
  .hero-logo-emoji  { font-size: 5rem; }
  .hero-title-big   { -webkit-text-stroke: 3px var(--bg); }

  /* Features */
  .features-grid { gap: 0.9rem; }
  .feature-item  { min-width: 120px; }
  .feature-icon-ring { width: 70px; height: 70px; }
  .feature-emoji { font-size: 1.7rem; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Steps */
  .step-connector { display: none; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-card { width: 100%; max-width: 320px; }

  /* About */
  .about-planet { width: 200px; height: 200px; font-size: 5.5rem; }
  .about-planet-ring { width: 280px; }

  /* Footer */
  .footer-inner    { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .footer-nav      { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-platforms{ flex-direction: row; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Small mobile (≤ 420px)
════════════════════════════════════════════ */
@media (max-width: 420px) {
  .hero { padding: 7rem 1rem 4rem; }
  .btn  { padding: 0.8rem 1.5rem; font-size: 0.92rem; }
  .hero-ctas { gap: 0.75rem; }
  .about-planet { width: 165px; height: 165px; font-size: 4.5rem; }
  .about-planet-ring { width: 230px; }
}

/* ════════════════════════════════════════════
   FOOTER CONTACT
════════════════════════════════════════════ */
.footer-contact { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-contact-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.1rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-weight: 700;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold); }
.footer-contact-link svg   { flex-shrink: 0; }

/* ════════════════════════════════════════════
   WHATSAPP FAB (botón flotante)
════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

/* Tooltip */
.whatsapp-fab-tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--bg);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.whatsapp-fab:hover .whatsapp-fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 680px) {
  .whatsapp-fab { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .footer-inner { text-align: center; }
  .footer-contact { align-items: center; }
}
