/* =============================================
   MARRCLEAN — Design System v2.0
   Style: Vibrant Block-based + Dimensional Layering
   Fonts: Rubik (headings) + Nunito Sans (body)
   Pattern: Funnel Conversion — UI/UX Pro Max
   ============================================= */

/* ── DESIGN TOKENS ──────────────────────────────── */
:root {
  /* Brand */
  --green:       #0aa06e;
  --green-dark:  #078a5f;
  --green-deep:  #055c42;
  --green-light: #d1fae5;
  --green-glow:  rgba(10,160,110,0.25);
  --blue:        #2ca3d7;
  --blue-dark:   #1e7fab;
  --blue-light:  #dbeafe;
  --blue-glow:   rgba(44,163,215,0.25);

  /* Neutrals */
  --dark:        #0a1628;
  --dark-2:      #0f2040;
  --gray:        #5a6a7e;
  --gray-light:  #94a3b8;
  --light:       #f4f7fc;
  --light-2:     #eef3fb;
  --white:       #ffffff;
  --border:      #e0e8f4;
  --border-2:    #c8d8f0;

  /* Accents */
  --amber:       #f59e0b;
  --amber-light: #fef3c7;
  --red:         #ef4444;

  /* Shadows — Dimensional Layering */
  --shadow-xs:  0 1px 3px rgba(10,22,40,0.08);
  --shadow-sm:  0 4px 12px rgba(10,22,40,0.10);
  --shadow-md:  0 8px 28px rgba(10,22,40,0.13);
  --shadow-lg:  0 20px 56px rgba(10,22,40,0.18);
  --shadow-xl:  0 32px 80px rgba(10,22,40,0.24);
  --shadow-green: 0 12px 40px rgba(10,160,110,0.30);
  --shadow-blue:  0 12px 40px rgba(44,163,215,0.30);

  /* Radii */
  --r-xs:  8px;
  --r-sm:  12px;
  --r:     18px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill:50px;

  /* Transitions — 200-300ms per UI Pro Max */
  --ease:     cubic-bezier(0.4,0,0.2,1);
  --ease-out: cubic-bezier(0,0,0.2,1);
  --t-fast: all 0.18s var(--ease);
  --t:      all 0.25s var(--ease);
  --t-slow: all 0.35s var(--ease-out);

  /* Spacing — 8pt grid */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  48px;
  --sp-xl:  80px;

  /* Typography — Rubik + Nunito Sans */
  --font-head: 'Rubik', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

/* ── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
}
a { cursor: pointer; }
img { max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ── ANNOUNCEMENT BAR ───────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--green) 40%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.announcement-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  animation: shimmerBar 3s linear infinite;
}
@keyframes shimmerBar {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.announcement-bar a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar-marrclean {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(10,22,40,0.06);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--t);
}
.navbar-brand span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}
.navbar-brand .marr { color: var(--dark); }
.navbar-brand .clean { color: var(--green); }
.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green) !important;
  background: var(--green-light);
}
.btn-nav-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white) !important;
  border-radius: var(--r-pill) !important;
  padding: 9px 20px !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  transition: var(--t) !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3) !important;
}
.btn-nav-whatsapp:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45) !important;
}

/* ── HERO ───────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(10,160,110,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(44,163,215,0.14) 0%, transparent 60%),
    linear-gradient(160deg, #f4f9ff 0%, #edfaf4 50%, #f0f8ff 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0 60px;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(10,160,110,0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='30' stroke='%230aa06e' stroke-opacity='0.04' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 80px 80px;
  animation: bgMove 25s linear infinite;
  pointer-events: none;
}
@keyframes bgMove {
  0%   { background-position: center, 0 0; }
  100% { background-position: center, 80px 80px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--green-light), #e0faf2);
  color: var(--green-deep);
  border: 1.5px solid rgba(10,160,110,0.25);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  animation: fadeInDown 0.5s var(--ease-out) both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, #06d6a0 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.08rem;
  color: var(--gray);
  margin-bottom: 2.2rem;
  max-width: 520px;
  line-height: 1.7;
  animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}
.hero-ctas { animation: fadeInUp 0.6s var(--ease-out) 0.3s both; }
.hero-stats {
  animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.hero-stat .lbl { font-size: 0.72rem; color: var(--gray); font-weight: 600; margin-top: 2px; }
.hero-img-wrap {
  position: relative;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-18px); }
}
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: bubbleFloat ease-in-out infinite;
}
.hero-bubble-1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(10,160,110,0.12), rgba(10,160,110,0.02));
  top: -80px; right: -80px;
  animation-duration: 9s;
  border: 1px solid rgba(10,160,110,0.12);
}
.hero-bubble-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(44,163,215,0.15), rgba(44,163,215,0.02));
  bottom: 20px; right: 60px;
  animation-duration: 7s;
  animation-delay: 2s;
  border: 1px solid rgba(44,163,215,0.12);
}
.hero-bubble-3 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(245,158,11,0.15), transparent);
  top: 40px; left: -20px;
  animation-duration: 5s;
  animation-delay: 1s;
}
@keyframes bubbleFloat {
  0%,100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.08) rotate(5deg); }
}

/* ── HERO VISUAL SHOWCASE ───────────────────────── */
.hero-visual {
  position: relative;
  width: 420px;
  height: 510px;
}
.hero-card-main {
  position: absolute;
  top: 16px; left: 20px;
  width: 300px;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border);
  animation: float 7s ease-in-out infinite;
  z-index: 2;
}
.hero-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.hero-card-badge {
  background: var(--amber-light);
  color: #92400e;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-pill);
}
.hero-card-icon-wrap {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--green-light), #dbeafe);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  color: var(--blue);
  margin: 14px 0 10px;
  box-shadow: 0 4px 16px rgba(44,163,215,0.18);
}
.hero-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.hero-card-sub {
  font-size: 0.7rem;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.5;
}
.hero-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.hero-card-price {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.hero-card-unit { font-size: 0.72rem; color: var(--gray-light); font-weight: 600; }
.hero-card-sizes { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-size-pill {
  background: var(--light-2);
  border: 1px solid var(--border-2);
  color: var(--gray);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-pill);
}
.hero-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-body);
  transition: var(--t);
  box-shadow: 0 4px 14px rgba(37,211,102,0.32);
}
.hero-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.48);
  color: var(--white);
}
.hero-stat-bubble {
  position: absolute;
  background: var(--white);
  border-radius: var(--r);
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  z-index: 3;
  font-size: 1.1rem;
}
.hb-1 { top: 0; right: 0; animation: float 6s ease-in-out 1s infinite; }
.hb-2 { bottom: 130px; right: 0; animation: float 8s ease-in-out 0.5s infinite; }
.hero-card-secondary {
  position: absolute;
  bottom: 20px; left: 0;
  width: 350px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  z-index: 3;
  animation: float 9s ease-in-out 2s infinite;
}
.hero-sec-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-light), #d1fae5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}
.hero-lines-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.hero-line-chip {
  background: var(--light-2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── TRUST BAR ───────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
}
.trust-bar-item + .trust-bar-item { border-left: 1px solid var(--border); }
.trust-bar-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-bar-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.1;
}
.trust-bar-lbl { font-size: 0.72rem; color: var(--gray); font-weight: 600; }

