﻿/* ═══════════════════════════════════════════════════════════
   EL PARAÍSO PETS — PREMIUM PET STORE CSS
   Complete rewrite with ultra-premium design system
═══════════════════════════════════════════════════════════ */

/* ── Google Fonts already loaded in HTML ── */

/* ═══════════════════════════════════════
   HERO ANIMATION — CSS fallback garantizado
   Si GSAP no corre, CSS anima igual
═══════════════════════════════════════ */
.hero-anim {
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-anim:nth-child(1)  { animation-delay: 0.1s; }
.hero-anim:nth-child(2)  { animation-delay: 0.25s; }
.hero-anim:nth-child(3)  { animation-delay: 0.4s; }
.hero-anim:nth-child(4)  { animation-delay: 0.55s; }
.hero-anim:nth-child(5)  { animation-delay: 0.7s; }
/* hero-visual es el último hijo del hero-container */
.hero-visual.hero-anim   { animation-delay: 0.2s; animation-name: heroRevealRight; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroRevealRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Product/service card images — fondo rosado pastel si PNG vacío */
.product-card-image {
  background: linear-gradient(135deg, #FFE8F2 0%, #FDD5E8 60%, #FFEFF6 100%);
  display: flex; align-items: center; justify-content: center;
}

.product-card-image::after {
  content: '🐾';
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.product-card-image img {
  position: relative; z-index: 1;
}

.service-image-wrap {
  background: linear-gradient(135deg, #FFE8F2 0%, #FDD5E8 100%);
}

/* ═══════════════════════════════════════
   CSS VARIABLES & DESIGN TOKENS
   PALETA: Blanco-rosado pastel · suave · aireado
═══════════════════════════════════════ */
:root {
  /* ── Colores principales ── */
  --clr-primary:      #E8699A;   /* rosa vibrante */
  --clr-primary-dark: #D04E82;   /* rosa oscuro */
  --clr-primary-glow: rgba(232,105,154,0.3);
  --clr-secondary:    #B48DD8;   /* lavanda */
  --clr-accent:       #F4A0BB;   /* rosa pastel claro */
  --clr-gold:         #F0A855;   /* durazno/naranja suave */
  --clr-purple:       #C8A8E8;   /* violeta pastel */
  --clr-purple-dark:  #A880CC;

  /* ── Fondos — blanco rosado pastel ── */
  --bg-deep:    #FFF0F6;   /* blush ultra claro */
  --bg-main:    #FEF4F9;   /* rosa muy suave */
  --bg-card:    #FFFFFF;   /* blanco puro */
  --bg-card-2:  #FFF8FC;   /* blanco rosado */
  --bg-glass:   rgba(255,255,255,0.72);
  --bg-glass-border: rgba(232,105,154,0.18);

  /* ── Texto — oscuro para contraste en fondo claro ── */
  --txt-primary:   #2A0F1E;   /* ciruela muy oscuro */
  --txt-secondary: rgba(42,15,30,0.68);
  --txt-muted:     rgba(42,15,30,0.44);

  /* ── Gradientes ── */
  --grad-main:  linear-gradient(135deg, #E8699A 0%, #D04E82 100%);
  --grad-alt:   linear-gradient(135deg, #B48DD8 0%, #E8699A 100%);
  --grad-gold:  linear-gradient(135deg, #F5C880 0%, #F0A060 100%);
  --grad-fire:  linear-gradient(135deg, #FF8FA8 0%, #E8699A 100%);
  --grad-hero:  linear-gradient(135deg, #FFF0F6 0%, #FDE8F3 60%, #F8E0F0 100%);

  /* ── Sombras — suaves, rosadas ── */
  --shadow-sm:   0 2px 12px rgba(200,80,120,0.10);
  --shadow-md:   0 8px 32px rgba(200,80,120,0.14);
  --shadow-lg:   0 20px 60px rgba(200,80,120,0.18);
  --shadow-glow: 0 0 40px rgba(232,105,154,0.22);
  --shadow-purple-glow: 0 0 40px rgba(180,141,216,0.28);

  /* Typography */
  --font-main:  'Outfit', sans-serif;
  --font-sub:   'Inter', sans-serif;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Spacing */
  --section-pad: 100px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* Moved from body to prevent ScrollTrigger bugs */
}

body {
  font-family: var(--font-main);
  background: var(--bg-main);
  color: var(--txt-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; border: none; }

/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
.custom-cursor {
  width: 12px; height: 12px;
  background: var(--clr-primary);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(244,160,187,0.55);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

.custom-cursor.cursor-hover {
  width: 22px; height: 22px;
  background: var(--clr-gold);
}

.cursor-follower.cursor-hover {
  width: 52px; height: 52px;
  border-color: var(--clr-gold);
}

/* Hide cursor on touch devices */
@media (hover: none) {
  .custom-cursor, .cursor-follower { display: none !important; }
  body, button { cursor: auto; }
}

/* ═══════════════════════════════════════
   LOADING SCREEN
═══════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-paw {
  animation: loaderPulse 1s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px var(--clr-primary));
}

@keyframes loaderPulse {
  from { transform: scale(0.9); opacity: 0.7; }
  to   { transform: scale(1.1); opacity: 1; }
}

.loader-text {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-sub {
  font-size: 0.9rem;
  color: var(--txt-muted);
  margin-top: -8px;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--grad-main);
  border-radius: var(--radius-full);
  animation: loaderFill 1.8s var(--ease-out) forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* ═══════════════════════════════════════
   FLOATING PAWS
═══════════════════════════════════════ */
.floating-paws {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.paw-particle {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: pawFloat linear infinite;
  filter: blur(0.5px);
}

@keyframes pawFloat {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.08; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-glass-border);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  filter: drop-shadow(0 0 8px rgba(244,160,187,0.6));
  transition: transform 0.3s var(--ease-bounce);
}

.nav-logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.1);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--txt-primary);
  letter-spacing: -0.03em;
}

.logo-accent {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-link {
  padding: 7px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--txt-secondary);
  border-radius: var(--radius-full);
  transition: all 0.25s var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 2px;
  background: var(--grad-main);
  border-radius: var(--radius-full);
  transition: transform 0.25s var(--ease-out);
}

.nav-link:hover { color: var(--txt-primary); }
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: var(--txt-primary); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--grad-main);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,160,187,0.4);
}

.nav-cta svg, .nav-cta [data-lucide] { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
  cursor: pointer;
}

.toggle-line {
  display: block;
  width: 24px; height: 2px;
  background: var(--txt-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* ═══════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════ */
.announcement-bar {
  margin-top: 72px;
  background: linear-gradient(90deg, #F4A0BB 0%, #C8A8E8 35%, #F5C880 65%, #F4A0BB 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 2;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.announcement-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.announcement-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-deep);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
  padding-top: 0;
}

.hero-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(244,160,187,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(200,168,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-decorative { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--clr-primary);
  top: -200px; left: -150px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 500px; height: 500px;
  background: var(--clr-purple);
  bottom: -150px; right: -100px;
  animation-delay: -3s;
}

.hero-blob-3 {
  width: 300px; height: 300px;
  background: var(--clr-gold);
  top: 50%; left: 50%;
  animation-delay: -6s;
  opacity: 0.06;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,160,187,0.12);
  border: 1px solid rgba(244,160,187,0.3);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary);
  width: fit-content;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--clr-primary);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.title-line {
  display: block;
}

.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: var(--grad-alt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--txt-secondary);
  line-height: 1.7;
  max-width: 500px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-main);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(244,160,187,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(244,160,187,0.5);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--txt-primary);
  border: 1px solid var(--bg-glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--clr-primary);
  box-shadow: 0 8px 30px rgba(244,160,187,0.2);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn [data-lucide], .btn i { width: 18px; height: 18px; flex-shrink: 0; }

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-quick-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.quick-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.quick-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-primary);
}

.quick-stat-label {
  font-size: 0.7rem;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.quick-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--bg-glass-border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(200,80,120,0.18), var(--shadow-glow);
  border: 1px solid rgba(232,105,154,0.2);
  max-width: 560px;
  width: 100%;
  aspect-ratio: 3/4;   /* más alto — retrato en vez de paisaje */
}

.hero-glow {
  position: absolute;
  inset: -2px;
  background: var(--grad-main);
  border-radius: inherit;
  opacity: 0.15;
  z-index: -1;
  filter: blur(20px);
}

.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.hero-image-wrapper:hover .hero-image { transform: scale(1.04); }

.hero-image-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(244,160,187,0.3);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: badgePop 0.6s 2.5s var(--ease-bounce) backwards;
}

@keyframes badgePop {
  from { transform: scale(0.8) translateY(10px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.hero-image-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-primary);
}

.hero-image-badge small {
  font-size: 0.7rem;
  color: var(--txt-muted);
}

.hero-float-element {
  position: absolute;
  font-size: 2rem;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.float-heart  { top: -20px; right: 40px;  animation: floatAnim 4s ease-in-out infinite; }
.float-paw    { bottom: 40px; right: -20px; animation: floatAnim 5s ease-in-out infinite -1.5s; }
.float-star   { top: 40px; left: -30px;   animation: floatAnim 6s ease-in-out infinite -0.8s; }
.float-bone   { bottom: -10px; left: 30px; animation: floatAnim 4.5s ease-in-out infinite -2s; }
.float-fish   { top: 50%; right: -40px;   animation: floatAnim 5.5s ease-in-out infinite -3s; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%       { transform: translateY(-15px) rotate(5deg); }
  75%       { transform: translateY(-8px) rotate(-5deg); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--clr-primary);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  100%      { transform: translateY(10px); opacity: 0; }
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   SECTION SHARED STYLES
═══════════════════════════════════════ */
.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: var(--section-pad) 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,160,187,0.1);
  border: 1px solid rgba(244,160,187,0.25);
  color: var(--clr-primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-tag-light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 700px;
}

.section-title-light { color: var(--txt-primary); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--txt-secondary);
  max-width: 580px;
  line-height: 1.7;
}

.section-subtitle-light { color: rgba(255,255,255,0.75); }

/* ── Reveal — elementos visibles por defecto.
   GSAP hace las animaciones de entrada. Si GSAP falla, todo visible. ── */
.reveal, .reveal-left, .reveal-right {
  /* SIN opacity:0 — GSAP maneja el estado inicial via inline styles */
  will-change: opacity, transform;
}

/* Fallback IO: cuando no hay GSAP, IO agrega .in-view como seguro */
.no-gsap .reveal        { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.no-gsap .reveal.in-view { opacity: 1 !important; transform: none !important; }
.no-gsap .reveal-left   { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.no-gsap .reveal-left.in-view { opacity: 1 !important; transform: none !important; }
.no-gsap .reveal-right  { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.no-gsap .reveal-right.in-view { opacity: 1 !important; transform: none !important; }

/* ═══════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════ */
.products {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
}

/* Filter Buttons */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: -20px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  color: var(--txt-secondary);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
}

.filter-btn [data-lucide] { width: 15px; height: 15px; }

.filter-btn:hover {
  color: var(--txt-primary);
  border-color: var(--clr-primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--grad-main);
  color: var(--bg-deep);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(244,160,187,0.35);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244,160,187,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(244,160,187,0.1);
}

.product-card.hidden { display: none; }

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-card-2);
}

.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-image img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.badge-hot     { background: var(--grad-fire); color: white; }
.badge-new     { background: var(--grad-main); color: var(--bg-deep); }
.badge-premium { background: var(--grad-gold); color: var(--bg-deep); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,11,20,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.product-card:hover .product-overlay { opacity: 1; }

.product-quick-buy {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--grad-main);
  color: var(--bg-deep);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out);
}

.product-card:hover .product-quick-buy { transform: translateY(0); }
.product-quick-buy:hover { box-shadow: 0 8px 24px rgba(244,160,187,0.5); }
.product-quick-buy [data-lucide] { width: 16px; height: 16px; }

.product-fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(7,11,20,0.7);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-secondary);
  transition: all 0.3s var(--ease-out);
  z-index: 3;
}

.product-fav:hover,
.product-fav.active {
  color: var(--clr-accent);
  transform: scale(1.2);
}

.product-fav [data-lucide] { width: 15px; height: 15px; }

.product-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt-primary);
  line-height: 1.3;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--txt-muted);
  line-height: 1.6;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars { color: var(--clr-gold); font-size: 0.85rem; }
