        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-gradient: linear-gradient(135deg, #e8eef2 0%, #c5d4dd 50%, #a8b8c4 100%);
            --accent-gradient: linear-gradient(135deg, #2f9bd4 0%, #1f86c0 100%);
            --dark: #1a1a1a;
            --gray: #6c757d;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: var(--white);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo img {
            height: 70px;
            width: 70px;
            border-radius: 50%;
            box-shadow: 0 6px 20px rgba(47, 155, 212, 0.3);
            transition: all 0.3s ease;
            border: 3px solid transparent;
            background: linear-gradient(white, white) padding-box, 
                        linear-gradient(135deg, #2f9bd4, #2f9bd4) border-box;
            object-fit: cover;
        }
        
        .logo img:hover {
            transform: scale(1.08) rotate(5deg);
            box-shadow: 0 8px 25px rgba(47, 155, 212, 0.4);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #2f9bd4;
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark);
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #ffffff 0%, #8a8a8a 50%, #1a1a1a 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('../img/hero/hero-watermark.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 1;
            z-index: 0;
            pointer-events: none;
        }

        @media (max-width: 600px) {
            .hero::before {
                background-image: url('../img/hero/hero-watermark-mobile.jpg');
            }

            .hide-mobile {
                display: none !important;
            }
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-left h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            color: #ffffff;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95);
        }
        
        .hero-left h1 span {
            color: #2f9bd4;
            text-shadow: none;
        }
        
        .hero-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #f2f2f2;
            margin-bottom: 30px;
            max-width: 600px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.95);
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: var(--accent-gradient);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 20px rgba(47, 155, 212, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(47, 155, 212, 0.4);
        }
        
        .hero-right {
            text-align: center;
        }
        
        .hero-right img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        
        .hero-benefit {
            margin-top: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark);
            padding: 15px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            color: var(--dark);
        }
        
        .benefits-showcase {
            display: block;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .benefits-content {
            text-align: center;
        }
        
        .benefits-subtitle {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 18px;
            line-height: 1.3;
            background: linear-gradient(90deg, #ff6b00 0%, #ff8c42 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .benefits-intro {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.7;
            margin: 0 auto 45px;
            max-width: 760px;
        }
        
        .benefits-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
            margin-bottom: 35px;
            text-align: left;
        }
        
        .benefit-feature {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 24px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0,0,0,0.04);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            position: relative;
            overflow: hidden;
        }
        
        .benefit-feature::before {
            content: "";
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #ff6b00, #ff8c42);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.25s ease;
        }
        
        .benefit-feature:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 32px rgba(255, 107, 0, 0.15);
            border-color: rgba(255, 107, 0, 0.25);
        }
        
        .benefit-feature:hover::before {
            transform: scaleY(1);
        }
        
        .benefit-feature .benefit-icon {
            font-size: 1.7rem;
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #fff4e6 0%, #ffe0c2 100%);
            border-radius: 12px;
            box-shadow: inset 0 0 0 1px rgba(255,107,0,0.15);
        }
        
        .benefit-feature strong {
            display: block;
            font-size: 1.05rem;
            color: var(--dark);
            margin-bottom: 6px;
            font-weight: 700;
        }
        
        .benefit-feature p {
            color: var(--gray);
            font-size: 0.93rem;
            line-height: 1.55;
            margin: 0;
        }
        
        .benefits-conclusion {
            font-size: 1.05rem;
            line-height: 1.7;
            padding: 28px 32px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            color: #fff;
            border-radius: 16px;
            font-weight: 500;
            text-align: center;
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
            border-left: 4px solid #ff6b00;
        }
        
        @media (max-width: 768px) {
            .benefits { padding: 60px 0; }
            .benefits-subtitle { font-size: 1.4rem; }
            .benefits-intro { font-size: 1rem; margin-bottom: 30px; }
            .benefits-features {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .benefit-feature {
                padding: 18px;
                gap: 14px;
            }
            .benefit-feature .benefit-icon {
                width: 44px;
                height: 44px;
                font-size: 1.4rem;
            }
            .benefit-feature strong { font-size: 1rem; }
            .benefit-feature p { font-size: 0.9rem; }
            .benefits-conclusion { padding: 22px; font-size: 0.98rem; }
        }
        
        /* Features Section — sección oscura "táctica" (limpia, alto contraste) */
        .features {
            padding: 80px 0;
            background: radial-gradient(1200px 500px at 50% -10%, #1d2635 0%, #12161f 60%);
        }

        .features .section-title { color: #fff; }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: #ffffff;
            padding: 24px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(31, 134, 192, 0.28);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }
        
        .feature-content h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .feature-content p {
            color: var(--gray);
        }
        
        /* Testimonials Section (legacy — usado por las demás landings hasta migrar a .reviews) */
        .testimonials {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .testimonial-rating {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--dark);
            overflow: hidden;
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-info h4 {
            font-size: 1rem;
            color: var(--dark);
        }
        
        .testimonial-info p {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        /* Order Form Section */
        .order-form {
            padding: 80px 0;
            background: linear-gradient(180deg, #f5f8fc 0%, #eaf1f9 100%);
            position: relative;
        }
        
        .order-form .section-title {
            color: var(--dark);
        }

        .form-intro {
            max-width: 800px;
            margin: 0 auto 35px;
            text-align: center;
        }

        .form-intro > p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--dark);
            margin-bottom: 18px;
        }

        .form-intro-note {
            text-align: left;
            background: rgba(255, 255, 255, 0.92);
            border-left: 4px solid #2f9bd4;
            border-radius: 10px;
            padding: 18px 22px;
            margin-bottom: 0 !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        }

        .form-intro-note strong {
            color: #1f86c0;
        }
        
        .form-container-wrapper {
            max-width: 800px;
            margin: 0 auto;
            background: #ffffff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid #e6eef7;
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
            font-size: 14px;
        }
        
        .required {
            color: #e53e3e;
        }
        
        input, select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--white);
            font-family: inherit;
        }
        
        input:focus, select:focus {
            outline: none;
            border-color: #2f9bd4;
            box-shadow: 0 0 0 3px rgba(47, 155, 212, 0.1);
        }
        
        input:hover, select:hover {
            border-color: #cbd5e0;
        }
        
        select.shipping-free,
        select.shipping-free:disabled {
            opacity: 1;
            cursor: default;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background: #e8f7ee;
            border-color: #2e9e5b;
            color: #1c7a43;
            font-weight: 700;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        button[type="submit"] {
            width: 100%;
            padding: 18px;
            background: var(--accent-gradient);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(47, 155, 212, 0.4);
        }
        
        button[type="submit"]:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .message {
            padding: 16px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: none;
            animation: slideIn 0.3s ease-out;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .success {
            background: #d4edda;
            color: #155724;
            border: 2px solid #c3e6cb;
        }
        
        .error {
            background: #f8d7da;
            color: #721c24;
            border: 2px solid #f5c6cb;
        }
        
        .loader {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-right: 8px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        
        /* How to Order Section */
        .how-to-order {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .step-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
        }
        
        .step-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .step-content {
            padding: 30px;
        }
        
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--accent-gradient);
            color: var(--white);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .step-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .step-content p {
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background: var(--white);
            text-align: center;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 900px;
            margin: 40px auto;
        }
        
        .pricing-card {
            background: var(--primary-gradient);
            border-radius: 20px;
            padding: 30px 20px;
            box-shadow: var(--shadow);
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
        }
        
        .pricing-card.featured {
            background: linear-gradient(135deg, #2f9bd4 0%, #1f86c0 100%);
            transform: scale(1.05);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.08);
        }
        
        .pricing-card.featured .pricing-header,
        .pricing-card.featured .pricing-oldprice,
        .pricing-card.featured .pricing-price,
        .pricing-card.featured .pricing-savings,
        .pricing-card.featured .pricing-shipping {
            color: var(--white);
        }
        
        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #e74c3c;
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            white-space: nowrap;
        }
        
        .pricing-badge.best-value {
            background: #27ae60;
        }
        
        .pricing-header {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            margin-top: 10px;
        }
        
        .pricing-oldprice {
            font-size: 1.05rem;
            color: var(--gray);
            text-decoration: line-through;
            margin-bottom: 2px;
            opacity: 0.85;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: #2f9bd4;
            margin-bottom: 10px;
        }
        
        .pricing-savings {
            font-size: 0.95rem;
            color: #27ae60;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .pricing-shipping {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .urgency-message {
            font-size: 1.1rem;
            color: #e74c3c;
            font-weight: 600;
            margin-top: 20px;
        }
        
        @media (max-width: 768px) {
            .pricing-cards {
                grid-template-columns: 1fr;
                max-width: 330px;
                gap: 40px;
                margin: 34px auto;
            }

            .pricing-card {
                background: var(--white);
                border: 1px solid #e6edf2;
                border-radius: 18px;
                padding: 26px 22px 28px;
                box-shadow: 0 6px 22px rgba(31, 134, 192, 0.10);
            }

            .pricing-card.featured {
                transform: scale(1);
                border: none;
                box-shadow: 0 12px 30px rgba(31, 134, 192, 0.28);
            }

            .pricing-card.featured:hover {
                transform: translateY(-5px);
            }

            .pricing-header {
                font-size: 1.1rem;
                margin-top: 8px;
                margin-bottom: 6px;
            }

            .pricing-price {
                font-size: 2.2rem;
                margin-bottom: 0;
            }

            .pricing-savings:empty {
                display: none;
            }

            /* En mobile no mostramos "Envío Gratis" dentro de las cards */
            .pricing-shipping {
                display: none;
            }

            .pricing-badge {
                font-size: 0.74rem;
                padding: 5px 14px;
                top: -11px;
                box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
            }
        }
        
        /* Delivery Section */
        .delivery {
            padding: 80px 0;
            background: #ffffff;
        }
        
        .delivery-grid {
            display: block;
            max-width: 680px;
            margin: 50px auto 0;
            background: #ffffff;
            border: 1px solid #e6eef7;
            border-radius: 18px;
            box-shadow: 0 12px 34px rgba(20, 34, 59, 0.10);
            overflow: hidden;
        }
        
        .delivery-card {
            display: grid;
            grid-template-columns: auto 1fr;
            column-gap: 20px;
            align-items: center;
            text-align: left;
            background: transparent;
            padding: 24px 30px;
            border-radius: 0;
            border-bottom: 1px solid #e9edf1;
            backdrop-filter: none;
        }
        
        .delivery-grid .delivery-card:last-child {
            border-bottom: none;
        }
        
        .delivery-icon {
            grid-column: 1;
            grid-row: 1 / 3;
            align-self: center;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 0;
            background: var(--light-gray);
            border-radius: 14px;
        }
        
        .delivery-card h3 {
            grid-column: 2;
            grid-row: 1;
            font-size: 1.18rem;
            margin-bottom: 4px;
            color: var(--dark);
        }
        
        .delivery-card p {
            grid-column: 2;
            grid-row: 2;
            margin: 0;
            color: var(--gray);
            line-height: 1.55;
        }
        
        /* Post Order Section */
        .post-order {
            padding: 80px 0;
            background: var(--white);
        }
        
        .info-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .info-box {
            background: var(--light-gray);
            padding: 40px;
            border-radius: 15px;
            border-left: 5px solid #2f9bd4;
        }
        
        .info-box h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .info-box p {
            color: var(--gray);
            line-height: 1.8;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .faq-grid {
            max-width: 900px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            width: 100%;
            padding: 25px;
            background: var(--white);
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background: var(--light-gray);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 25px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: var(--gray);
            line-height: 1.8;
        }
        
        .faq-icon {
            transition: transform 0.3s;
        }
        
        .faq-icon.active {
            transform: rotate(180deg);
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-gradient);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(47, 155, 212, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(47, 155, 212, 0.4);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, 
                #0a0a0a 0%, 
                #1a1a1a 15%, 
                #2d2d2d 30%, 
                #4a4a4a 50%, 
                #2d2d2d 70%, 
                #1a1a1a 85%, 
                #0a0a0a 100%);
            position: relative;
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, 
                rgba(255, 255, 255, 0.08) 0%, 
                transparent 50%, 
                rgba(0, 0, 0, 0.4) 100%);
            pointer-events: none;
        }
        
        footer .container {
            position: relative;
            z-index: 1;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo img {
            height: 60px;
            margin-bottom: 20px;
            filter: brightness(0) invert(1);
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: var(--white);
        }
        
        .qty-savings {
            margin: 12px 0 0;
            background: #e9f9ef;
            color: #137a3e;
            border: 1px solid #b8ecca;
            font-weight: 700;
            font-size: 0.95rem;
            text-align: center;
            padding: 10px 14px;
            border-radius: 10px;
        }

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

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            transition: background 0.25s, transform 0.25s;
        }

        .footer-social a:hover {
            background: rgba(255, 255, 255, 0.22);
            transform: translateY(-2px);
            color: #fff;
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--white);
                flex-direction: column;
                padding: 40px 20px;
                box-shadow: var(--shadow);
                transition: left 0.3s;
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }
            
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-left h1 {
                font-size: 2.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .form-container-wrapper {
                padding: 30px 20px;
            }
            
            .steps-grid {
                grid-template-columns: 1fr;
            }

            /* Mobile: fotos del "Cómo hacer un pedido" en marco cuadrado 1:1, sin recorte */
            .step-image {
                height: auto;
                aspect-ratio: 1 / 1;
                object-fit: contain;
                background: var(--light-gray);
            }

            /* Mobile: número 1/2/3 superpuesto arriba a la izquierda de la foto */
            .step-card {
                position: relative;
            }

            .step-number {
                position: absolute;
                top: 12px;
                left: 12px;
                margin-bottom: 0;
                z-index: 2;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
            }
            
            .delivery-grid {
                max-width: 100%;
            }
            
            .delivery-card {
                padding: 18px 18px;
                column-gap: 14px;
            }
            
            .delivery-icon {
                width: 48px;
                height: 48px;
                font-size: 1.7rem;
                border-radius: 12px;
            }
            
            .info-boxes {
                grid-template-columns: 1fr;
            }
        }

/* Exit Intent Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.popup-image {
    background: linear-gradient(135deg, #f3e5f5 0%, #9c27b0 50%, #4a148c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.popup-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.popup-content {
    padding: 50px 40px;
}

.popup-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.2;
}

.popup-pricing {
    margin: 20px 0;
    text-align: center;
}

.popup-pricing .old-price {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: var(--gray);
    margin-right: 10px;
}

.popup-pricing .current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2f9bd4;
}

.popup-cta-button {
    width: 100%;
    padding: 18px 30px;
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(47, 155, 212, 0.3);
    font-family: inherit;
}

.popup-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(47, 155, 212, 0.5);
}

.popup-cta-button:active {
    transform: translateY(-1px);
}

/* Simple Exit Popup (no form) */
.exit-popup-simple {
    grid-template-columns: 1fr;
    max-width: 500px;
    text-align: center;
}

.popup-content-simple {
    padding: 40px 35px;
}

.popup-content-simple h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.3;
}