/* ── CATEGORY CARDS (icon version) ─────────────── */
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--t);
  text-decoration: none;
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  opacity: 0;
  transition: opacity 0.25s;
}
.cat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
  text-decoration: none;
}
.cat-card:hover::after { opacity: 1; }
.cat-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
  transition: var(--t);
}
.cat-card:hover .cat-icon { transform: scale(1.12) rotate(-6deg); }
.cat-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.cat-brand { font-size: 0.72rem; color: var(--gray); }

/* ── BUTTONS ────────────────────────────────────── */
.btn-primary-mc {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--r-pill);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(10,160,110,0.28);
  position: relative;
  overflow: hidden;
}
.btn-primary-mc::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary-mc:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(10,160,110,0.42);
  color: var(--white);
}
.btn-primary-mc:hover::before { opacity: 1; }
.btn-primary-mc:active { transform: translateY(-1px); }

.btn-secondary-mc {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: var(--r-pill);
  padding: 12px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary-mc:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.btn-whatsapp-mc {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border: none;
  border-radius: var(--r-pill);
  padding: 12px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.btn-whatsapp-mc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  color: var(--white);
}

.btn-outline-mc {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border-2);
  border-radius: var(--r-pill);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-mc:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

/* ── FOCUS STATES (Accessibility) ───────────────── */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── SECTION SYSTEM ─────────────────────────────── */
.py-section { padding: var(--sp-xl) 0; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-deep);
  padding: 5px 16px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.section-title span { color: var(--green); }
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BENEFIT CARDS (Block-based) ────────────────── */
.benefit-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: var(--t);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.benefit-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: var(--t);
}
.benefit-card:hover .benefit-icon { transform: scale(1.1) rotate(-5deg); }
.benefit-card h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.benefit-card p { font-size: 0.85rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ── PRODUCT CARDS — Dimensional Layering ───────── */
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px) scale(1.01);
}
.product-card-img-wrap {
  position: relative;
  background: linear-gradient(135deg, #f0fdf8, #e8f4fd);
  height: 210px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(10,160,110,0.35);
}
.product-card-body {
  padding: 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--green);
}
.product-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.product-card-desc {
  font-size: 0.8rem;
  color: var(--gray);
  flex: 1;
  line-height: 1.55;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 4px;
}
.product-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.product-price-label { font-size: 0.72rem; color: var(--gray-light); font-weight: 600; }
.product-size-selector { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.size-btn {
  padding: 4px 12px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
  color: var(--gray);
  transition: var(--t-fast);
  font-family: var(--font-body);
}
.size-btn:hover { border-color: var(--green); color: var(--green-dark); background: var(--green-light); }
.size-btn.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(10,160,110,0.3);
}
.product-card-footer { margin-top: auto; display: flex; gap: 8px; }
.btn-add-whatsapp {
  flex: 1;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border: none;
  border-radius: var(--r-pill);
  padding: 11px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  box-shadow: 0 2px 10px rgba(37,211,102,0.25);
}
.btn-add-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  color: var(--white);
}