.reviews { font-size: 0.75rem; color: var(--txt-muted); }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-old {
  font-size: 0.78rem;
  color: var(--txt-muted);
  text-decoration: line-through;
}

.price-current {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-primary);
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--grad-main);
  color: var(--bg-deep);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,160,187,0.4);
}

.products-cta {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.products-cta p {
  color: var(--txt-secondary);
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.services-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(200,168,232,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(244,160,187,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.services .section-container { position: relative; z-index: 2; }
.services-grid { position: relative; z-index: 2; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* Service Cards - new design */
.service-card-new {
  background: var(--bg-card-2);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.service-card-new:hover {
  transform: translateY(-10px);
  border-color: rgba(244,160,187,0.3);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5), var(--shadow-glow);
}

.service-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-card-new:hover .service-image-wrap img { transform: scale(1.08); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,25,41,0.9) 100%);
}

.service-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.service-img-placeholder .placeholder-icon {
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.service-img-placeholder p {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.service-icon-badge {
  position: absolute;
  top: 16px; right: 16px;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.service-icon-badge [data-lucide] { width: 22px; height: 22px; }

.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-content .service-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--txt-primary);
}

.service-content .service-desc {
  font-size: 0.88rem;
  color: var(--txt-secondary);
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--txt-secondary);
}

.service-features [data-lucide] {
  width: 14px; height: 14px;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-primary);
  transition: all 0.3s var(--ease-out);
  width: fit-content;
  margin-top: 4px;
}

.service-cta:hover {
  background: var(--grad-main);
  color: var(--bg-deep);
  border-color: transparent;
  transform: translateX(4px);
}

.service-cta [data-lucide] { width: 15px; height: 15px; }

/* ═══════════════════════════════════════
   PROMOTIONS SECTION
═══════════════════════════════════════ */
.promotions {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.promotions-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.promo-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.promo-blob-1 {
  width: 600px; height: 600px;
  background: rgba(244,160,187,0.07);
  top: -200px; right: -100px;
  animation: blobFloat 10s ease-in-out infinite;
}

.promo-blob-2 {
  width: 500px; height: 500px;
  background: rgba(200,168,232,0.07);
  bottom: -200px; left: -100px;
  animation: blobFloat 12s ease-in-out infinite -4s;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Glass effect */
.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bg-glass-border);
}

.promo-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow);
  border-color: rgba(244,160,187,0.25);
}