.popup-price {
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.popup-price .price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--gray);
}

.popup-price .price-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2f9bd4;
}

.popup-offer {
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 20px;
    background: #fff3cd;
    padding: 10px 15px;
    border-radius: 8px;
}

.popup-product-image {
    margin: 20px auto;
    max-width: 280px;
}

.popup-product-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.popup-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.popup-description strong {
    color: var(--dark);
}

.popup-cta {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #2f9bd4 0%, #2f9bd4 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(47, 155, 212, 0.3);
    font-family: inherit;
    margin-bottom: 15px;
}

.popup-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(47, 155, 212, 0.5);
}

.popup-features {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .exit-popup {
        grid-template-columns: 1fr;
        max-width: 95%;
    }
    
    .popup-image {
        display: none;
    }
    
    .popup-content {
        padding: 40px 25px;
        text-align: center;
    }
    
    .popup-content h2 {
        font-size: 1.6rem;
    }
    
    .popup-pricing .current-price {
        font-size: 2rem;
    }
    
    .exit-popup-simple {
        max-width: 95%;
    }
    
    .popup-content-simple {
        padding: 30px 20px;
    }
    
    .popup-content-simple h2 {
        font-size: 1.4rem;
    }
    
    .popup-price .price-new {
        font-size: 2rem;
    }
    
    .popup-product-image {
        max-width: 150px;
    }
}

