/* ==============================================
   LUMA — Identidad de marca real
   Paleta: navy + cyan + lime + naranja
   ============================================== */

:root {
  --navy: #0A2548;
  --navy-dark: #061935;
  --navy-light: #163A6E;
  --cyan: #00B7E5;
  --cyan-light: #4FD0F0;
  --lime: #A8D029;
  --lime-dark: #8AB220;
  --orange: #F47B20;
  --orange-light: #FF9347;
  --purple: #5B4B9F;

  --text: #1F2937;
  --text-light: #6B7280;
  --bg: #FFFFFF;
  --bg-soft: #F4F8FB;
  --bg-section: #F9FBFD;
  --border: #E5E7EB;

  --shadow-soft: 0 4px 20px rgba(10, 37, 72, 0.08);
  --shadow-hover: 0 18px 50px rgba(10, 37, 72, 0.18);
  --shadow-card: 0 8px 30px rgba(10, 37, 72, 0.10);

  --gradient-hero: linear-gradient(135deg, #0A2548 0%, #163A6E 45%, #00B7E5 100%);
  --gradient-cta: linear-gradient(135deg, #00B7E5 0%, #0A2548 100%);
  --gradient-lime: linear-gradient(135deg, #A8D029 0%, #00B7E5 100%);
  --gradient-orange: linear-gradient(135deg, #F47B20 0%, #FF9347 100%);

  --radius: 14px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: 'Fredoka', 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TOPBAR informativa ============ */
.topbar {
  background: var(--navy);
  color: white;
  font-size: .82rem;
  padding: 8px 24px;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar a {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover { color: var(--lime); }
.topbar-right { display: flex; gap: 18px; }
@media (max-width: 700px) {
  .topbar-right { gap: 12px; }
  .topbar-hide-mobile { display: none; }
}

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo-link {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
}
.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(244,123,32,0.35);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--orange-light);
  box-shadow: 0 10px 22px rgba(244,123,32,0.45);
}

.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--navy);
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 100px;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    transform: translateY(-150%);
    transition: transform .3s;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: block; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font-size: .98rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 22px rgba(244,123,32,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  color: white;
  background: var(--orange-light);
  box-shadow: 0 12px 28px rgba(244,123,32,0.45);
}
.btn-secondary {
  background: white;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-ghost:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 22px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  color: white;
  transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 24px 110px;
  overflow: hidden;
  background: var(--gradient-hero);
  color: white;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(168,208,41,0.18) 0, transparent 35%),
    radial-gradient(circle at 88% 70%, rgba(0,183,229,0.25) 0, transparent 40%);
}
.hero-swoosh {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  opacity: 0.15;
}
.hero-swoosh::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 80%;
  height: 200px;
  border-radius: 50%;
  border: 80px solid var(--cyan-light);
  transform: rotate(-15deg);
  opacity: 0.3;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-tag .dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; }
.hero h1 {
  color: white;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  margin-bottom: 22px;
  line-height: 1.05;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #A8D029 0%, #00B7E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transform: rotate(-3deg);
  position: relative;
  max-width: 380px;
  width: 100%;
}
.hero-product-card::before {
  content: '';
  position: absolute;
  inset: -15px;
  background: var(--lime);
  border-radius: 30px;
  z-index: -1;
  transform: rotate(6deg);
  opacity: 0.4;
}
.hero-product-card img {
  width: 100%;
  border-radius: 12px;
}
.hero-product-card .product-info {
  margin-top: 14px;
  text-align: center;
}
.hero-product-card h3 { font-size: 1.05rem; color: var(--navy); }
.hero-product-card p { font-size: .85rem; color: var(--text-light); margin-top: 2px; }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}

/* Trust strip */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 22px 24px;
}
.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.trust-item .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
}
.trust-item-text {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item-text span { display: block; font-weight: 400; color: var(--text-light); font-size: .78rem; }
@media (max-width: 800px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 90px 24px;
}
.section-alt { background: var(--bg-soft); }
.section-dark {
  background: var(--navy);
  color: white;
}
.section-dark h2 { color: white; }
.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-title .tag {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .82rem;
  margin-bottom: 14px;
}
.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}
.section-dark .section-title p { color: rgba(255,255,255,0.85); }