.promo-card-featured {
  border-color: rgba(255,215,0,0.3) !important;
  background: rgba(255,215,0,0.04) !important;
}

.promo-card-featured::before {
  background: var(--grad-gold);
}

.promo-card-featured:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 60px rgba(255,215,0,0.2) !important;
  border-color: rgba(255,215,0,0.5) !important;
}

.promo-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--grad-gold);
  color: var(--bg-deep);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.promo-discount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.discount-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.promo-card-featured .discount-number {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.discount-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: -6px;
}

.promo-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.promo-emoji { font-size: 2rem; }

.promo-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--txt-primary);
}

.promo-info p {
  font-size: 0.85rem;
  color: var(--txt-secondary);
  line-height: 1.6;
}

/* Countdown timers */
.promo-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.timer-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clr-primary);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: center;
  background: rgba(244,160,187,0.08);
  border: 1px solid rgba(244,160,187,0.15);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  line-height: 1.2;
}

.promo-card-featured .timer-number {
  color: var(--clr-gold);
  background: rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.2);
}

.timer-label {
  font-size: 0.6rem;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.timer-sep {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--txt-muted);
  margin-bottom: 12px;
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--grad-main);
  color: var(--bg-deep);
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
  margin-top: auto;
}

.btn-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244,160,187,0.4);
}

.promo-card-featured .btn-promo {
  background: var(--grad-gold);
}

.promo-card-featured .btn-promo:hover {
  box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

/* ═══════════════════════════════════════
   BRANDS SECTION
═══════════════════════════════════════ */
.brands {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

/* Brand Cards Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: default;
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,160,187,0.3);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4), var(--shadow-glow);
}

.brand-card-inner {
  display: flex;
  flex-direction: column;
}

.brand-logo-area {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding: 12px;
}

.brand-img {
  max-width: 100%;
  max-height: 86px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.35s var(--ease-bounce);
}

.brand-card:hover .brand-img {
  transform: scale(1.08);
}

.brand-logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.brand-info {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--txt-primary);
}

.brand-info p {
  font-size: 0.78rem;
  color: var(--txt-muted);
}

.brand-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  background: rgba(244,160,187,0.1);
  border: 1px solid rgba(244,160,187,0.2);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--clr-primary);
  width: fit-content;
}

/* Marquee brands */
.brands-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.brands-marquee {
  overflow: hidden;
}

.brands-track {
  display: flex;
  gap: 16px;
  white-space: nowrap;
  animation: brandScroll 25s linear infinite;
}

.brands-marquee-reverse .brands-track {
  animation: brandScrollReverse 25s linear infinite;
}

@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes brandScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--txt-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}

.brand-pill:hover {
  border-color: var(--clr-primary);
  color: var(--txt-primary);
}

/* ═══════════════════════════════════════
   STATISTICS
═══════════════════════════════════════ */
.stats {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(244,160,187,0.05) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  background: var(--bg-card-2);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.stat-item:hover { transform: translateY(-6px); border-color: rgba(244,160,187,0.3); }
.stat-item:hover::before { transform: scaleX(1); }

.stat-icon {
  width: 50px; height: 50px;
  background: rgba(244,160,187,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
}

.stat-icon [data-lucide] { width: 22px; height: 22px; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--clr-primary);
  margin-left: -4px;
  -webkit-text-fill-color: initial;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  background: var(--bg-main);
  position: relative;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease-out);
}

.testimonial-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
  width: calc(33.33% - 16px);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(244,160,187,0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,160,187,0.2);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--txt-secondary);
  line-height: 1.75;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--txt-primary);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--txt-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  color: var(--txt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.carousel-btn:hover {
  background: var(--grad-main);
  color: var(--bg-deep);
  border-color: transparent;
  transform: scale(1.1);
}

.carousel-btn [data-lucide] { width: 18px; height: 18px; }

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg-glass-border);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  border-radius: var(--radius-full);
  background: var(--grad-main);
}

