/* ============================================
   NOVAVIDA NATURALS - ULTRA PREMIUM STYLESHEET
   Luxury Dark Theme / Editorial Design
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   RESET & CSS VARIABLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Dark Palette */
    --bg-deep: #0a0a0a;
    --bg-rich: #111111;
    --bg-surface: #1a1a1a;
    --bg-elevated: #222222;
    --bg-subtle: #2a2a2a;

    /* Gold Accent */
    --gold: #c9a96e;
    --gold-warm: #dfc08a;
    --gold-light: #e8d4a8;
    --gold-dark: #a8894e;
    --gold-deep: #8b7240;

    /* Emerald (sparingly) */
    --emerald: #1a5f4a;
    --emerald-light: #2d8a6e;

    /* Text Colors */
    --text-white: #ffffff;
    --text-off-white: #f0ede8;
    --text-gray: #a0a0a0;
    --text-muted: #6b6b6b;
    --text-dark: #1a1a1a;

    /* Glass / Surface */
    --glass-light: rgba(255, 255, 255, 0.06);
    --glass-medium: rgba(255, 255, 255, 0.10);
    --glass-heavy: rgba(255, 255, 255, 0.14);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Off-white for light sections */
    --off-white: #fafaf8;
    --warm-white: #f5f3ee;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 10px 40px rgba(201, 169, 110, 0.25);
    --shadow-gold-lg: 0 20px 60px rgba(201, 169, 110, 0.3);

    /* Border Radius */
    --radius: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s var(--ease);
    --transition: 0.35s var(--ease);
    --transition-slow: 0.6s var(--ease);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-gray);
    overflow-x: hidden;
    background: var(--bg-deep);
}

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

/* Premium Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-white);
    letter-spacing: 0.01em;
}

/* Text Selection */
::selection {
    background: var(--gold);
    color: var(--bg-deep);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-subtle);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes goldGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 110, 0.15);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 169, 110, 0.3);
    }
}

@keyframes subtleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
    background: var(--bg-rich);
    color: var(--gold);
    padding: 0.85rem 24px;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 169, 110, 0.08),
        rgba(201, 169, 110, 0.15),
        rgba(201, 169, 110, 0.08),
        transparent
    );
    animation: shimmer 4s ease-in-out infinite;
}

.promo-banner span {
    position: relative;
    z-index: 1;
}

/* ============================================
   NAVBAR - PREMIUM DARK NAVIGATION
   ============================================ */
.navbar {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.1rem 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

.logo-img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(201, 169, 110, 0.2));
}