/* ── QR BUTTON ──────────────────────────────────── */
.btn-qr-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border-2);
  background: var(--white);
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--t-fast);
  flex-shrink: 0;
  text-decoration: none;
}
.btn-qr-card:hover {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(10,160,110,0.2);
}

/* ── QR MODAL ───────────────────────────────────── */
.qr-modal-img-wrap {
  background: var(--white);
  border-radius: var(--r);
  border: 2px solid var(--green-light);
  padding: 16px;
  display: inline-block;
  box-shadow: var(--shadow-md);
}
.qr-modal-img-wrap img { display: block; width: 220px; height: 220px; }
.qr-modal-skeleton {
  width: 220px; height: 220px;
  background: linear-gradient(90deg, var(--light) 25%, var(--border) 50%, var(--light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}

/* ── FILTER TABS ────────────────────────────────── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-tab {
  padding: 9px 20px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
  color: var(--gray);
  transition: var(--t-fast);
  font-family: var(--font-body);
  box-shadow: var(--shadow-xs);
}
.filter-tab:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}
.filter-tab.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,160,110,0.3);
}

/* ── FEATURED PRODUCT ───────────────────────────── */
.featured-product-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, #0a3a28 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.featured-product-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(44,163,215,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(10,160,110,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.featured-badge {
  background: linear-gradient(135deg, var(--amber), #d97706);
  color: var(--white);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}

/* ── FULLCLEAN LINE CARDS ───────────────────────── */
.fullclean-line-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  transition: var(--t);
  cursor: default;
}
.fullclean-line-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(10,160,110,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.flc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px;
  transition: var(--t);
}
.fullclean-line-card:hover .flc-icon { transform: scale(1.1) rotate(-5deg); }
.flc-name { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--white); margin-bottom: 3px; }
.flc-sub  { font-size: 0.68rem; color: #94a3b8; margin-bottom: 8px; }
.flc-price { font-family: var(--font-head); font-weight: 800; color: var(--green); font-size: 0.95rem; }

/* ── COVERAGE SECTION ───────────────────────────── */
.coverage-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 50%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.coverage-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E") center/60px 60px;
}
.coverage-stat { padding: 20px; text-align: center; }
.coverage-stat .num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.coverage-stat .lbl { font-size: 0.85rem; opacity: 0.88; margin-top: 4px; font-weight: 600; }

/* ── WHOLESALE BAND ─────────────────────────────── */
.mayoreo-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.mayoreo-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,160,110,0.12), transparent);
  pointer-events: none;
}
.mayoreo-band .accent { color: var(--amber); }