/* ═══════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════ */
.faq {
  background: var(--bg-card);
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card-2);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(244,160,187,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  color: var(--txt-primary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--clr-primary); }

.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--txt-muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--clr-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--txt-secondary);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  background: var(--bg-main);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrapper {
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--txt-primary);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  background: var(--bg-card-2);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  color: var(--txt-primary);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(244,160,187,0.1);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23F4A0BB' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-group select option {
  background: var(--bg-card-2);
  color: var(--txt-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--txt-muted); }

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-map { border-radius: var(--radius-lg); overflow: hidden; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s;
}

.contact-detail-item:hover { border-color: rgba(244,160,187,0.3); }

.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(244,160,187,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.contact-detail-icon [data-lucide] { width: 18px; height: 18px; }

.contact-detail-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--txt-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-detail-item p {
  font-size: 0.88rem;
  color: var(--txt-secondary);
  line-height: 1.6;
}

.contact-detail-item a {
  color: var(--clr-primary);
  transition: color 0.3s;
}

.contact-detail-item a:hover { color: var(--clr-primary-dark); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-primary), var(--clr-purple), transparent);
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 32px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-secondary);
  transition: all 0.3s var(--ease-out);
}

.social-link:hover {
  background: var(--grad-main);
  color: var(--bg-deep);
  border-color: transparent;
  transform: translateY(-3px);
}

.social-link [data-lucide] { width: 18px; height: 18px; }
.social-link svg { width: 20px; height: 20px; }

/* ── Instagram Banner ─────────────────────────────────── */
.ig-banner {
  background: linear-gradient(135deg, #E8699A 0%, #C94B8F 50%, #B48DD8 100%);
  padding: 0;
}
.ig-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.1rem 2rem;
  text-decoration: none;
  color: #fff;
  transition: filter 0.2s;
}
.ig-banner__inner:hover { filter: brightness(1.08); }
.ig-banner__icon svg {
  width: 36px; height: 36px;
  stroke: #fff;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}
.ig-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ig-banner__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
}
.ig-banner__handle {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.ig-banner__cta {
  margin-left: auto;
  background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 2rem;
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.ig-banner__inner:hover .ig-banner__cta { background: rgba(255,255,255,0.35); }
@media (max-width: 520px) {
  .ig-banner__cta { display: none; }
  .ig-banner__handle { font-size: 0.95rem; }
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--txt-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.88rem;
  color: var(--txt-muted);
  transition: color 0.3s;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--clr-primary);
  transform: translateX(4px);
}

.footer-newsletter p {
  font-size: 0.88rem;
  color: var(--txt-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.newsletter-input-wrap {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: border-color 0.3s;
}

.newsletter-input-wrap:focus-within { border-color: var(--clr-primary); }

.newsletter-input-wrap input {
  flex: 1;
  padding: 12px 18px;
  background: none;
  color: var(--txt-primary);
  font-size: 0.88rem;
}

.newsletter-input-wrap input::placeholder { color: var(--txt-muted); }

.newsletter-input-wrap button {
  width: 44px; height: 44px;
  background: var(--grad-main);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.newsletter-input-wrap button:hover { transform: scale(1.1); }
.newsletter-input-wrap button [data-lucide] { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--bg-glass-border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--txt-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--txt-muted);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--clr-primary); }

/* ═══════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease-bounce);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 8px 50px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

.whatsapp-btn:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 16px 50px rgba(37,211,102,0.6);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg-card);
  color: var(--txt-primary);
  border: 1px solid var(--bg-glass-border);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 48px; height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  color: var(--txt-secondary);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--grad-main);
  color: var(--bg-deep);
  border-color: transparent;
  transform: translateY(-4px);
}

.back-to-top [data-lucide] { width: 18px; height: 18px; }

/* ═══════════════════════════════════════
   PROMO MODAL
═══════════════════════════════════════ */
.promo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,11,20,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.promo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.promo-modal {
  max-width: 440px;
  width: 100%;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  border: 1px solid rgba(244,160,187,0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-bounce);
}

.promo-modal-overlay.active .promo-modal {
  transform: scale(1) translateY(0);
}

.promo-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--txt-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.promo-modal-close:hover { color: var(--txt-primary); background: var(--bg-card-2); }
.promo-modal-close [data-lucide] { width: 16px; height: 16px; }

.promo-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.promo-modal-badge {
  font-size: 3rem;
  animation: modalBounce 1s var(--ease-bounce) infinite alternate;
}

@keyframes modalBounce {
  from { transform: scale(0.9); }
  to   { transform: scale(1.1); }
}

.promo-modal-title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.promo-modal-desc {
  font-size: 0.9rem;
  color: var(--txt-secondary);
  line-height: 1.6;
}

.promo-modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-modal-form input {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-card-2);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  color: var(--txt-primary);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.promo-modal-form input:focus { border-color: var(--clr-primary); }
.promo-modal-form input::placeholder { color: var(--txt-muted); }

.promo-modal-skip {
  font-size: 0.8rem;
  color: var(--txt-muted);
  transition: color 0.3s;
}

.promo-modal-skip:hover { color: var(--txt-secondary); }

/* ═══════════════════════════════════════
   TILT CARD EFFECT
═══════════════════════════════════════ */
.tilt-card { transform-style: preserve-3d; }

/* ═══════════════════════════════════════
   MAGNETIC BUTTONS
═══════════════════════════════════════ */
.magnetic-btn { position: relative; }

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   MOBILE NAV MENU
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; cursor: pointer; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(7,11,20,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9990;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 100px 20px 40px;
  }

  .nav-links.mobile-open li { width: 100%; text-align: center; }

  .nav-links.mobile-open .nav-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    transition: background 0.2s, color 0.2s;
  }

  .nav-links.mobile-open .nav-link:hover,
  .nav-links.mobile-open .nav-link.active {
    background: rgba(244,160,187,0.1);
    color: var(--clr-primary);
  }

  /* Hamburger → X animation */
  .nav-toggle.open .toggle-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open .toggle-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open .toggle-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .toggle-line { transition: transform 0.3s ease, opacity 0.3s ease; }

  /* Close button inside mobile menu */
  .nav-links.mobile-open::before {
    content: '✕';
    position: absolute;
    top: 24px; right: 24px;
    font-size: 1.4rem;
    color: var(--txt-muted);
    cursor: pointer;
  }
}