/* ============ CATEGORY GRID ============ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.category-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}
.category-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--accent, var(--cyan));
}
.category-card.c-trash { --accent: linear-gradient(90deg, #0A2548, #163A6E); }
.category-card.c-cutlery { --accent: linear-gradient(90deg, #00B7E5, #4FD0F0); }
.category-card.c-plates { --accent: linear-gradient(90deg, #A8D029, #8AB220); }
.category-card.c-bowls { --accent: linear-gradient(90deg, #F47B20, #FF9347); }
.category-card.c-sandwich { --accent: linear-gradient(90deg, #F47B20, #00B7E5); }
.category-card.c-slider { --accent: linear-gradient(90deg, #5B4B9F, #00B7E5); }
.category-card.c-freezer { --accent: linear-gradient(90deg, #00B7E5, #0A2548); }
.category-card.c-foil { --accent: linear-gradient(90deg, #6B7280, #A8D029); }
.category-card.c-paper { --accent: linear-gradient(90deg, #00B7E5, #A8D029); }
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.category-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  background: var(--bg-soft);
  color: var(--navy);
}
.category-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.category-card p { color: var(--text-light); font-size: .9rem; }

/* ============ FEATURES ============ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.feature {
  text-align: left;
  padding: 28px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: white;
}
.feature:nth-child(1) .feature-icon { background: var(--gradient-cta); }
.feature:nth-child(2) .feature-icon { background: var(--gradient-lime); }
.feature:nth-child(3) .feature-icon { background: var(--gradient-orange); }
.feature:nth-child(4) .feature-icon { background: linear-gradient(135deg, #5B4B9F, #00B7E5); }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--text-light); font-size: .95rem; }

/* ============ PRODUCT GRID ============ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: white;
  border: 2px solid var(--border);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  font-size: .9rem;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-image {
  background: var(--bg-soft);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  position: relative;
}
.product-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* Placeholder de producto sin imagen (con marca) */
.product-image.placeholder {
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  flex-direction: column;
  gap: 8px;
}
.product-image.placeholder .ph-line {
  font-family: 'Fredoka', 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -1px;
  color: white;
  font-style: italic;
}
.product-image.placeholder .ph-sub {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-image.placeholder.theme-orange { background: var(--gradient-orange); }
.product-image.placeholder.theme-lime { background: var(--gradient-lime); }
.product-image.placeholder.theme-purple { background: linear-gradient(135deg, #5B4B9F, #00B7E5); }
.product-image.placeholder.theme-cyan { background: var(--gradient-cta); }

.product-info { padding: 20px; }
.product-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  background: var(--bg-soft);
  color: var(--navy);
}
.tag-trash { background: #E0E7F1; color: var(--navy); }
.tag-sandwich { background: #FFEBD9; color: var(--orange); }
.tag-slider { background: #E8E2F5; color: var(--purple); }
.tag-freezer { background: #D0F0F8; color: #007BA0; }
.tag-foil { background: #F3F5E8; color: #5C7A0F; }
.tag-paper { background: #D9F1FA; color: var(--cyan); }
.tag-cutlery { background: #D0F0F8; color: #007BA0; }
.tag-plates { background: #F0F6D9; color: #5C7A0F; }

.product-card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.product-card .product-desc {
  color: var(--text-light);
  font-size: .88rem;
}
.product-card .product-code {
  display: inline-block;
  margin-top: 10px;
  font-size: .75rem;
  color: var(--text-light);
  font-family: 'Courier New', monospace;
  background: var(--bg-soft);
  padding: 3px 10px;
  border-radius: 6px;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--lime);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.product-badge.bg-orange { background: var(--orange); color: white; }

/* Category section heading inside productos page */
.category-header {
  text-align: center;
  margin: 60px 0 32px;
  position: relative;
}
.category-header h2 {
  display: inline-block;
  font-size: 1.7rem;
  padding: 0 24px;
  background: white;
  position: relative;
  z-index: 1;
}
.section-alt .category-header h2 { background: var(--bg-soft); }
.category-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.category-header .emoji { color: var(--cyan); margin-right: 8px; }

/* ============ ABOUT ============ */
.about-hero {
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  padding: 100px 24px 110px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 380px; height: 380px;
  background: var(--lime);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.about-hero h1 {
  color: white;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.about-hero p {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.story-image {
  background: var(--gradient-cta);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.story-image::after {
  content: '';
  position: absolute;
  top: 30px; right: 30px;
  width: 60px;
  height: 60px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.4;
}
.story-content h2 { font-size: 2.2rem; margin-bottom: 18px; }
.story-content p { margin-bottom: 16px; font-size: 1.05rem; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--border);
}
.story-stat .number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.story-stat .label {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 4px solid var(--cyan);
}
.value-card:nth-child(2) { border-top-color: var(--lime); }
.value-card:nth-child(3) { border-top-color: var(--orange); }
.value-card:nth-child(4) { border-top-color: var(--purple); }
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: .95rem; }
.value-emoji { font-size: 2.2rem; margin-bottom: 12px; }
.value-emoji svg { width: 46px; height: 46px; }

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

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info-card {
  background: var(--gradient-hero);
  color: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.15;
}
.contact-info-card h2 { color: white; font-size: 1.8rem; margin-bottom: 16px; position: relative; }
.contact-info-card > p { opacity: 0.92; margin-bottom: 32px; position: relative; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
  position: relative;
}
.contact-item-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.contact-item-text strong {
  display: block;
  margin-bottom: 2px;
  font-size: .82rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.contact-item-text a, .contact-item-text span {
  color: white;
  font-weight: 500;
}
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.contact-socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background .2s, transform .2s;
  font-weight: 700;
}
.contact-socials a:hover {
  background: var(--lime);
  color: var(--navy);
  transform: translateY(-2px);
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.contact-form h2 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form .subtitle { color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: .98rem;
  transition: border-color .2s;
  background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--cyan);
}
.form-group textarea { resize: vertical; min-height: 130px; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form { padding: 30px; }
}

/* ============ WhatsApp flotante ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  box-shadow: 0 8px 22px rgba(37,211,102,0.4);
  z-index: 99;
  transition: transform .2s;
  animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: white; }
@keyframes pulse {
  0% { box-shadow: 0 8px 22px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 22px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 22px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}
.cta-section h2 {
  color: white;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 620px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-section .cta-actions {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-dark);
  color: #C5CBD5;
  padding: 60px 24px 24px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: .92rem; color: #9CA3AF; max-width: 320px; }
.footer-distrib {
  margin-top: 16px;
  font-size: .82rem;
  color: #9CA3AF;
  padding-top: 14px;
  border-top: 1px solid #1F3556;
}
.footer-distrib strong { color: white; }
.footer h4 {
  color: white;
  font-size: .98rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: #9CA3AF;
  font-size: .92rem;
}
.footer ul a:hover { color: var(--lime); }
.footer-bottom {
  max-width: 1240px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1F3556;
  text-align: center;
  font-size: .82rem;
  color: #9CA3AF;
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ============ MODAL DE PRODUCTO ============ */
.product-card[data-product] { cursor: pointer; }
.product-card[data-product]::after {
  content: '👁️ Ver detalle';
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--navy);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.product-card[data-product] { position: relative; }
.product-card[data-product]:hover::after { opacity: 0.95; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 72, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform .3s;
}
.modal-overlay.open .modal-content { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--navy);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background .2s, transform .2s;
}
.modal-close:hover { background: var(--navy); color: white; transform: rotate(90deg); }

.modal-image-wrap {
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 360px;
}
.modal-img { max-width: 100%; max-height: 360px; object-fit: contain; }

.modal-body {
  padding: 40px;
}
.modal-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  background: var(--bg-soft);
  color: var(--navy);
}
.modal-title {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.modal-desc {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 22px;
  line-height: 1.5;
}
.modal-section-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin: 22px 0 12px;
}
.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 6px;
}
.spec-item {
  background: var(--bg-soft);
  padding: 12px 14px;
  border-radius: 10px;
  border-left: 3px solid var(--cyan);
}
.spec-item strong {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-light);
  margin-bottom: 3px;
  font-weight: 700;
}
.spec-item span {
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
}
.modal-features {
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}
.modal-features li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--text);
  font-size: .95rem;
}
.modal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--lime);
  color: var(--navy);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-code {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  background: var(--bg-soft);
  padding: 5px 12px;
  border-radius: 6px;
  color: var(--text-light);
  margin-bottom: 18px;
}
.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.modal-actions .btn { flex: 1; min-width: 160px; }

@media (max-width: 760px) {
  .modal-content { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-image-wrap { min-height: 240px; padding: 24px; }
  .modal-body { padding: 28px; }
}

/* ============ COMING SOON SECTION ============ */
.coming-soon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--lime);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}
.coming-soon::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}
.coming-soon-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.coming-soon .badge {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-weight: 800;
  font-size: .85rem;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.coming-soon h2 {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 18px;
  line-height: 1.15;
}
.coming-soon h2 .highlight {
  background: linear-gradient(135deg, #A8D029 0%, #00B7E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.coming-soon p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.coming-soon-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}
.coming-soon-tile {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform .3s, background .3s;
}
.coming-soon-tile:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.14);
}
.coming-soon-tile .emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.coming-soon-tile .name {
  font-weight: 700;
  font-size: .9rem;
  color: white;
}
.coming-soon-tile .soon {
  display: inline-block;
  margin-top: 6px;
  font-size: .7rem;
  background: var(--orange);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============ LEVEL DISTRIBUIDOR ============ */
.level-strip {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.level-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.level-strip-text {
  font-size: .92rem;
  color: var(--text-light);
}
.level-strip-text strong {
  color: var(--navy);
  font-weight: 700;
}
.level-strip img {
  height: 36px;
  width: auto;
}
.footer-level {
  margin-top: 14px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: inline-block;
}
.footer-level img {
  height: 32px;
  width: auto;
}

/* ===== Logo en hero "Somos LUMA" ===== */
.about-hero-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}
.about-hero-logo{
  height:1.15em;
  width:auto;
  display:inline-block;
  vertical-align:middle;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.25));
}
@media (max-width:600px){
  .about-hero-title{gap:10px;}
}

/* ===== Foto real en tarjetas de categoría ===== */
.category-photo{
  width:120px;
  height:120px;
  border-radius:50%;
  margin:0 auto 20px;
  overflow:hidden;
  background:var(--bg-soft);
  box-shadow:0 6px 18px rgba(13,42,77,.12);
  border:3px solid #fff;
}
.category-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ===== Código de barras en la ficha de producto ===== */
.modal-barcode{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid var(--border);
  text-align:center;
}
.modal-barcode-img{
  max-width:220px;
  width:100%;
  height:auto;
  margin:0 auto 4px;
  display:block;
}
.modal-barcode-num{
  font-family:'Courier New', monospace;
  font-size:.8rem;
  letter-spacing:1px;
  color:var(--text-light);
}

/* ===== Tamaño/color de íconos SVG (reemplazo de emojis) ===== */
.hamburger svg{ width:26px; height:26px; }
.contact-item-icon{ color:#fff; }
.contact-item-icon svg{ width:20px; height:20px; }
.contact-socials a svg{ width:18px; height:18px; }
.trust-item .icon svg{ width:22px; height:22px; }
.feature-icon svg{ width:28px; height:28px; }
.category-header .emoji{ display:inline-flex; vertical-align:middle; }
.category-header .emoji svg{ width:26px; height:26px; }
.modal-close svg{ width:20px; height:20px; }
.whatsapp-float svg{ width:26px; height:26px; color:#fff; }

/* ===== Subcategoría (Con/Sin amarre) ===== */
.subcat{
  max-width:1240px;
  margin:8px auto 18px;
  padding:0 24px;
  font-family:'Fredoka','Poppins',sans-serif;
  font-size:1.15rem;
  font-weight:600;
  color:var(--navy);
  display:flex;
  align-items:center;
  gap:10px;
}
.subcat::before{
  content:'';
  width:22px; height:3px; border-radius:2px;
  background:var(--cyan);
}

/* ===== Link de mapa en footer ===== */
.footer-map{ color:inherit; text-decoration:none; }
.footer-map:hover{ color:var(--lime); }

/* ===== Instagram inline + logo distribuidor ===== */
.ig-inline{ width:15px; height:15px; vertical-align:-3px; margin-right:2px; }
.footer-distribuidor{ text-align:center; margin-top:28px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12); }
.footer-distribuidor span{ display:block; font-size:.78rem; letter-spacing:1.5px; text-transform:uppercase; opacity:.7; margin-bottom:12px; }
.footer-distribuidor img{ height:42px; width:auto; display:inline-block; background:#fff; padding:8px 16px; border-radius:10px; }

/* ===== Banda de descarga de catálogo ===== */
.catalog-band{
  max-width:1000px;
  margin:0 auto;
  background:var(--gradient-hero);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:36px 44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  box-shadow:var(--shadow-card);
  flex-wrap:wrap;
}
.catalog-band-text h2{ color:#fff; margin-bottom:6px; }
.catalog-band-text p{ opacity:.9; margin:0; max-width:520px; }
@media (max-width:700px){
  .catalog-band{ flex-direction:column; text-align:center; padding:30px 24px; }
}

/* ===== Ajustes para teléfonos (≤600px) — escala proporcionada ===== */
@media (max-width: 600px) {
  .section { padding: 50px 20px; }
  .hero { padding: 44px 20px 56px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .about-hero { padding: 60px 20px 64px; }
  .about-hero h1, .about-hero-title { font-size: 1.9rem; }
  .about-hero p { font-size: 1rem; }
  .section-title h2 { font-size: 1.6rem; }
  .section-title p { font-size: 1rem; }
  .story-content h2 { font-size: 1.6rem; }
  .story-content p { font-size: 1rem; }
  .cta-section, .coming-soon { padding: 52px 20px; }
  .cta-section h2, .coming-soon h2 { font-size: 1.55rem; }
  .coming-soon-inner h2, .coming-soon h2 { font-size: 1.55rem; }
  .catalog-band-text h2 { font-size: 1.45rem; }
  .feature h3, .category-card h3 { font-size: 1.08rem; }
  .btn { padding: 12px 22px; font-size: .92rem; }
  .subcat { font-size: 1.05rem; }
}
