/* === VARIABLES === */
:root {
  --cyan: #00ffff;
  --cyan-dim: rgba(0, 255, 255, 0.08);
  --cyan-border: rgba(0, 255, 255, 0.18);
  --dark-bg: rgba(13, 17, 23, 0.82);
  --white-dim: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* === RESET & BASE === */
body {
  background-color: #0d1117;
  margin: 0;
  padding-top: 110px;
}
main {
  background: radial-gradient(circle at 80% 50%, rgba(0,255,255,0.12) 0%, rgba(0,255,255,0.05) 40%, transparent 70%);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: calc(100vh - 110px);
}

/* === HEADER === */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  border: 1px solid var(--white-dim);
  display: flex;
  padding: 16px 32px;
  justify-content: space-between;
  box-shadow: var(--shadow);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 8vw, 125px);
  width: 100%;
}
.texto-logo {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
  margin: 0;
  display: inline-block;
}
.shopping-cart { align-self: center; }

/* === SECTION 1: HERO === */
.seccion1 {
  background: var(--dark-bg);
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 56px 48px;
  border: 1px solid rgba(0, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
  position: relative;
}
.seccion1::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.6;
}
.hero-contenido {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}
.hero-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: 50px;
  padding: 6px 16px;
  display: inline-block;
  width: fit-content;
}
.texto-hero {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.texto-hero-arriva {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1.1;
}
.texto-hero-medio {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 900;
  color: var(--cyan);
  display: block;
  line-height: 1.1;
  text-shadow: 0 0 24px rgba(0, 255, 255, 0.6);
}
.texto-hero-abajo {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(18px, 3.5vw, 36px);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  display: block;
  line-height: 1.2;
}
.hero-sub {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 2vw, 15px);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00c896, var(--cyan));
  color: #0d1117;
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn-hero:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.55);
  filter: brightness(1.1);
}
.sbuf-sin-fondo {
  width: clamp(160px, 28vw, 280px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 32px rgba(0, 255, 255, 0.3));
}

/* === SECTION 2: STATS === */
.contenedor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 110px 110px;
  gap: 12px;
}
.tarjeta1,
.tarjeta2,
.tarjeta3 {
  background: var(--dark-bg);
  border: 1px solid var(--white-dim);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tarjeta1::before,
.tarjeta2::before,
.tarjeta3::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,255,0.6), transparent);
}
.tarjeta1:hover,
.tarjeta2:hover,
.tarjeta3:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 255, 0.08);
}
.tarjeta1 {
  border-radius: 20px;
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 28px;
}
.tarjeta2 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tarjeta3 {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 28px;
}
.stat-icon-wrap {
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: 14px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.stat-num {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: var(--cyan);
  margin: 0;
  text-shadow: 0 0 16px rgba(0, 255, 255, 0.5);
  line-height: 1;
}
.stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.stat-3in1 {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-big {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  line-height: 1;
}
.stat-in {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(11px, 2vw, 14px);
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === SECTION 3: GUSTI === */
.section3 {
  padding: 60px 18px 30px;
  text-align: center;
}
.section-title {
  font-family: "Orbitron", sans-serif;
  color: #ffffff;
  font-size: clamp(24px, 5vw, 38px);
  margin: 0 0 8px;
  text-shadow: 0 0 18px rgba(0,255,255,0.25);
}
.title-accent {
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(0,255,255,0.8);
}
.section-subtitle {
  color: rgba(255,255,255,0.55);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 3.5vw, 16px);
  margin: 0 0 36px;
}
.gusti-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.gusto-card {
  background: rgba(13, 17, 23, 0.85);
  border: 1px solid var(--white-dim);
  border-radius: 20px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gusto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}
.gusto-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.6); }