/* ═══════════════════════════════════════
   TABLET (≤ 1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 28px 70px;
    gap: 40px;
  }
  .hero-content { align-items: center; }
  .hero-visual  { order: -1; }
  .hero-image-wrapper { max-width: 440px; margin: 0 auto; }
  .hero-subtitle { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-quick-stats { flex-wrap: wrap; justify-content: center; }

  .testimonial-card { width: calc(50% - 12px); }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .form-row       { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   MOBILE (≤ 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --font-main: 'Outfit', sans-serif;
  }

  /* Navigation */
  .announcement-bar { margin-top: 66px; }
  .navbar { padding: 12px 0; }
  .nav-container { padding: 0 18px; }
  .nav-cta span { display: none; }          /* Solo icono en mobile */
  .nav-cta { padding: 10px 14px; min-width: 44px; justify-content: center; }
  .logo-text { font-size: 1.05rem; }

  /* Hero */
  .hero-container { padding: 100px 18px 60px; gap: 32px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-badge { font-size: 0.78rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
  .hero-image-wrapper { max-width: 100%; aspect-ratio: 4/3; }
  .hero-float-element { display: none; }
  .hero-quick-stats { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-3d-canvas { opacity: 0.4; } /* Reduce opacity on mobile for performance */

  /* Sections */
  .section-container { padding: var(--section-pad) 18px; }
  .section-header { margin-bottom: 40px; gap: 12px; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .section-subtitle { font-size: 0.95rem; }
  .stats-grid { padding: 0 18px; }

  /* Grids → 1 column */
  .services-grid,
  .products-grid,
  .brands-grid,
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Products */
  .products-filter { gap: 8px; margin-bottom: 36px; }
  .filter-btn { padding: 9px 14px; font-size: 0.8rem; gap: 5px; }
  .filter-btn i, .filter-btn [data-lucide] { display: none; } /* Solo texto en mobile */

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { padding: 24px 16px; }
  .stat-number { font-size: 2.2rem; }

  /* Testimonials */
  .testimonial-card { width: 100%; }
  .testimonial-carousel { overflow: hidden; }

  /* Contact */
  .contact-form-wrapper { padding: 24px 20px; }
  .contact-grid { gap: 28px; }
  .contact-map { display: none; } /* Ocultar mapa en mobile */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links { justify-content: center; }
  .footer-container { padding: 60px 18px 100px; } /* Extra padding bottom for FAB */

  /* Cursor — disable on mobile */
  .custom-cursor, .cursor-follower { display: none !important; }

  /* Promo card */
  .promo-card { padding: 24px 20px; }
  .discount-number { font-size: 2.8rem; }

  /* Service card */
  .service-image-wrap { height: 180px; }

  /* Brand marquee — faster on mobile */
  .brands-track { animation-duration: 18s !important; }

  /* Float buttons */
  .whatsapp-btn { width: 54px; height: 54px; bottom: 20px; right: 16px; }
  .back-to-top  { width: 44px; height: 44px; bottom: 20px; left: 16px; }

  /* Announcement bar */
  .announcement-track span { font-size: 0.78rem; }
}

/* ═══════════════════════════════════════
   SMALL PHONES (≤ 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --section-pad: 50px; }

  .hero-title { font-size: 2.1rem; }
  .hero-container { padding: 90px 16px 50px; }
  .section-container { padding: var(--section-pad) 16px; }

  /* Stats: 2 columns small */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 1.9rem; }
  .stat-item { padding: 18px 12px; }

  /* Products filter: scrollable horizontal */
  .products-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .products-filter::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; font-size: 0.78rem; padding: 8px 12px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }

  /* Footer */
  .footer-grid { gap: 20px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; justify-content: center; }

  /* Nav */
  .logo-text { font-size: 0.95rem; }
  .logo-icon { width: 32px; height: 32px; }
}

/* ═══════════════════════════════════════
   VERY SMALL (≤ 380px)
═══════════════════════════════════════ */
@media (max-width: 380px) {
  :root { --section-pad: 44px; }
  .hero-title { font-size: 1.9rem; }
  .navbar { padding: 10px 0; }
  .nav-cta { padding: 8px 10px; }
  .stat-number { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════
   TOUCH DEVICE ENHANCEMENTS
═══════════════════════════════════════ */
@media (hover: none) {
  /* On touch: show overlay buttons always on tap */
  .product-overlay { opacity: 0 !important; }
  .btn-buy { display: inline-flex; }

  /* Remove hover transforms on touch */
  .product-card:hover,
  .service-card-new:hover,
  .promo-card:hover,
  .brand-card:hover,
  .stat-item:hover {
    transform: none !important;
    box-shadow: var(--shadow-md) !important;
  }

  /* Larger tap targets */
  .filter-btn { min-height: 44px; }
  .btn { min-height: 48px; }
  .nav-link { min-height: 44px; display: flex; align-items: center; }
  .faq-question { min-height: 56px; }
}

/* ═══════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--grad-main);
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.05s linear;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   SAFE AREA (iPhone notch / Dynamic Island)
═══════════════════════════════════════ */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer-container {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
  .whatsapp-btn {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .back-to-top {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }
}

/* ═══════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════ */
.gallery {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200,168,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--bg-card-2);
}

.gallery-item.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,11,20,0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 6px 14px;
  background: rgba(244,160,187,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244,160,187,0.35);
  border-radius: var(--radius-full);
}

.gallery-cta {
  text-align: center;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.gallery-cta p {
  color: var(--txt-secondary);
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px;
  }
  .gallery-item.gallery-item-wide { grid-column: span 3; }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .gallery-item,
  .gallery-item.gallery-item-large,
  .gallery-item.gallery-item-tall,
  .gallery-item.gallery-item-wide {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }
  .gallery-item.gallery-item-large { grid-column: span 2; }
  .gallery-overlay { opacity: 1; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-item-large { grid-column: span 1; }
}

/* ═══════════════════════════════════════
   WHY US SECTION
═══════════════════════════════════════ */
.why-us {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(244,160,187,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 20%, rgba(200,168,232,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244,160,187,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease-bounce);
}

.why-card:hover .why-icon { transform: scale(1.12) rotate(-5deg); }

.why-icon [data-lucide] { width: 24px; height: 24px; }

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--txt-primary);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--txt-secondary);
  line-height: 1.7;
  flex: 1;
}