/* ── TESTIMONIALS ───────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--green-light);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green);
  transform: translateY(-4px);
}
.stars { color: var(--amber); font-size: 0.88rem; margin-bottom: 12px; display: flex; gap: 3px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; }
.author-role { font-size: 0.75rem; color: var(--gray); }

/* ── BLOG CARD ──────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--green); }
.blog-card-img {
  height: 190px;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,22,40,0.08) 100%);
}
.blog-card-body { padding: 22px; }
.blog-date { font-size: 0.72rem; color: var(--gray); margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.blog-title a { text-decoration: none; color: var(--dark); }
.blog-title a:hover { color: var(--green); }
.blog-excerpt { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }

/* ── CONTACT ────────────────────────────────────── */
.contact-section { background: var(--light); }
.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.72rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-value { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.form-control-mc {
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--t-fast);
  width: 100%;
  background: var(--white);
  color: var(--dark);
}
.form-control-mc:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10,160,110,0.12);
}

/* ── FOOTER TRUST STRIP ─────────────────────────── */
.footer-trust-strip {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-light);
}
.footer-trust-item i {
  font-size: 1.4rem;
  color: var(--green);
  flex-shrink: 0;
}
.footer-trust-title { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--white); }
.footer-trust-sub   { font-size: 0.72rem; color: var(--gray-light); }

/* ── FOOTER MINI STATS ──────────────────────────── */
.footer-mini-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-mini-stat { text-align: center; }
.fms-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--green); line-height: 1; }
.fms-lbl { font-size: 0.68rem; color: var(--gray-light); margin-top: 2px; }

/* ── FOOTER LINKS WITH ICONS ─────────────────────── */
.footer-links a i { font-size: 0.72rem; opacity: 0.6; margin-right: 2px; }
.footer-contact-item a { color: #94a3b8; text-decoration: none; transition: var(--t-fast); }
.footer-contact-item a:hover { color: var(--green); }
.footer-bottom a { color: #94a3b8; text-decoration: none; font-size: 0.78rem; transition: var(--t-fast); }
.footer-bottom a:hover { color: var(--green); }

/* ── FOOTER ─────────────────────────────────────── */
.footer-main {
  background: linear-gradient(160deg, #08101e 0%, #0a1628 60%, #0d1f35 100%);
  color: var(--gray-light);
  padding: 72px 0 24px;
  position: relative;
  overflow: hidden;
}
.footer-main::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10,160,110,0.07), transparent);
  pointer-events: none;
}
.footer-brand .marr { color: var(--white); }
.footer-brand .clean { color: var(--green); }
.footer-desc { font-size: 0.85rem; margin: 14px 0 22px; line-height: 1.7; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gray-light);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--t-fast);
  margin-right: 8px;
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(10,160,110,0.35);
}
.footer-heading { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-links a:hover { color: var(--green); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
}

/* ── FLOATING BUTTONS ───────────────────────────── */
.fab-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--t);
  box-shadow: var(--shadow-md);
  position: relative;
}
.fab-btn:hover { transform: scale(1.12); }
.fab-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
.fab-call {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(44,163,215,0.4);
}
.fab-label {
  background: var(--dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--t-fast);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}
.fab-item:hover .fab-label { opacity: 1; transform: translateX(0); }
.fab-item { display: flex; align-items: center; gap: 10px; }

/* ── SEARCH BAR ─────────────────────────────────── */
.search-bar-wrap { position: relative; max-width: 500px; margin: 0 auto 2.5rem; }
.search-bar-wrap input {
  width: 100%;
  padding: 15px 56px 15px 22px;
  border: 2px solid var(--border-2);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--t-fast);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}
.search-bar-wrap input:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10,160,110,0.12), var(--shadow-sm);
}
.search-bar-wrap button {
  position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  background: var(--green);
  color: var(--white);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--t-fast);
  display: flex; align-items: center; justify-content: center;
}
.search-bar-wrap button:hover { background: var(--green-dark); transform: translateY(-50%) scale(1.08); }

/* ── TOAST ──────────────────────────────────────── */
.toast-mc {
  position: fixed;
  bottom: 110px; right: 24px;
  z-index: 9999;
  background: var(--dark);
  color: var(--white);
  padding: 13px 22px;
  border-radius: var(--r);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: none;
  animation: fadeInUp 0.25s var(--ease-out);
}
.toast-mc.show { display: block; }
.toast-mc.success { background: var(--green); }

/* ── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.fade-in-up { animation: fadeInUp 0.6s var(--ease-out) both; }

/* ── SKELETON ───────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--light) 25%, var(--border) 50%, var(--light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}

/* ── UTILITIES ──────────────────────────────────── */
.text-green  { color: var(--green) !important; }
.text-blue   { color: var(--blue)  !important; }
.bg-green-light { background: var(--green-light); }
.border-green   { border-color: var(--green) !important; }
.rounded-xl { border-radius: var(--r-lg) !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.gap-section { gap: 2rem; }

/* ── PRODUCT DETAIL PAGE ────────────────────────── */
.producto-img-hero {
  position: relative;
  background: linear-gradient(135deg, #f0fdf8, #e8f4fd);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.producto-img-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.producto-img-hero:hover img { transform: scale(1.04); }
.qr-producto-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  box-shadow: var(--shadow-xs);
}
.size-btn-lg {
  background: var(--white);
  border: 2px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 10px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--t-fast);
  text-align: center;
  min-width: 72px;
}
.size-btn-lg:hover { border-color: var(--green); background: var(--green-light); color: var(--green); }
.size-btn-lg.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10,160,110,0.3);
}
.benefit-chip {
  background: var(--green-light);
  color: var(--green-deep);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
}
.garantia-chip {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark);
}
.card-producto-tab {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.nav-pills .nav-link {
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  padding: 9px 20px;
  transition: var(--t-fast);
}
.nav-pills .nav-link.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10,160,110,0.3);
}

/* ── ANIMATIONS.JS — SUPPORTING CSS ────────────── */

/* Live Activity Ticker */
.live-activity-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,160,110,0.08);
  border: 1px solid rgba(10,160,110,0.2);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-top: 16px;
  overflow: hidden;
  max-width: 100%;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 1.6s ease-in-out infinite;
}
#liveActivity {
  transition: opacity 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}
#liveActivity.la-out {
  opacity: 0;
  transform: translateY(8px);
}
#liveActivity.la-in {
  opacity: 1;
  transform: translateY(0);
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}

/* WhatsApp Pulse Ring */
.fab-whatsapp { position: relative; overflow: visible; }
.wa-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid rgba(37,211,102,0.5);
  animation: waRing 2s ease-out infinite;
  pointer-events: none;
}
@keyframes waRing {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* CTA WhatsApp continuous pulse glow */
.btn-whatsapp-mc {
  animation: ctaGlow 2.8s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%,100% { box-shadow: var(--shadow-green); }
  50%      { box-shadow: 0 8px 40px rgba(10,160,110,0.55), 0 2px 8px rgba(10,160,110,0.2); }
}

/* "Cómo funciona" section */
.how-section { background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%); }
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--t-slow);
}
.how-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.how-step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(10,160,110,0.4);
}
.how-step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--green);
  margin: 16px 0 20px;
  transition: var(--t);
}
.how-step:hover .how-step-icon {
  transform: scale(1.1) rotate(-6deg);
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
}
.how-step-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.how-step-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
}
.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.5rem;
  padding-top: 30px;
}

/* Stagger reveal - injected by animations.js but keep here as fallback */
.sr-item {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .55s cubic-bezier(0,0,.2,1), transform .55s cubic-bezier(0,0,.2,1);
}
.sr-item.sr-in { opacity: 1; transform: none; }

/* Coverage BI icons */
.coverage-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 10px;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1199px) {
  .py-section { padding: 72px 0; }
}
@media (max-width: 991px) {
  .py-section { padding: 56px 0; }
  .navbar-nav { padding: 14px 0; gap: 4px; }
  .navbar-nav .nav-link { padding: 10px 16px !important; }
  .hero-title { font-size: 2.2rem; }
  .hero-section { min-height: auto; padding: 72px 0 56px; }
  .coverage-section { padding: 48px 24px; }
  .featured-product-section { border-radius: var(--r-lg); }
  .contact-card { padding: 32px 24px; }
}
@media (max-width: 767px) {
  :root { --sp-xl: 56px; }
  .fab-call { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .coverage-section { padding: 36px 20px; }
  .coverage-stat .num { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .contact-card { padding: 24px 16px; }
}
