/* ===== VARIABLES ===== */
:root {
  --cream: #FAF7F2;
  --beige: #F0E8DC;
  --beige-dark: #E8D5BE;
  --gold: #C9A96E;
  --gold-dark: #A8854A;
  --brown: #4A3828;
  --brown-dark: #2C2118;
  --text: #4A3728;
  --text-light: #7A6555;
  --white: #FFFFFF;
  --wa-green: #25D366;
  --wa-green-dark: #1DA851;
  --shadow: rgba(44, 33, 24, 0.07);
  --shadow-hover: rgba(44, 33, 24, 0.13);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.25;
  color: var(--brown-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ===== UTILITIES ===== */
.container { width: min(1160px, 92%); margin-inline: auto; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 0.8rem; }
.section-subtitle { color: var(--text-light); max-width: 560px; font-size: 1.05rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }
.divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.4rem;
}
.text-center .divider { margin-inline: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brown-dark);
}
.btn-outline {
  background: transparent;
  color: var(--brown-dark);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
}
.btn-wa:hover {
  background: var(--wa-green-dark);
}
.btn-wa-outline {
  background: transparent;
  color: var(--wa-green-dark);
  border: 2px solid var(--wa-green);
}
.btn-wa-outline:hover {
  background: var(--wa-green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn svg { flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-dark);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-wa {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--wa-green);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.nav-wa:hover { background: var(--wa-green-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown-dark);
  border-radius: 99px;
  transition: all var(--transition);
}
.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); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--beige-dark);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.mobile-nav.open { max-height: 400px; }
.mobile-nav a {
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--beige); color: var(--gold-dark); }
.mobile-nav a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
}
.hero-pattern { display: none; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}
.hero-badge span { font-size: 1rem; }
.hero-title { margin-bottom: 1.2rem; }
.hero-title em {
  font-style: normal;
  color: var(--gold-dark);
  position: relative;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige-dark);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}
.trust-item .icon { font-size: 1.1rem; }
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px var(--shadow);
  border: 1px solid var(--beige-dark);
  max-width: 380px;
  width: 100%;
  position: relative;
}
.hero-card-ornament {
  width: 72px; height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.hero-card h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.hero-card p {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.hero-card-list { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text);
}
.hero-card-item .check {
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.6rem;
  flex-shrink: 0;
}
.hero-card .btn { width: 100%; justify-content: center; }
.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  box-shadow: 0 8px 24px var(--shadow-hover);
  border: 1px solid var(--beige-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  animation: float 3s ease-in-out infinite;
}
.floating-badge:nth-child(2) { animation-delay: 1.5s; }
.badge-top { top: -16px; right: -20px; }
.badge-bottom { bottom: 10px; left: -24px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== VALUE STRIP ===== */
.value-strip {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 1.4rem 0;
}
.value-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--beige);
  font-size: 0.9rem;
  font-weight: 600;
}
.value-item .vi-icon { font-size: 1.2rem; }
.value-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* ===== CATEGORIES ===== */
.categories { padding: 2.5rem 0; }
.categories-header { margin-bottom: 2rem; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px var(--shadow);
  border: 1px solid var(--beige-dark);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-hover);
  border-color: var(--gold);
}
.cat-img {
  height: 160px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.cat-img::after { display: none; }
.cat-icon {
  width: 90px;
  height: 90px;
  filter: invert(60%) sepia(30%) saturate(600%) hue-rotate(5deg) brightness(85%);
}
.inline-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.35rem;
  filter: invert(60%) sepia(30%) saturate(600%) hue-rotate(5deg) brightness(75%);
}
.inline-icon--light {
  filter: brightness(0) invert(1) opacity(0.85);
}

/* ===== CLASES DE ICONOS SVG ===== */

/* Paso a paso (step cards) — 36px dorado */
.icon-step {
  width: 36px; height: 36px;
  display: block;
  filter: invert(60%) sepia(30%) saturate(600%) hue-rotate(5deg) brightness(75%);
}

/* Value props sobre fondo oscuro — 36px blanco */
.icon-dark {
  width: 36px; height: 36px;
  display: block;
  filter: brightness(0) invert(1) opacity(0.85);
}

/* Sobre fondo dorado (hero-card-ornament, cat-sec-icon) — blanco */
.icon-gold-bg {
  width: 30px; height: 30px;
  display: block;
  filter: brightness(0) invert(1) opacity(0.9);
}

/* Info items — 22px dorado */
.icon-info {
  width: 22px; height: 22px;
  display: block;
  filter: invert(60%) sepia(30%) saturate(600%) hue-rotate(5deg) brightness(75%);
}