.why-card-arrow {
  color: var(--clr-primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease-out);
  width: fit-content;
}

.why-card:hover .why-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.why-card-arrow [data-lucide] { width: 18px; height: 18px; }

@media (max-width: 1024px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 24px 20px; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════
   WOW IMAGE ANIMATIONS — pet bubbles, shine, spotlight,
   parallax, lightbox, glow effects
   ═══════════════════════════════════════════════════════ */

/* ─── Hero: Shine sweep on main image ─── */
.hero-img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.06) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: heroShine 5s ease-in-out infinite;
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
}

@keyframes heroShine {
  0%   { background-position: 200% center; }
  40%  { background-position: -200% center; }
  100% { background-position: -200% center; }
}

/* ─── Hero image wrapper: persistent glow pulse ─── */
.hero-image-wrapper {
  animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% {
    box-shadow:
      0 40px 100px rgba(80,10,40,0.55),
      0 0  40px rgba(244,160,187,0.22);
  }
  50% {
    box-shadow:
      0 40px 100px rgba(80,10,40,0.55),
      0 0  80px rgba(244,160,187,0.45),
      0 0 120px rgba(200,168,232,0.22);
  }
}

/* ─── Pet bubble circles flotantes ─── */
.pet-bubble {
  position: absolute;
  border-radius: 50%;
  overflow: visible;
  z-index: 10;
  cursor: pointer;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}

.pet-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(244,160,187,0.6);
  display: block;
}

.pet-bubble-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(244,160,187,0.25);
  animation: ringExpand 2.5s ease-out infinite;
}

@keyframes ringExpand {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

.pet-bubble-1 {
  width: 88px; height: 88px;
  top: 8%; right: -28px;
  animation: bubble1Float 5s ease-in-out infinite;
}
.pet-bubble-1 img { border-color: rgba(244,160,187,0.7); }

.pet-bubble-2 {
  width: 68px; height: 68px;
  bottom: 18%; left: -22px;
  animation: bubble2Float 6.5s ease-in-out infinite;
}
.pet-bubble-2 img { border-color: rgba(245,160,180,0.7); }
.pet-bubble-2 .pet-bubble-ring { border-color: rgba(245,160,180,0.3); }

.pet-bubble-3 {
  width: 76px; height: 76px;
  top: 52%; right: -24px;
  transform: translateY(-50%);
  animation: bubble3Float 7s ease-in-out infinite;
}
.pet-bubble-3 img { border-color: rgba(200,168,232,0.7); }
.pet-bubble-3 .pet-bubble-ring { border-color: rgba(200,168,232,0.3); }

.pet-bubble-4 {
  width: 62px; height: 62px;
  top: 28%; left: -18px;
  animation: bubble4Float 5.8s ease-in-out infinite;
}
.pet-bubble-4 img { border-color: rgba(250,189,92,0.7); }
.pet-bubble-4 .pet-bubble-ring { border-color: rgba(250,189,92,0.3); }

@keyframes bubble1Float {
  0%,100% { transform: translateY(0)   rotate(0deg) scale(1);    }
  30%      { transform: translateY(-18px) rotate(6deg) scale(1.05); }
  70%      { transform: translateY(-9px) rotate(-3deg) scale(0.97); }
}
@keyframes bubble2Float {
  0%,100% { transform: translateY(0) rotate(0deg) scale(1);    }
  40%      { transform: translateY(-14px) rotate(-5deg) scale(1.04); }
  80%      { transform: translateY(-7px) rotate(2deg)  scale(0.98); }
}
@keyframes bubble3Float {
  0%,100% { transform: translateY(0) scale(1);    }
  35%      { transform: translateY(-16px) scale(1.06); }
  65%      { transform: translateY(-8px) scale(0.96); }
}
@keyframes bubble4Float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  45%      { transform: translateY(-12px) rotate(8deg); }
  75%      { transform: translateY(-5px) rotate(-4deg); }
}

/* ─── Product card: spotlight + shimmer ─── */
.product-card {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 80px at var(--spotlight-x) var(--spotlight-y),
    rgba(244,160,187,0.12) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 5;
  border-radius: inherit;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.07) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: cardShimmer 4s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes cardShimmer {
  0%   { background-position:  200% center; opacity: 0; }
  20%  { opacity: 1; }
  50%  { background-position: -200% center; opacity: 1; }
  70%  { opacity: 0; }
  100% { background-position: -200% center; opacity: 0; }
}

/* Animated glow border on featured product cards (uses box-shadow to respect overflow:hidden) */
.product-card-featured {
  animation: featuredGlow 4s ease-in-out infinite;
}