.logo-text {
    display: none;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.8rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 400;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    color: var(--gold);
    transition: var(--transition);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lang-toggle:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bar {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    margin: 3.5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO - DRAMATIC DARK LUXURY
   ============================================ */
.hero {
    background: var(--bg-deep);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle radial gradient for depth */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(26, 95, 74, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating decorative orb */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, transparent 30%, transparent 70%, rgba(10, 10, 10, 0.6) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.trust-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.15);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.1s both;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.hero-title span {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    margin-bottom: 3.5rem;
    color: var(--text-gray);
    animation: fadeInUp 0.8s ease 0.3s both;
    line-height: 1.9;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.feature-badge {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-off-white);
    transition: var(--transition);
}

.feature-badge:hover {
    background: var(--glass-medium);
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateY(-2px);
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.7s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: var(--bg-deep);
    padding: 1.2rem 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.6s;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 300;
}

/* ============================================
   ESTADISTICAS - STATS COUNTER
   ============================================ */
.estadisticas {
    padding: 80px 24px;
    background: var(--bg-rich);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.estadisticas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.estadisticas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 1.5rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(201, 169, 110, 0.12);
}

.stat-item:last-child::after {
    display: none;
}

.stat-numero {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.8rem;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--bg-surface);
    padding: 3.5rem 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.trust-item:hover {
    background: var(--glass-light);
}

.trust-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.trust-text strong {
    color: var(--text-off-white);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.trust-text span {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
}

/* ============================================
   SECTION HEADERS - GLOBAL
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gold);
    padding: 0.5rem 0;
    border-radius: 0;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    border: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    padding-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.section-title-highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
}

/* ============================================
   BENEFICIOS PRINCIPALES
   ============================================ */
.beneficios-principales {
    padding: 140px 24px;
    background: var(--bg-deep);
    position: relative;
}

.beneficios-principales::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(26, 95, 74, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.beneficio-card {
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.8rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.beneficio-card:hover {
    transform: translateY(-8px);
    background: var(--glass-medium);
    border-color: rgba(201, 169, 110, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.beneficio-card:hover::before {
    opacity: 1;
}

.beneficio-icon-large {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.beneficio-card h3 {
    font-size: 1.15rem;
    color: var(--text-off-white);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.beneficio-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.9rem;
    font-weight: 300;
}

/* ============================================
   COMO FUNCIONA - HOW IT WORKS
   ============================================ */
.como-funciona {
    padding: 140px 24px;
    background: var(--bg-rich);
    position: relative;
    overflow: hidden;
}

.como-funciona::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pasos-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.pasos-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
    z-index: 0;
    opacity: 0.4;
}

.paso {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.paso-numero {
    width: 70px;
    height: 70px;
    background: var(--bg-surface);
    border: 1px solid rgba(201, 169, 110, 0.25);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 0 auto 1.8rem;
    transition: var(--transition);
}

.paso:hover .paso-numero {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: var(--bg-deep);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.08);
}

.paso-icono {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.paso-content {
    flex: 1;
}

.paso h3 {
    font-size: 1.15rem;
    color: var(--text-off-white);
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.paso p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 240px;
    margin: 0 auto;
    font-weight: 300;
}

/* ============================================
   PRODUCTOS - PRODUCT CARDS PREMIUM
   ============================================ */
.productos {
    padding: 140px 24px;
    background: var(--bg-deep);
    position: relative;
}

.productos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(201, 169, 110, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.price-highlight {
    background: var(--bg-surface);
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--text-white);
    padding: 2.5rem 3rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2.5rem auto 4rem;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.price-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.price-label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.price-big {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    position: relative;
    letter-spacing: -0.02em;
}

.price-detail {
    font-size: 0.95rem;
    color: var(--text-gray);
    position: relative;
    font-weight: 300;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.producto-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.producto-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.producto-card:hover .producto-image img {
    transform: scale(1.05);
}

.producto-card.producto-destacado {
    border: 1px solid rgba(201, 169, 110, 0.3);
    box-shadow: 0 0 60px rgba(201, 169, 110, 0.08);
}

.producto-card.producto-destacado::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-warm), var(--gold), var(--gold-dark));
    z-index: 10;
}

.producto-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--glass-heavy);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-off-white);
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.68rem;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.producto-badge.bestseller {
    background: rgba(201, 169, 110, 0.9);
    color: var(--bg-deep);
    border-color: var(--gold);
    animation: goldGlow 3s ease-in-out infinite;
}

.producto-badge.badge-especial {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: var(--bg-deep);
    border-color: var(--gold-warm);
}

.producto-image {
    width: 100%;
    height: 260px;
    background: var(--bg-rich);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.producto-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-surface), transparent);
    z-index: 1;
    pointer-events: none;
}

.producto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition-slow);
}

.producto-info {
    padding: 2rem 2rem 2.2rem;
}

.producto-info h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.producto-tag {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.78rem;
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.producto-descripcion {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.9rem;
    font-weight: 300;
}

.producto-key-benefits {
    background: var(--glass-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
}

.producto-key-benefits h4 {
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.producto-beneficios {
    list-style: none;
}

.producto-beneficios li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 300;
}

.producto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 1rem;
}

.precio-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.precio {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    letter-spacing: -0.02em;
}

.precio-anterior {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.2rem;
    font-weight: 300;
}

.precio-detalle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-weight: 300;
}

.btn-comprar {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: var(--bg-deep);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-comprar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-comprar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-comprar:hover::before {
    left: 100%;
}

/* Garantia Box */
.garantia-box {
    background: var(--bg-surface);
    border: 1px solid rgba(201, 169, 110, 0.15);
    color: var(--text-white);
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    margin-top: 5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.garantia-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.garantia-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.garantia-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.garantia-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-gray);
    font-weight: 300;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonios {
    padding: 140px 24px;
    background: var(--bg-rich);
    position: relative;
}

.testimonios::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonio-card {
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.8rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--glass-border);
}

.testimonio-card::before {
    content: '\201C';
    position: absolute;
    top: 1.5rem;
    left: 2.2rem;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(201, 169, 110, 0.15);
    line-height: 1;
    pointer-events: none;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.testimonio-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-off-white);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonio-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(201, 169, 110, 0.12);
    padding-top: 1.2rem;
}

.testimonio-author strong {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.testimonio-author span {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 300;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 140px 24px;
    background: var(--bg-deep);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-light);
    border-radius: var(--radius-md);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.faq-item:hover {
    border-color: rgba(201, 169, 110, 0.12);
    background: var(--glass-medium);
}

.faq-question {
    padding: 1.6rem 2rem;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text-off-white);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    padding-right: 3.5rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item:hover .faq-question {
    color: var(--gold);
}

.faq-answer {
    padding: 0 2rem 1.8rem;
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 0.95rem;
    font-weight: 300;
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto {
    padding: 140px 24px;
    background: var(--bg-rich);
    position: relative;
}

.contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.8rem;
    background: var(--glass-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.info-item:hover {
    background: var(--glass-medium);
    border-color: rgba(201, 169, 110, 0.12);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--gold);
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.info-text p {
    color: var(--text-off-white);
    font-weight: 400;
    font-size: 0.95rem;
}

.info-text a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.info-text a:hover {
    border-bottom-color: var(--gold);
}

.info-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    font-weight: 300;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: var(--glass-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 300;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-enviar {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: var(--bg-deep);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
    align-self: flex-start;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-deep);
    color: var(--text-gray);
    padding: 5rem 24px 2rem;
    position: relative;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 0.92rem;
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.footer-trust span {
    color: var(--text-gray);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    font-weight: 300;
}

.footer-section ul li a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    padding: 0.9rem 1.3rem;
    background: var(--glass-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    font-weight: 400;
}

.social-links a:hover {
    color: var(--gold);
    background: var(--glass-medium);
    border-color: rgba(201, 169, 110, 0.15);
    transform: translateY(-3px);
}

.facebook-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
    font-weight: 300;
}

.disclaimer {
    font-size: 0.78rem;
    font-style: italic;
    color: var(--text-muted);
    opacity: 0.7;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--text-white);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--bg-surface);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
    color: var(--gold);
    font-size: 1.1rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .estadisticas-grid {
        gap: 2rem;
    }

    .hero-title {
        font-size: clamp(2.4rem, 5vw, 4rem);
    }
}

/* ============================================
   RESPONSIVE - MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--bg-deep);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition);
        padding: 100px 24px 2rem;
        gap: 0;
        border-right: 1px solid var(--glass-border);
        z-index: 999;
    }

    .nav-menu li {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    /* Hero Mobile */
    .hero {
        padding: 130px 20px 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.6rem;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
    }

    .trust-badge-top {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 0.6rem 1.2rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Beneficios */
    .beneficios-principales {
        padding: 80px 20px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .beneficio-card {
        padding: 2rem 1.5rem;
    }

    /* Estadisticas */
    .estadisticas {
        padding: 60px 20px;
    }

    .estadisticas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-numero {
        font-size: 2.5rem;
    }

    .stat-item::after {
        display: none;
    }

    /* Trust Bar */
    .trust-items {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    /* Como Funciona */
    .como-funciona {
        padding: 80px 20px;
    }

    .pasos-container {
        flex-direction: column;
        gap: 2rem;
    }

    .pasos-container::before {
        display: none;
    }

    .paso {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
    }

    .paso-numero {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        flex-shrink: 0;
        margin: 0;
    }

    .paso-content {
        flex: 1;
    }

    .paso p {
        max-width: none;
        margin: 0;
    }

    /* Productos */
    .productos {
        padding: 80px 20px;
    }

    .price-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .price-big {
        font-size: 2.8rem;
    }

    .productos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .producto-info {
        padding: 1.5rem 1.5rem 1.8rem;
    }

    /* Garantia */
    .garantia-box {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .garantia-content h3 {
        font-size: 1.6rem;
    }

    /* Testimonios */
    .testimonios {
        padding: 80px 20px;
    }

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

    .testimonio-card {
        padding: 2rem;
    }

    /* FAQ */
    .faq-section {
        padding: 80px 20px;
    }

    .faq-question {
        padding: 1.3rem 1.5rem;
        padding-right: 3rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Contacto */
    .contacto {
        padding: 80px 20px;
    }

    .contacto-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contacto-form {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 4rem 20px 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-trust {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 16px 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-button.primary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-badge {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .price-big {
        font-size: 2.4rem;
    }

    .precio {
        font-size: 1.8rem;
    }

    .btn-comprar {
        padding: 0.9rem 1.5rem;
        font-size: 0.82rem;
        width: 100%;
        text-align: center;
    }

    .producto-footer {
        flex-direction: column;
        text-align: center;
    }

    .precio-container {
        align-items: center;
        margin-bottom: 0.8rem;
    }

    .estadisticas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-numero {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .garantia-box {
        padding: 2rem 1.5rem;
    }

    .garantia-content h3 {
        font-size: 1.4rem;
    }

    .garantia-content p {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .scroll-top {
        bottom: 82px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================
   DESKTOP LOGO TEXT VISIBILITY
   ============================================ */
@media (min-width: 769px) {
    .logo-text {
        display: inline;
    }
}

/* ============================================
   ACCESSIBILITY - REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold {
    color: var(--gold);
}

.bg-surface {
    background: var(--bg-surface);
}

.bg-rich {
    background: var(--bg-rich);
}