/* Order Result Popups */
.order-result-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-result-overlay.active {
    opacity: 1;
    visibility: visible;
}

.order-result-popup {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

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

.popup-icon,
.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
}

.order-result-popup.success .popup-icon,
.success-icon {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: var(--white);
}

.order-result-popup.error .popup-icon,
.error-icon {
    background: linear-gradient(135deg, #f44336, #c62828);
    color: var(--white);
}

.result-message {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.result-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 20px 0;
    padding: 15px;
    background: #f0f7ff;
    border-radius: 10px;
    line-height: 1.5;
}

.success-btn {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-color: #1b5e20;
}

.success-btn:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    border-color: #0d3d10;
}

.error-btn {
    background: linear-gradient(135deg, #f44336, #c62828);
    border-color: #b71c1c;
}

.error-btn:hover {
    background: linear-gradient(135deg, #c62828, #b71c1c);
    border-color: #7f0000;
}

.secondary-btn {
    background: transparent;
    color: var(--gray);
    border: 2px solid #ddd;
    box-shadow: none;
    text-shadow: none;
    margin-left: 10px;
}

.secondary-btn:hover {
    background: #f5f5f5;
    color: var(--dark);
    border-color: #ccc;
    box-shadow: none;
}

.popup-close-x {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.popup-close-x:hover {
    background: #f0f0f0;
    color: #333;
}

.order-result-popup h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.order-details {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid #ddd;
}

.order-id {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.order-id strong {
    font-size: 1.4rem;
    color: #2f9bd4;
}

.customer-info {
    font-size: 1rem;
    color: var(--dark);
    margin: 10px 0;
}

.customer-info strong {
    color: var(--dark);
    font-weight: 600;
}

.email-notice,
.call-notice {
    font-size: 1rem;
    color: var(--gray);
    margin: 15px 0;
    line-height: 1.6;
}

.error-details {
    background: linear-gradient(135deg, #fff5f5, #ffe5e5);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #fc8181;
}

.error-details #errorMessageText {
    white-space: pre-line;
    text-align: left;
    display: block;
    line-height: 1.6;
}

.error-message {
    font-size: 1.05rem;
    color: #c53030;
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

.retry-notice {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.result-btn {
    background: linear-gradient(135deg, #2f9bd4, #1f86c0);
    color: #ffffff;
    border: 3px solid #1f86c0;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(47, 155, 212, 0.4), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    font-family: inherit;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.result-btn:hover {
    background: linear-gradient(135deg, #1f86c0, #1f86c0);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(47, 155, 212, 0.6), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border-color: #1e4a7a;
}

.result-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(47, 155, 212, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .order-result-popup {
        padding: 40px 30px;
        max-width: 95%;
    }
    
    .order-result-popup h2 {
        font-size: 1.6rem;
    }
    
    .popup-icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }
    
    .order-details {
        padding: 20px;
    }
    
    .result-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }
}

/* Product Carousel */
.product-carousel {
    padding: 80px 0;
    background: #f8f9fa;
}
.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #fff;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-slide {
    min-width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.carousel-slide img,
.carousel-slide .carousel-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.carousel-slide .carousel-media {
    background: #000;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.carousel-btn:hover { background: rgba(0,0,0,0.8); }
.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}
.carousel-dots .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.2s;
}
.carousel-dots .dot.active { background: #ff6b00; }
@media (max-width: 600px) {
    .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
}

/* Video Demo */
.video-feature {
    padding: 56px 0;
    background: #fff;
}
.video-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}
.video-feature-media {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.video-feature-text {
    max-width: 520px;
}
.video-feature-title {
    font-family: 'Anton', 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--dark, #1a1a1a);
    margin: 0 0 16px;
}
.video-feature-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray, #555);
    margin: 0;
}
/* Varios videos cargados: título arriba y 2-3 verticales en fila (desktop/tablet),
   apilados en una sola columna en mobile. */
.video-feature--2 .video-feature-grid,
.video-feature--3 .video-feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
}
.video-feature--2 .video-feature-text,
.video-feature--3 .video-feature-text {
    order: -1;
    max-width: none;
    margin: 0 auto;
    text-align: center;
}
.video-feature--2 .video-feature-media,
.video-feature--3 .video-feature-media {
    display: grid;
    gap: 18px;
    align-items: start;
}
.video-feature--2 .video-feature-media { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.video-feature--3 .video-feature-media { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.video-feature--2 .demo-video-wrap--vertical,
.video-feature--3 .demo-video-wrap--vertical { max-width: 100%; }
@media (max-width: 600px) {
    .video-feature--2 .video-feature-media,
    .video-feature--3 .video-feature-media { grid-template-columns: 1fr; }
    .video-feature--2 .demo-video-wrap--vertical,
    .video-feature--3 .demo-video-wrap--vertical { max-width: 300px; margin: 0 auto; }
}
/* Banner de ondas animadas (curvas blancas/negras/grises) */
.wave-banner {
    position: relative;
    height: 130px;
    overflow: hidden;
    background: #ffffff;
}
.wave-row {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    width: 200%;
    will-change: transform;
}
.wave-row svg {
    width: 50%;
    height: 100%;
    display: block;
}
.wave-row--1 { height: 100%; animation: wave-move 20s linear infinite; }
.wave-row--1 svg path { fill: #d9d9d9; }
.wave-row--2 { height: 82%; animation: wave-move 14s linear infinite reverse; }
.wave-row--2 svg path { fill: #8a8a8a; }
.wave-row--3 { height: 60%; animation: wave-move 10s linear infinite; }
.wave-row--3 svg path { fill: #121212; }
@keyframes wave-move {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .wave-banner { height: 90px; }
}
.demo-video {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.demo-video-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 240px;
}
.demo-video-wrap .demo-video { max-width: 100%; }
/* Variante vertical (formato celular 9:16) usada en la sección post-hero */
.demo-video-wrap--vertical {
    max-width: 300px;
}
.demo-video-wrap--vertical .demo-video {
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 18px;
    background: #000;
}
.demo-video-sound {
    position: absolute;
    left: 8px;
    bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: none;
    border-radius: 999px;
    background: rgba(0,0,0,0.62);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: background 0.15s ease;
}
.demo-video-sound:hover { background: rgba(0,0,0,0.8); }
.demo-video-sound.is-on { background: var(--brand, #2f9bd4); }
.demo-video-sound .dvs-icon { font-size: 14px; }
@media (max-width: 900px) {
    .video-feature { padding: 36px 0; }
    .video-feature-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .video-feature-text {
        max-width: none;
        text-align: center;
        order: -1;
    }
    .demo-video-wrap--vertical { max-width: 260px; }
}
@media (max-width: 480px) {
    .demo-video-wrap--vertical { max-width: 220px; }
}

/* ===== Social Proof Sales Popup ===== */
.sales-proof {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    padding: 14px 16px;
    max-width: 330px;
    border: 1px solid #eef1f4;
    border-left: 5px solid #28a745;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
    pointer-events: none;
}
.sales-proof.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.sales-proof-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.sales-proof-thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    background: #f2f5f8;
    border: 1px solid #eef1f4;
}
.sales-proof-body { flex: 1; min-width: 0; }
.sales-proof-text {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.35;
    margin: 0 0 3px;
    font-weight: 600;
}
.sales-proof-text strong { color: #ff6b00; }
.sales-proof-verified {
    font-size: 0.78rem;
    color: #28a745;
    font-weight: 600;
    margin: 0;
}
.sales-proof-close {
    position: absolute;
    top: 6px;
    right: 9px;
    background: none;
    border: none;
    font-size: 1.1rem;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    padding: 0;
}
.sales-proof-close:hover { color: #666; }

/* En todas las vistas (mobile, tablet y desktop): siempre abajo a la izquierda. */

@media (max-width: 400px) {
    .sales-proof {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

/* ===== Selector de ubicación (mapa) ===== */
.map-picker {
    margin-bottom: 20px;
}
.map-picker > label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}
.map-hint {
    font-size: 0.85rem;
    color: var(--gray, #666);
    margin: 0 0 10px;
}
.map-search-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.map-search-wrap input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1rem;
}
.map-search-wrap button {
    flex: 0 0 auto;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #2f9bd4, #2f9bd4);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
}
.map-search-wrap button:hover {
    opacity: .9;
}
.map-results {
    margin-bottom: 8px;
}
.map-results-hint {
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2c5fb3;
    background: #eef4ff;
    border: 1px solid #d3e1fb;
    border-radius: 8px 8px 0 0;
}
.map-results-hint + .map-result-item { border-radius: 0; }
.map-result-item {
    padding: 10px 12px;
    border: 1px solid #eee;
    border-bottom: none;
    background: #fafafa;
    cursor: pointer;
    font-size: 0.88rem;
    line-height: 1.3;
}
.map-result-item:first-child { border-radius: 8px 8px 0 0; }
.map-result-item:last-child { border-bottom: 1px solid #eee; border-radius: 0 0 8px 8px; }
.map-result-item:hover { background: #eef4ff; }
#deliveryMap {
    width: 100%;
    height: 260px;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
    z-index: 1;
}
.map-status {
    font-size: 0.85rem;
    color: #2e7d32;
    margin: 8px 0 0;
    min-height: 1.1em;
}
.map-status.error {
    color: #c62828;
}
@media (max-width: 480px) {
    #deliveryMap { height: 220px; }
    .map-search-wrap button { padding: 0 14px; }
}

/* Imagen + texto (sección beneficio, estilo electroarg) */
.image-text {
    padding: 70px 0;
    background: #fff;
}
.image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.image-text-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(20, 34, 59, .14);
}
.image-text .section-title {
    text-align: left;
    margin-bottom: 22px;
    line-height: 1.15;
}
.image-text-heading span {
    color: #2f9bd4;
}
.image-text-content p {
    color: var(--gray);
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 0 0 16px;
}
.image-text-content p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .image-text { padding: 48px 0; }
    .image-text-grid { grid-template-columns: 1fr; gap: 26px; }
    .image-text-media { order: -1; }
    .image-text .section-title { text-align: center; font-size: 2rem; }
    .image-text-content p { text-align: center; }
}