@keyframes featuredGlow {
  0%,100% {
    box-shadow:
      0 8px 32px rgba(0,0,0,0.3),
      0 0 0 1px rgba(244,160,187,0.4);
  }
  33% {
    box-shadow:
      0 8px 32px rgba(0,0,0,0.3),
      0 0 0 2px rgba(200,168,232,0.5),
      0 0 24px rgba(200,168,232,0.2);
  }
  66% {
    box-shadow:
      0 8px 32px rgba(0,0,0,0.3),
      0 0 0 2px rgba(245,160,180,0.5),
      0 0 24px rgba(245,160,180,0.2);
  }
}

/* Product image: zoom + scale on hover */
.product-card-image img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  will-change: transform;
}

.product-card:hover .product-card-image img {
  transform: scale(1.12) translateY(-4px);
  filter: brightness(1.1) saturate(1.2);
}

/* ─── Service card image: parallax + color overlay ─── */
.service-card-new .service-image-wrap {
  overflow: hidden;
  position: relative;
}

.service-card-new .service-image-wrap img {
  will-change: transform;
  transition: transform 0.6s ease;
  transform: scale(1.08);
}

.service-card-new:hover .service-image-wrap img {
  transform: scale(1.14) translateY(-5px);
}

.service-card-new .service-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(244,160,187,0.18) 0%,
    transparent 50%,
    rgba(200,168,232,0.12) 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  pointer-events: none;
}

.service-card-new:hover .service-image-wrap::after {
  opacity: 1;
}

/* ─── Gallery: image reveal + lightbox ─── */
.gallery-item img {
  will-change: transform;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.15);
}

.gallery-item::after {
  content: '🔍 Ver';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  background: rgba(15,22,40,0.15);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 6;
  border-radius: inherit;
  backdrop-filter: blur(0px);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ─── Lightbox ─── */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,12,24,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 60px rgba(244,160,187,0.15);
  transform: scale(0.88);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.lb-overlay.open .lb-img-wrap {
  transform: scale(1);
}

.lb-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lb-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.lb-close:hover {
  background: rgba(244,160,187,0.3);
  transform: rotate(90deg) scale(1.1);
}

/* ─── Why-us: image decoration ─── */
.why-us {
  background-image: url('pet_dog_2.png');
  background-repeat: no-repeat;
  background-position: right -80px center;
  background-size: 280px;
}

@media (max-width: 900px) {
  .why-us { background-image: none; }
  .pet-bubble-1, .pet-bubble-2, .pet-bubble-3, .pet-bubble-4 {
    display: none;
  }
}

/* ─── Stats: floating dog decoration ─── */
.stats-section::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 200px; height: 260px;
  background: url('reference_dog.jpg') center/cover no-repeat;
  opacity: 0.04;
  filter: grayscale(100%);
  pointer-events: none;
}

/* ─── Grids con 2 elementos — más anchos y centrados ─── */
.services-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 560px)) !important;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
}

.promo-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 520px)) !important;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .services-grid-2,
  .promo-grid-2 { grid-template-columns: 1fr !important; }
}

/* ─── Service 3D canvas: improve visibility ─── */
.services-3d-canvas {
  opacity: 0.35 !important;
}

/* ─── Testimonials: subtle dog watermark ─── */
.testimonials {
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  left: -40px; top: 50%;
  transform: translateY(-50%);
  width: 240px; height: 320px;
  background: url('reference_dog.jpg') center/cover no-repeat;
  opacity: 0.04;
  filter: grayscale(100%);
  pointer-events: none;
  border-radius: 50%;
}

/* ─── Staggered gallery reveal (GSAP handles it, CSS fallback) ─── */
.gallery-item {
  --reveal-delay: 0s;
}
.gallery-item:nth-child(1) { --reveal-delay: 0.00s; }
.gallery-item:nth-child(2) { --reveal-delay: 0.07s; }
.gallery-item:nth-child(3) { --reveal-delay: 0.14s; }
.gallery-item:nth-child(4) { --reveal-delay: 0.21s; }
.gallery-item:nth-child(5) { --reveal-delay: 0.28s; }
.gallery-item:nth-child(6) { --reveal-delay: 0.35s; }
.gallery-item:nth-child(7) { --reveal-delay: 0.42s; }

/* ─── Image hover lift universal ─── */
.product-card,
.service-card-new,
.why-card {
  transform-style: preserve-3d;
}

/* ─── Pulsing glow on badges/tags ─── */
.gallery-tag {
  animation: tagGlow 3s ease-in-out infinite;
  animation-delay: var(--reveal-delay, 0s);
}

@keyframes tagGlow {
  0%, 100% { box-shadow: 0 0  8px rgba(244,160,187,0.3); }
  50%       { box-shadow: 0 0 18px rgba(244,160,187,0.6); }
}

/* ─── Assets pet images section (decorative row) ─── */
.pets-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.pets-row-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(244,160,187,0.4);
  box-shadow: 0 0 24px rgba(244,160,187,0.25);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
  cursor: pointer;
  filter: saturate(0.9);
}

.pets-row-img:hover {
  transform: scale(1.18) translateY(-8px);
  box-shadow: 0 12px 40px rgba(244,160,187,0.5);
  filter: saturate(1.2) brightness(1.05);
}

/* ═══════════════════════════════════════════════════════════
   LIGHT PASTEL THEME — overrides para fondo blanco-rosado
   Todo lo que antes era oscuro ahora es claro y aireado
   ═══════════════════════════════════════════════════════════ */

/* ── Navbar: blanco translúcido con borde rosa suave ── */
.navbar {
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(232,105,154,0.15) !important;
  box-shadow: 0 2px 24px rgba(200,80,120,0.08) !important;
}

.nav-link { color: var(--txt-primary) !important; }
.nav-link:hover, .nav-link.active { color: var(--clr-primary) !important; }
.nav-link.active::after { background: var(--clr-primary) !important; }

/* ── Logo ── */
.logo-text { color: var(--txt-primary) !important; }

/* ── Loader: blanco rosado ── */
.loader {
  background: #FFF0F6 !important;
}

/* ── Hero: gradiente blanco-rosado ── */
.hero {
  background: var(--grad-hero) !important;
}

/* ── Hero shadows más suaves ── */
.hero-image-wrapper {
  box-shadow: 0 20px 60px rgba(200,80,120,0.18), 0 0 40px rgba(232,105,154,0.12) !important;
}