.gusto-1::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.gusto-2::before { background: linear-gradient(90deg, #0891b2, var(--cyan)); }
.gusto-3::before { background: linear-gradient(90deg, #ea580c, #fbbf24); }
.gusto-4::before { background: linear-gradient(90deg, #db2777, #f472b6); }

.gusto-1:hover { border-color: rgba(167,139,250,0.35); }
.gusto-2:hover { border-color: rgba(0,255,255,0.35); }
.gusto-3:hover { border-color: rgba(251,191,36,0.35); }
.gusto-4:hover { border-color: rgba(244,114,182,0.35); }

.gusto-nombre {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(14px, 2.5vw, 17px);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gusto-num { font-size: clamp(16px, 3vw, 20px); font-weight: 900; }
.gusto-1 .gusto-num { color: #a78bfa; text-shadow: 0 0 12px rgba(167,139,250,0.7); }
.gusto-2 .gusto-num { color: var(--cyan); text-shadow: 0 0 12px rgba(0,255,255,0.7); }
.gusto-3 .gusto-num { color: #fbbf24; text-shadow: 0 0 12px rgba(251,191,36,0.7); }
.gusto-4 .gusto-num { color: #f472b6; text-shadow: 0 0 12px rgba(244,114,182,0.7); }

.sabores-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.sabores-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
}
.sabores-lista li:last-child { border-bottom: none; }
.sabores-lista li:hover { color: #ffffff; }
.sabor-emoji {
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

/* === SECTION 4: CONTATTO === */
.section-contatto { padding: 60px 18px; }
.contatto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  background: var(--dark-bg);
  border: 1px solid var(--white-dim);
  border-radius: 28px;
  padding: 48px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.contatto-info .section-title { text-align: left; margin-bottom: 12px; }
.contatto-desc {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 2.5vw, 15px);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 28px;
}
.contatto-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contatto-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 2.5vw, 15px);
  color: rgba(255,255,255,0.8);
}
.contatto-lista svg { flex-shrink: 0; }
.contatto-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(0,255,255,0.5);
  background: rgba(0,255,255,0.05);
  box-shadow: 0 0 0 3px rgba(0,255,255,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.btn-invia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #00c896, var(--cyan));
  color: #0d1117;
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
  margin-top: 4px;
}
.btn-invia:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(0,255,255,0.5);
  filter: brightness(1.1);
}
.btn-invia:active { transform: scale(0.98); }

/* === FOOTER === */
.footer {
  text-align: center;
  padding: 24px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-accent { color: var(--cyan); }

/* === RESPONSIVE: MÓVIL (≤ 600px) === */
@media (max-width: 600px) {
  body { padding-top: 80px; }

  header {
    top: 10px;
    padding: 12px 20px;
    border-radius: 30px;
  }
  .texto-logo { font-size: clamp(14px, 4.5vw, 20px); }

  .seccion1 {
    flex-direction: column;
    align-items: center;
    padding: 28px 16px;
    text-align: center;
  }
  .hero-contenido { align-items: center; text-align: center; }
  .hero-eyebrow { font-size: 11px; }
  .texto-hero { align-items: center; }
  .sbuf-sin-fondo { width: clamp(130px, 50vw, 200px); }

  .contenedor-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .tarjeta1 { grid-column: 1/2; grid-row: auto; padding: 16px 20px; min-height: 80px; }
  .tarjeta2 { grid-column: 1/2; grid-row: auto; min-height: 90px; }
  .tarjeta3 { grid-column: 1/2; grid-row: auto; padding: 16px 20px; min-height: 80px; }
  .stat-num { font-size: clamp(20px, 6vw, 28px); }
  .stat-big { font-size: clamp(24px, 8vw, 34px); }

  .section3 { padding: 40px 12px 20px; }
  .gusti-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gusto-card { padding: 20px 12px 18px; border-radius: 18px; }

  .contatto-inner { grid-template-columns: 1fr; padding: 28px 20px; gap: 28px; }
  .contatto-info .section-title { text-align: center; }
  .contatto-desc { text-align: center; }
}

/* === RESPONSIVE: TABLET (601px - 900px) === */
@media (min-width: 601px) and (max-width: 900px) {
  .seccion1 { padding: 40px 24px 36px; gap: 16px; }
  .texto-logo { font-size: clamp(16px, 3vw, 24px); }

  .contenedor-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .tarjeta1 { grid-column: 1/2; grid-row: auto; }
  .tarjeta2 { grid-column: 2/3; grid-row: auto; }
  .tarjeta3 { grid-column: 1/3; grid-row: auto; }

  .gusti-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .contatto-inner { grid-template-columns: 1fr; gap: 32px; }
  .contatto-info .section-title { text-align: center; }
  .contatto-desc { text-align: center; }
}