    /* Reset y configuración base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
/* Header */
.header {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 150px; /* más compacto */
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFB6C1;
}

/* Botón hamburguesa oculto en desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* 🔹 Estilos para móvil */

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        background: #8B0000;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        border-radius: 10px;
        margin: 0 10px;
        width: calc(100% - 20px);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        list-style: none;
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 25px;
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #FFB6C1;
        padding-left: 35px;
    }

    .nav-menu li:last-child .nav-link {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* 🔹 Estilos para móvil  - FIN*/

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #DC143C 0%, #FF6B6B 50%, #FFB6C1 100%);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('img/diacare_hero_bg.png');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            z-index: 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-benefit {
            text-align: center;
            font-style: italic;
            margin-top: 1rem;
            font-size: 1.1rem;
        }

        /* Botones */
        .btn {
            display: inline-block;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        .btn-large {
            padding: 20px 40px;
            font-size: 1.3rem;
        }

        /* Secciones generales */
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 3rem;
            color: #8B0000;
            font-weight: bold;
        }

        /* Symptoms Section */
        .symptoms {
            padding: 70px 0;
            background: linear-gradient(180deg, #fff 0%, #FFF5F6 100%);
        }
        .symptoms .section-title { color: #8B0000; }
        .section-intro {
            text-align: center;
            max-width: 720px;
            margin: -1.5rem auto 2.5rem;
            color: #555;
            font-size: 1.05rem;
            line-height: 1.6;
        }
        .symptoms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.25rem;
        }
        .symptom-card {
            background: #fff;
            border-left: 5px solid #DC143C;
            border-radius: 12px;
            padding: 1.25rem 1.25rem 1.25rem 1rem;
            box-shadow: 0 4px 14px rgba(139,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 0.9rem;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .symptom-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(139,0,0,0.15);
        }
        .symptom-icon {
            flex: 0 0 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FFE4E1, #FFB6C1);
            color: #8B0000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }
        .symptom-text {
            font-weight: 600;
            color: #333;
            font-size: 1rem;
        }

        /* Consequences Section */
        .consequences {
            padding: 90px 0 100px;
            background:
                radial-gradient(1200px 500px at 50% -10%, rgba(220,20,60,0.35), transparent 60%),
                radial-gradient(800px 400px at 90% 110%, rgba(139,0,0,0.45), transparent 70%),
                linear-gradient(135deg, #1a0505 0%, #3a0a0a 45%, #6b0e0e 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .consequences::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 14px);
            pointer-events: none;
        }
        .consequences .container { position: relative; z-index: 1; }
        .consequences-alert-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,182,193,0.35);
            color: #FFD7D7;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin: 0 auto 1rem;
        }
        .consequences-alert-badge i { color: #FFB6C1; animation: pulseAlert 2s ease-in-out infinite; }
        @keyframes pulseAlert {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.55; transform: scale(1.18); }
        }
        .consequences .section-title {
            color: #fff;
            text-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }
        .consequences-intro {
            text-align: center;
            max-width: 720px;
            margin: -1rem auto 3rem;
            color: #ffe3e3;
            font-size: 1.08rem;
            line-height: 1.65;
        }
        .consequences-header { text-align: center; }
        .consequences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 1.75rem;
        }
        .consequence-card {
            position: relative;
            background: linear-gradient(160deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 18px;
            padding: 2.25rem 1.4rem 1.6rem;
            text-align: center;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            overflow: hidden;
        }
        .consequence-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, #DC143C, #FF6B6B, #DC143C);
            opacity: 0.85;
        }
        .consequence-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255,107,107,0.55);
            box-shadow: 0 18px 40px rgba(220,20,60,0.35), 0 0 0 1px rgba(255,107,107,0.25) inset;
        }
        .consequence-num {
            position: absolute;
            top: 12px;
            right: 14px;
            font-size: 0.75rem;
            font-weight: 800;
            color: rgba(255,182,193,0.55);
            letter-spacing: 1px;
        }
        .consequence-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 1.1rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow:
                0 10px 25px rgba(220,20,60,0.45),
                0 0 0 6px rgba(220,20,60,0.12);
            position: relative;
        }
        .consequence-icon::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid rgba(255,107,107,0.35);
            animation: ringPulse 2.4s ease-out infinite;
        }
        @keyframes ringPulse {
            0% { transform: scale(0.95); opacity: 0.8; }
            100% { transform: scale(1.35); opacity: 0; }
        }
        .consequence-card h3 {
            font-size: 1.1rem;
            margin: 0 0 0.6rem;
            color: #fff;
            font-weight: 700;
        }
        .consequence-card p {
            font-size: 0.93rem;
            color: #ffd9d9;
            margin: 0;
            line-height: 1.55;
        }
        .consequences-footer {
            text-align: center;
            margin-top: 3rem;
            font-size: 1.05rem;
            color: #fff;
            font-weight: 600;
        }
        .consequences-footer strong { color: #FFD700; }
        @media (max-width: 600px) {
            .consequences { padding: 70px 0; }
            .consequences-grid { gap: 1.25rem; }
            .consequence-card { padding: 2rem 1.1rem 1.4rem; }
        }

        /* Solution / How Diacare Helps */
        .solution {
            padding: 70px 0;
            background: linear-gradient(180deg, #FFF5F6 0%, #fff 100%);
        }
        .solution .section-title { color: #8B0000; }
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .solution-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.75rem 1.5rem;
            box-shadow: 0 6px 20px rgba(139,0,0,0.08);
            border-top: 5px solid #DC143C;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(139,0,0,0.18);
        }
        .solution-problem {
            display: inline-block;
            background: #fff0f0;
            color: #8B0000;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 4px 10px;
            border-radius: 30px;
            margin-bottom: 0.75rem;
        }
        .solution-card h3 {
            color: #8B0000;
            font-size: 1.15rem;
            margin: 0 0 0.6rem;
        }
        .solution-card p {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.55;
            margin: 0;
        }
        .solution-card .check {
            color: #28a745;
            font-weight: 700;
            margin-right: 6px;
        }
        .solution-cta-wrap {
            text-align: center;
            margin-top: 2.5rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 60px 0;
            background: linear-gradient(135deg, #FFF8F8 0%, #FFE4E1 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .benefit-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
        }

        .benefit-item h3 {
            color: #8B0000;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Composition Section */
        .composition {
            padding: 60px 0;
            background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
            color: white;
        }

        .composition .section-title {
            color: white;
        }

        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .ingredient-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .ingredient-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 1rem;
            object-fit: cover;
        }


        .ingredient-item h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        /* Usage Section */
        .usage {
            padding: 60px 0;
            background: linear-gradient(135deg, #FFE4E1 0%, #FFCCCB 100%);
        }

        .usage-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .usage-steps {
            list-style: none;
            counter-reset: step-counter;
        }

        .usage-steps li {
            counter-increment: step-counter;
            margin-bottom: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 10px;
            position: relative;
            padding-left: 4rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .usage-steps li::before {
            content: counter(step-counter);
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Usage Carousel */
        .usage-carousel {
            position: relative;
            width: 100%;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 18px 45px rgba(139,0,0,0.22);
            background: #fff;
        }
        .usage-carousel-track {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 2;
            overflow: hidden;
        }
        .usage-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.7s ease;
        }
        .usage-slide.active { opacity: 1; }
        .usage-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .usage-slide-caption {
            position: absolute;
            left: 0; right: 0; bottom: 0;
            padding: 1rem 1.25rem;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            text-align: left;
        }
        .usage-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.92);
            color: #8B0000;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: background 0.25s, transform 0.25s;
            z-index: 2;
        }
        .usage-arrow:hover { background: #8B0000; color: #fff; transform: translateY(-50%) scale(1.08); }
        .usage-arrow.prev { left: 12px; }
        .usage-arrow.next { right: 12px; }
        .usage-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 2;
        }
        .usage-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.55);
            border: 1px solid rgba(0,0,0,0.15);
            cursor: pointer;
            padding: 0;
            transition: background 0.25s, transform 0.25s;
        }
        .usage-dot.active { background: #DC143C; transform: scale(1.25); }

        .usage-img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Professional Testimonial */
        .professional-testimonial {
            padding: 60px 0;
            background: linear-gradient(135deg, #FFF8F8 0%, #FFE4E1 100%);
        }

        .testimonial-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .doctor-img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .testimonial-text blockquote {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 1rem;
            color: #444;
            line-height: 1.6;
        }

        .testimonial-text cite {
            font-weight: bold;
            color: #8B0000;
        }

        /* Order Process */
        .order-process {
            padding: 60px 0;
            background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
            color: white;
        }

        .order-process .section-title {
            color: white;
        }

        .order-intro {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .process-step {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .process-img {
            width: 150px;
            height: 150px;
            border-radius: 15px;
            margin-bottom: 1rem;
            object-fit: cover;
        }

        .process-step h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Order Form */
        .order-form {
            padding: 90px 0 100px;
            background:
                radial-gradient(900px 500px at 12% 10%, rgba(255,215,0,0.18) 0%, transparent 60%),
                radial-gradient(900px 500px at 90% 95%, rgba(255,107,107,0.35) 0%, transparent 65%),
                linear-gradient(135deg, #6b0000 0%, #8B0000 35%, #DC143C 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .order-form::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
            background-size: 28px 28px;
            opacity: 0.5;
            pointer-events: none;
        }
        .order-form::after {
            content: '';
            position: absolute;
            top: -120px; right: -120px;
            width: 360px; height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,215,0,0.18), transparent 70%);
            pointer-events: none;
        }
        .order-form .container { position: relative; z-index: 1; }

        .order-form .section-title {
            color: white;
            font-size: 2.6rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 3px 10px rgba(0,0,0,0.25);
        }
        .order-form-subtitle {
            text-align: center;
            color: #fff;
            opacity: 0.95;
            font-size: 1.15rem;
            max-width: 640px;
            margin: 0 auto 1.25rem;
        }
        .discount-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #8B0000;
            font-weight: 900;
            font-size: 0.95rem;
            letter-spacing: 1px;
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: 0 6px 20px rgba(255,165,0,0.45);
            animation: pulseBadge 2s ease-in-out infinite;
            text-transform: uppercase;
        }
        .discount-badge-wrap { text-align: center; margin-bottom: 1.5rem; }
        @keyframes pulseBadge {
            0%,100% { transform: scale(1); box-shadow: 0 6px 20px rgba(255,165,0,0.45); }
            50% { transform: scale(1.06); box-shadow: 0 8px 28px rgba(255,165,0,0.7); }
        }

        .order-form-content {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 3rem;
            align-items: center;
            max-width: 1080px;
            margin: 0 auto;
        }

        .order-form-left {
            text-align: center;
            position: relative;
        }
        .product-form-frame {
            position: relative;
            display: inline-block;
            border-radius: 22px;
            padding: 10px;
            background: linear-gradient(135deg, rgba(255,215,0,0.55), rgba(255,255,255,0.2));
            box-shadow: 0 25px 60px rgba(0,0,0,0.4);
            max-width: 420px;
            width: 100%;
        }
        .product-form-frame::after {
            content: '';
            position: absolute;
            inset: -20px;
            border-radius: 30px;
            background: radial-gradient(circle, rgba(255,215,0,0.35), transparent 70%);
            z-index: -1;
            filter: blur(20px);
        }
        .product-form-img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 14px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
        }
        .product-form-tag {
            position: absolute;
            bottom: -18px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            color: #8B0000;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 8px 18px;
            border-radius: 30px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .product-form-tag i { color: #28a745; }

        .order-form-right {
            display: flex;
            flex-direction: column;
        }

        .form {
            width: 100%;
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.4);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
            color: #333;
            position: relative;
        }
        .form::before {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            border-radius: 26px;
            background: linear-gradient(135deg, #FFD700, #FF6B6B, #FFB6C1);
            z-index: -1;
            opacity: 0.6;
            filter: blur(12px);
        }
        .form-title {
            text-align: center;
            color: #8B0000;
            font-size: 1.6rem;
            font-weight: 800;
            margin: 0 0 0.4rem;
        }
        .form-subtext {
            text-align: center;
            color: #777;
            font-size: 0.95rem;
            margin: 0 0 1.5rem;
        }
        .price-card {
            background: linear-gradient(135deg, #FFF5F6 0%, #FFE4E8 100%);
            border: 2px dashed #DC143C;
            border-radius: 16px;
            padding: 1.25rem 1rem;
            text-align: center;
            margin-bottom: 1.75rem;
        }
        .price-card .price-old {
            font-size: 1.05rem;
            text-decoration: line-through;
            color: #888;
            margin: 0;
        }
        .price-card .price-now {
            font-size: 2.4rem;
            font-weight: 900;
            color: #8B0000;
            line-height: 1.1;
            margin: 4px 0;
        }
        .price-card .price-save {
            display: inline-block;
            background: #28a745;
            color: white;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 4px 12px;
            border-radius: 30px;
            margin-top: 6px;
        }

        .form-group {
            margin-bottom: 1.25rem;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: #555;
        }

        .form-group input {
            width: 100%;
            padding: 14px 16px 14px 44px;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            font-size: 1rem;
            background: #fafafa;
            transition: all 0.25s ease;
            font-weight: 500;
            box-sizing: border-box;
            color: #333;
        }

        .form-group input:focus {
            outline: none;
            border-color: #DC143C;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(220,20,60,0.12);
        }
        .form-group .input-icon {
            position: absolute;
            left: 16px;
            top: 41px;
            color: #DC143C;
            font-size: 1rem;
            pointer-events: none;
        }
        .btn-form {
            width: 100%;
            margin-top: 0.5rem;
            padding: 18px 24px !important;
            font-size: 1.15rem !important;
            font-weight: 800 !important;
            background: linear-gradient(135deg, #ff6b35 0%, #DC143C 100%) !important;
            border-radius: 14px !important;
            box-shadow: 0 10px 25px rgba(220,20,60,0.4) !important;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }
        .btn-form::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2.6s infinite;
        }
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 200%; }
        }
        .btn-form:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(220,20,60,0.55) !important;
        }
        .compra-segura {
            text-align: center;
            color: #28a745;
            font-size: 0.95rem;
            font-weight: 700;
            margin: 1.25rem 0 0;
        }
        .form-trust {
            display: flex;
            justify-content: center;
            margin-top: 1.1rem;
            padding-top: 1rem;
            border-top: 1px dashed #eee;
            color: #28a745;
            font-size: 0.92rem;
            font-weight: 700;
        }
        .form-trust span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(40,167,69,0.08);
            padding: 8px 18px;
            border-radius: 30px;
        }
        .form-trust i { color: #28a745; font-size: 1rem; }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 0.2rem;
            cursor: pointer;
            accent-color: white;
        }

        .checkbox-group label {
            flex: 1;
            margin-bottom: 0;
            font-size: 1rem;
            line-height: 1.4;
            cursor: pointer;
        }

        .btn-form { color: #fff !important; }
        .btn-form i { color: #fff !important; }

        /* Thank You Message */
        .thank-you-message {
            width: 100%;
            margin-top: 2rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            text-align: center;
        }

        .thank-you-content h3 {
            color: white;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .thank-you-content p {
            color: white;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .thank-you-content p:last-of-type {
            margin-bottom: 2rem;
        }

        /* Post Order */
        .post-order {
            padding: 40px 0;
            background: linear-gradient(135deg, #FFE4E1 0%, #FFCCCB 100%);
        }

        .post-order-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .info-item {
            text-align: center;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .info-item h3 {
            color: #8B0000;
            margin-bottom: 1rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 60px 0;
            background: linear-gradient(135deg, #FFF8F8 0%, #FFE4E1 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .testimonial-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 1rem;
            object-fit: cover;
        }

        .testimonial-item blockquote {
            font-style: italic;
            margin-bottom: 1rem;
            color: #444;
        }

        .testimonial-item cite {
            font-weight: bold;
            color: #8B0000;
        }

        /* Pricing Info Inside Form */
        .price-box-form {
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 2.5rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(20px);
        }

        .old-price {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .crossed {
            text-decoration: line-through;
            color: #ccc;
        }

        .current-price {
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: -0.5px;
        }

        .price {
            color: #FFFFFF;
            font-weight: 900;
        }

        .discount {
            background: rgba(255, 255, 255, 0.9);
            color: #DC143C;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 1rem;
            font-weight: 900;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }

        .urgency {
            font-style: italic;
            margin-bottom: 0;
            opacity: 0.95;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .form-subtitle {
            color: white;
            text-align: center;
            font-size: 1.6rem;
            margin-bottom: 2rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: -0.3px;
        }

        /* Delivery Info */
        .delivery-info {
            padding: 30px 0;
            background: #fff3cd;
            border-top: 3px solid #ffc107;
            border-bottom: 3px solid #ffc107;
        }

        .delivery-notice {
            text-align: center;
            color: #856404;
            font-weight: bold;
        }

        /* FAQ */
        .faq {
            padding: 60px 0;
            background: linear-gradient(135deg, #FFF8F8 0%, #FFE4E1 100%);
        }

        .faq-items {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            background: #8B0000;
            color: white;
            margin: 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #DC143C;
        }

        .faq-answer {
            padding: 1.5rem;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* Footer */
        .footer {
            background: #8B0000;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .footer-logo-img {
            height: 120px;
            width: auto;
        }

        .footer-nav {
            display: flex;
            gap: 2rem;
        }

        .footer-nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #FFB6C1;
        }

        .disclaimer {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #DC143C;
        }

        /* Float Button */
        .float-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
            transition: all 0.3s ease;
            z-index: 999;
            display: none;
        }

        .float-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        .float-button.visible {
            display: block;
        }

        /* Popup */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .popup-overlay.active {
            display: flex;
        }

        .popup {
            background: #fff;
            border-radius: 24px;
            max-width: 460px;
            width: 92%;
            max-height: 92vh;
            overflow-y: auto;
            position: relative;
            animation: popupSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
            border-top: 6px solid #DC143C;
        }

        @keyframes popupSlide {
            from { transform: translateY(-30px) scale(0.96); opacity: 0; }
            to   { transform: translateY(0) scale(1); opacity: 1; }
        }

        .popup-close {
            position: absolute;
            top: 12px;
            right: 14px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            color: #666;
            z-index: 2;
            transition: all 0.2s ease;
        }
        .popup-close:hover {
            background: #DC143C;
            color: #fff;
            transform: rotate(90deg);
        }

        .popup-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
            padding: 2.25rem 2rem 2rem;
            max-width: 460px;
            margin: 0 auto;
        }

        .popup-badge {
            display: inline-block;
            background: linear-gradient(135deg, #DC143C, #FF6B6B);
            color: #fff;
            font-weight: 800;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 999px;
            text-transform: uppercase;
            box-shadow: 0 6px 14px rgba(220,20,60,0.3);
        }

        .popup-img {
            width: 100%;
            max-width: 420px;
            height: auto;
            margin: 0.25rem auto;
            display: block;
            filter: drop-shadow(0 12px 20px rgba(0,0,0,0.18));
        }

        .popup-content h2 {
            color: #8B0000;
            margin: 0;
            font-size: 1.7rem;
            line-height: 1.2;
            font-weight: 800;
        }

        .popup-pricing {
            background: linear-gradient(135deg, #FFF8F8, #FFE4E1);
            border: 2px dashed #FFB6C1;
            border-radius: 16px;
            padding: 1rem 1.25rem;
            width: 100%;
            margin: 0;
            text-align: center;
        }

        .popup-old-price {
            font-size: 0.95rem;
            color: #888;
            margin-bottom: 0.25rem;
        }
        .popup-old-price .crossed {
            text-decoration: line-through;
            color: #b00;
        }

        .popup-current-price {
            font-size: 1.7rem;
            font-weight: 900;
            color: #DC143C;
            margin: 0;
            line-height: 1.1;
        }
        .popup-current-price #popup-price-now-val {
            font-size: 2rem;
        }

        .popup-cta {
            background: linear-gradient(135deg, #DC143C, #FF6B6B) !important;
            color: #fff !important;
            font-weight: 700;
            font-size: 1.05rem;
            padding: 14px 28px !important;
            border-radius: 999px !important;
            box-shadow: 0 10px 24px rgba(220,20,60,0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .popup-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(220,20,60,0.45);
        }

        .popup .compra-segura {
            font-size: 0.9rem;
            color: #555;
            margin: 0;
            font-weight: 500;
        }

        .popup-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .popup-form input {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
        }

        .popup-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .popup-checkbox input[type="checkbox"] {
            margin-top: 0.2rem;
        }

        .popup-checkbox label {
            flex: 1;
            font-size: 0.9rem;
        }

        .compra-segura {
  text-align: center;
}

        .popup-cta {
            display: inline-block;
            text-align: center;
            text-decoration: none;
            margin: 0.5rem auto 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #8B0000;
                padding: 1rem;
                gap: 1rem;
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero-content,
            .usage-content,
            .testimonial-content,
            .popup-content,
            .order-form-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .benefits-grid,
            .ingredients-grid {
                grid-template-columns: 1fr;
            }

            .process-steps,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                gap: 2rem;
            }

            .footer-nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .popup {
                width: 94%;
                margin: 16px;
                max-height: 94vh;
                border-radius: 20px;
            }

            .popup-content {
                padding: 1.75rem 1.25rem;
                gap: 0.85rem;
            }

            .popup-content h2 { font-size: 1.4rem; }
            .popup-current-price { font-size: 1.4rem; }
            .popup-current-price #popup-price-now-val { font-size: 1.7rem; }
            .popup-cta { display: block; width: 100%; }
            .popup-img { max-width: 240px; }

            .price-box-unified {
                padding: 1.5rem;
            }

            .product-form-img,
            .usage-img,
            .hero-image {
                width: 100%;
                max-width: 360px;
                height: auto;
                margin: 0 auto;
                display: block;
            }

            .form { padding: 1.5rem 1rem; }

            .header-content { flex-wrap: wrap; }
            .logo { font-size: 1.5rem !important; }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 100px 0 40px;
            }

            .hero-title {
                font-size: 1.7rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .btn {
                padding: 12px 24px;
                font-size: 1rem;
            }

            .btn-large {
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            .form {
                padding: 2rem 1.5rem;
            }

            .price-box {
                padding: 2rem 1.5rem;
            }

            .section-title { font-size: 1.5rem; }
            .popup { width: 92%; }
            .popup-content { padding: 1.25rem; }
            .popup-content h2 { font-size: 1.2rem; }
            .popup-current-price { font-size: 1.15rem; }
            .product-form-img, .usage-img, .hero-image { max-width: 300px; }
        }