/* ── Cards: blancas con sombra rosada suave ── */
.product-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(232,105,154,0.14) !important;
  box-shadow: 0 4px 20px rgba(200,80,120,0.09) !important;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(200,80,120,0.16) !important;
  border-color: rgba(232,105,154,0.3) !important;
}

/* ── Service cards ── */
.service-card-new {
  background: #FFFFFF !important;
  border: 1px solid rgba(232,105,154,0.14) !important;
  box-shadow: 0 4px 24px rgba(200,80,120,0.10) !important;
}

.service-card-new:hover {
  box-shadow: 0 16px 48px rgba(200,80,120,0.18) !important;
}

/* ── Glass cards (promos, testimonials) ── */
.glass {
  background: rgba(255,255,255,0.82) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(232,105,154,0.16) !important;
}

/* ── Promo cards ── */
.promo-card {
  box-shadow: 0 6px 28px rgba(200,80,120,0.12) !important;
}

/* ── Stats section ── */
.stats-section {
  background: linear-gradient(135deg, #FFF0F6 0%, #F8E8F4 100%) !important;
}

.stat-item {
  background: #FFFFFF !important;
  border: 1px solid rgba(232,105,154,0.14) !important;
  box-shadow: 0 4px 20px rgba(200,80,120,0.10) !important;
}

/* ── Sections alternating backgrounds ── */
.services {
  background: linear-gradient(180deg, #FEF4F9 0%, #FFF0F6 100%) !important;
}

.products-section {
  background: #FFF8FC !important;
}

.promotions {
  background: linear-gradient(180deg, #FFF0F6 0%, #FDE8F3 100%) !important;
}

.gallery-section {
  background: #FFF8FC !important;
}

.why-us {
  background: linear-gradient(135deg, #FFF0F6 0%, #F5EAF8 100%) !important;
}

.testimonials {
  background: linear-gradient(180deg, #FFF8FC 0%, #FFF0F6 100%) !important;
}

.brands-section {
  background: #FFFFFF !important;
}

.faq-section {
  background: linear-gradient(180deg, #FFF0F6 0%, #FEF4F9 100%) !important;
}

.contact-section {
  background: #FFF8FC !important;
}

/* ── Footer: rosa pastel ── */
.footer {
  background: linear-gradient(135deg, #FDE8F3 0%, #F8DFF0 100%) !important;
  border-top: 1px solid rgba(232,105,154,0.18) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(232,105,154,0.15) !important;
}

/* ── FAQ items ── */
.faq-item {
  background: #FFFFFF !important;
  border: 1px solid rgba(232,105,154,0.14) !important;
}

.faq-item.open {
  border-color: rgba(232,105,154,0.3) !important;
}

/* ── Contact form ── */
.contact-form-wrap,
.contact-info-card {
  background: #FFFFFF !important;
  box-shadow: 0 8px 32px rgba(200,80,120,0.10) !important;
  border: 1px solid rgba(232,105,154,0.14) !important;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #FFF8FC !important;
  border: 1.5px solid rgba(232,105,154,0.22) !important;
  color: var(--txt-primary) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary) !important;
  box-shadow: 0 0 0 3px rgba(232,105,154,0.12) !important;
}

/* ── Brand cards ── */
.brand-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(232,105,154,0.12) !important;
  box-shadow: 0 2px 12px rgba(200,80,120,0.08) !important;
}

.brand-card:hover {
  box-shadow: 0 8px 28px rgba(200,80,120,0.16) !important;
}

/* ── Why cards ── */
.why-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(232,105,154,0.14) !important;
  box-shadow: 0 4px 20px rgba(200,80,120,0.09) !important;
}

/* ── Announcement bar text ── */
.announcement-bar span,
.announcement-bar a {
  color: #FFFFFF !important;
}

/* ── Section tags / badges ── */
.section-tag {
  background: rgba(232,105,154,0.10) !important;
  color: var(--clr-primary) !important;
  border: 1px solid rgba(232,105,154,0.25) !important;
}

/* ── Scroll progress bar ── */
.scroll-progress {
  background: var(--grad-main) !important;
}

/* ── Gallery items ── */
.gallery-item::after {
  background: rgba(232,105,154,0.12) !important;
  color: var(--clr-primary-dark) !important;
}

/* ── Lightbox stays dark (para contraste) ── */
.lb-overlay {
  background: rgba(42,15,30,0.90) !important;
}

/* ── Hero badge ── */
.hero-badge {
  background: rgba(255,255,255,0.75) !important;
  border: 1px solid rgba(232,105,154,0.3) !important;
  color: var(--clr-primary) !important;
}

/* ── Image wrapper badge (Envío Gratis) ── */
.hero-image-badge {
  background: rgba(255,255,255,0.92) !important;
  color: var(--txt-primary) !important;
  box-shadow: 0 4px 20px rgba(200,80,120,0.15) !important;
}

/* ── Testimonial cards ── */
.testimonial-card {
  background: #FFFFFF !important;
}

/* ── Modal ── */
.promo-modal-overlay {
  background: rgba(42,15,30,0.75) !important;
}

.promo-modal-box {
  background: linear-gradient(135deg, #FFF0F6, #FDE8F3) !important;
}

/* ── Cursor: rosa ── */
.custom-cursor { background: var(--clr-primary) !important; }
.cursor-follower { border-color: rgba(232,105,154,0.45) !important; }

/* ── Hero quick stats ── */
.quick-stat {
  background: rgba(255,255,255,0.75) !important;
  border: 1px solid rgba(232,105,154,0.2) !important;
  color: var(--txt-primary) !important;
}

/* ── Product card name / price text ── */
.product-name, .product-category,
.product-price, .product-price-original,
.product-rating {
  color: var(--txt-primary) !important;
}

/* ── Section titles ── */
.section-title, .section-subtitle { color: var(--txt-primary); }
.section-title .gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Nav CTA button ── */
.nav-cta {
  background: var(--grad-main) !important;
  color: #FFFFFF !important;
}