/* Badge flotante y hero-badge — 14px espresso */
.icon-badge {
  width: 14px; height: 14px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  filter: invert(27%) sepia(18%) saturate(600%) hue-rotate(345deg) brightness(70%);
}

/* Mobile nav — 16px dorado */
.icon-nav {
  width: 16px; height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4rem;
  flex-shrink: 0;
  filter: invert(60%) sepia(30%) saturate(600%) hue-rotate(5deg) brightness(75%);
}

/* Mantener step-icon y vp-icon como flex containers */
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
}
.vp-icon {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}
.cat-body { padding: 1.2rem; }
.cat-body h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.cat-body p { font-size: 0.82rem; color: var(--text-light); }
.cat-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ===== FEATURED PRODUCTS ===== */
.featured { padding: 2.5rem 0; background: var(--cream); }
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px var(--shadow);
  border: 1px solid var(--beige-dark);
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-hover);
  border-color: var(--gold);
}
.product-img {
  aspect-ratio: 3 / 4;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.product-img img { image-orientation: from-image; }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brown-dark);
  color: var(--beige);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-body { padding: 1.3rem; }
.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}
.product-name { font-size: 1rem; margin-bottom: 0.5rem; font-weight: 600; }
.product-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.5; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.product-price span { font-size: 0.82rem; font-weight: 400; color: var(--text-light); }
.btn-consultar {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--wa-green);
  color: white;
  padding: 0.55rem 1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-consultar:hover {
  background: var(--wa-green-dark);
}

/* ===== HOW TO BUY ===== */
.how-to-buy { padding: 2.5rem 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 32px); right: calc(12.5% + 32px);
  height: 1px;
  background: var(--beige-dark);
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: 0 1px 3px var(--shadow);
  border: 1px solid var(--beige-dark);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-hover);
  border-color: var(--gold);
}
.step-num {
  width: 64px; height: 64px;
  background: var(--brown-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.2rem;
}
.step-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.how-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ===== VALUE PROPS ===== */
.value-props { padding: 2.5rem 0; background: var(--brown-dark); }
.vp-header { margin-bottom: 2rem; }
.vp-header .section-label { color: var(--gold); }
.vp-header .section-title { color: var(--white); }
.vp-header .section-subtitle { color: rgba(255,255,255,0.7); }
.vp-header .divider { background: linear-gradient(90deg, var(--gold), #E8B96A); }
.vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.vp-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: all var(--transition);
}
.vp-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.vp-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.vp-card h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.6rem; }
.vp-card p { color: rgba(255,255,255,0.72); font-size: 0.88rem; line-height: 1.65; }

/* ===== CONTACT ===== */
.contact { padding: 2.5rem 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--beige-dark);
}
.contact-info-block h2 { margin-bottom: 0.5rem; }
.contact-info-block > p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 2rem; }
.info-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-icon {
  width: 44px; height: 44px;
  background: var(--beige);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-text strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); margin-bottom: 0.15rem; }
.info-text span { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.contact-ctas { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-ctas .btn { justify-content: center; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--beige-dark);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}
.map-label {
  background: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--beige-dark);
}
.map-label .pin { font-size: 1.3rem; }
.map-label span { font-size: 0.88rem; color: var(--text-light); }
.map-label strong { display: block; font-size: 0.95rem; color: var(--text); }

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--wa-green);
  color: white;
  padding: 0.9rem 1.4rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.wa-float:hover {
  background: var(--wa-green-dark);
  transform: scale(1.05);
  animation: none;
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-brand .logo-main { color: var(--beige); }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
}
.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* En tablet el hero no debe ocupar 100vh — evita espacios vacíos */
  .hero { min-height: auto; align-items: flex-start; padding-bottom: 2.5rem; }
  .hero-inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-wa { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 0; }
  .hero-image { order: -1; }
  .hero-card { max-width: 100%; }
  .badge-top { right: 0; }
  .badge-bottom { left: 0; }
  .hero-trust { flex-wrap: wrap; gap: 1rem; }

  .value-strip-inner { gap: 1.2rem; }
  .value-sep { display: none; }

  .categories, .featured, .how-to-buy, .value-props, .contact { padding: 2.5rem 0; }
  .categories-header, .vp-header { margin-bottom: 1.5rem; }
  .featured-header { margin-bottom: 1.5rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); margin-top: 1.5rem; }
  .steps-grid::before { display: none; }
  .how-cta { margin-top: 2rem; }

  .vp-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .wa-float span { display: none; }
  .wa-float { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
}
