
        /* ===== VARIABLES ===== */
        :root {
            --cruz-red: #FD0400;
            --cruz-yellow: #FFFF00;
            --cruz-black: #000000;
            --cruz-white: #FFFFFF;
            --cruz-gray: #f8f9fa;
            --font: 'Inter', sans-serif;

        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font);
            background-color: var(--cruz-white);
            color: var(--cruz-black);
            scroll-behavior: smooth;
        }

        /* ===== TOPBAR (FONDO ROJO) ===== */
        .topbar {
            background: var(--cruz-yellow);
            color: var(--cruz-red);
            font-size: 0.85rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(
            );
            position: relative;
            z-index: 1030;
        }
        @media (max-width: 768px) {
            .topbar {
            background: var(--cruz-yellow);
            color: var(--cruz-red);
            font-size: 0.70rem;
            padding: 0.2rem 0;
            border-bottom: 1px solid var(
            );
            position: relative;
            z-index: 1030;
        }
        }
        .topbar .social-icons a {
            color: rgba(255, 255, 255, 0.7);
            margin-right: 1.2rem;
            font-size: 1.15rem;
            transition: 0.3s ease;
            display: inline-block;
        }
        .topbar .social-icons a:hover {
            color: var(--cruz-red);
            transform: translateY(-2px);
        }
        .topbar .contact-info a {
            color: var(--cruz-red);
            text-decoration: none;
            margin-left: 1.5rem;
            transition: 0.3s ease;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .topbar .contact-info a:hover {
            color: var(--cruz-red);
        }
        .topbar .contact-info i {
            margin-right: 6px;
            font-size: 1.1rem;
        }
        .topbar .divider {
            color: rgba(255, 255, 255, 0.2);
            margin: 0 0.5rem;
        }

        /* ===== NAVBAR ===== */
        .navbar-cruz {
            background-color: var(--cruz-black);
            padding: 0.5rem 0;
            border-bottom: 3px solid var(--cruz-yellow);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .navbar-cruz .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.8rem;
            letter-spacing: -1px;
            color: var(--cruz-white) !important;
            text-decoration: none;
        }

        .navbar-cruz .navbar-brand img {
            height: 45px;
            width: auto;
        }

        .navbar-cruz .navbar-brand .brand-text {
            color: var(--cruz-black);
        }

        .navbar-cruz .navbar-brand .brand-text span {
            color: var(--cruz-yellow);
        }

        .navbar-cruz .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem 1rem !important;
            transition: 0.2s;
            border-radius: 6px;
        }

        .navbar-cruz .nav-link:hover,
        .navbar-cruz .nav-link.active {
            color: var(--cruz-yellow) !important;
            background-color: rgba(255, 252, 1, 0.12);
        }

        .navbar-cruz .cart-icon {
            color: var(--cruz-black);
            font-size: 1.4rem;
            position: relative;
            transition: 0.2s;
        }

        .navbar-cruz .cart-icon:hover {
            color: var(--cruz-yellow);
        }

        .navbar-cruz .cart-badge {
            position: absolute;
            top: -10px;
            right: -12px;
            background-color: var(--cruz-red);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--cruz-black);
        }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(135deg, var(--cruz-black) 0%, #1a1a1a 100%);
            padding: 4rem 0 5rem;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(253, 4, 0, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero .hero-badge {
            display: inline-block;
            background-color: var(--cruz-yellow);
            color: var(--cruz-black);
            font-weight: 800;
            font-size: 0.8rem;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
        }

        .hero h1 {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.1;
            color: #fff;
        }

        .hero h1 .highlight-red {
            color: var(--cruz-red);
        }

        .hero h1 .highlight-yellow {
            color: var(--cruz-yellow);
        }

        .hero p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            max-width: 550px;
            line-height: 1.6;
        }

        .hero .btn-cruz-primary {
            background-color: var(--cruz-red);
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            transition: 0.25s;
            box-shadow: 0 8px 20px rgba(253, 4, 0, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
        }

        .hero .btn-cruz-primary:hover {
            background-color: #d40300;
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(253, 4, 0, 0.5);
            color: #fff;
        }

        .hero .btn-cruz-outline {
            background: transparent;
            border: 2px solid var(--cruz-yellow);
            color: var(--cruz-yellow);
            font-weight: 700;
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            transition: 0.25s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
        }

        .hero .btn-cruz-outline:hover {
            background: var(--cruz-yellow);
            color: var(--cruz-black);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 252, 1, 0.3);
        }

        .hero .hero-image {
            position: relative;
            z-index: 2;
        }

        .hero .hero-image img {
            max-width: 100%;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
        }

        
          
        /* ===== FOOTER CON FRANJA ROJA ===== */
        .footer-cruz {
            background: var(--cruz-black);
            color: rgba(255, 255, 255, 0.8);
            padding: 0;
            border-top: 3px solid var(--cruz-yellow);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Franja roja superior */
        .footer-red-stripe {
            background: var(--cruz-red);
            padding: 0.7rem 0;
            color: #ffffff;
            font-size: 0.9rem;
            text-align: center;
            border-bottom: 2px solid var(--cruz-yellow);
            font-weight: 600;
        }

        .footer-red-stripe .cat-icon {
            color: var(--cruz-yellow);
            font-size: 1.3rem;
            margin: 0 4px;
            display: inline-block;
        }

        /* Contenido principal del footer */
        .footer-content {
            padding: 3rem 0 2rem;
            background: var(--cruz-black);
        }

        .footer-cruz a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: 0.2s;
        }

        .footer-cruz a:hover {
            color: var(--cruz-yellow);
        }

        .footer-cruz .brand-footer {
            font-weight: 800;
            font-size: 2rem;
            color: var(--cruz-white);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-cruz .brand-footer img {
            height: 50px;
            width: auto;
        }

        .footer-cruz .brand-footer span {
            color: var(--cruz-yellow);
        }

        .footer-cruz .slogan {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        .footer-cruz .social-icons a {
            display: inline-block;
            font-size: 1.6rem;
            margin: 0 0.6rem 0 0;
            color: rgba(255, 255, 255, 0.5);
            transition: 0.2s;
        }

        .footer-cruz .social-icons a:hover {
            color: var(--cruz-yellow);
            transform: translateY(-3px);
        }

        .footer-cruz .footer-contact a {
            color: rgba(255, 255, 255, 0.6);
            transition: 0.2s;
        }

        .footer-cruz .footer-contact a:hover {
            color: var(--cruz-yellow);
        }

        /* Estilos para las columnas del footer */
        .footer-col-title {
            color: var(--cruz-white);
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-bottom: 2px solid var(--cruz-yellow);
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        .footer-col {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col li {
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
        }

        .footer-col li a {
            color: rgba(255, 255, 255, 0.6);
            transition: 0.2s;
        }

        .footer-col li a:hover {
            color: var(--cruz-yellow);
            padding-left: 5px;
        }

        .footer-col li i {
            color: var(--cruz-yellow);
            width: 18px;
        }

        /* Franja inferior de políticas */
        .footer-policies {
            background: var(--cruz-black);
            padding: 1rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-policies a {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            margin: 0 0.8rem;
            transition: 0.2s;
        }

        .footer-policies a:hover {
            color: var(--cruz-yellow);
        }

        .footer-policies .divider {
            color: rgba(255, 255, 255, 0.15);
        }

        /* Franja roja inferior con créditos */
        .footer-red-stripe-bottom {
            background: var(--cruz-red);
            padding: 0.7rem 0;
            color: #ffffff;
            font-size: 0.85rem;
            border-top: 2px solid var(--cruz-yellow);
            font-weight: 500;
        }

        .footer-red-stripe-bottom a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
        }

        .footer-red-stripe-bottom a:hover {
            color: var(--cruz-yellow);
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .footer-content {
                padding: 2rem 0 1rem;
            }
            .footer-col-title {
                margin-top: 1.5rem;
            }
            .footer-cruz .brand-footer {
                justify-content: center;
            }
            .footer-cruz .slogan {
                text-align: center;
            }
            .footer-cruz .social-icons {
                text-align: center;
            }
            .footer-cruz .footer-contact {
                text-align: center;
                margin-top: 1rem;
            }
            .footer-policies {
                text-align: center;
            }
            .footer-policies a {
                display: inline-block;
                margin: 0.3rem 0.5rem;
            }
        }

        @media (max-width: 768px) {
            .footer-col-title {
                margin-top: 1.5rem;
            }
            .footer-red-stripe-bottom .text-md-end {
                text-align: center !important;
                margin-top: 0.5rem;
            }
            .footer-red-stripe-bottom .text-md-start {
                text-align: center !important;
            }
        }

        /* ===== BOTÓN FLOTANTE WHATSAPP ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: 0.3s;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #20b85f;
            color: white;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
        }

       

        /* ===== TOAST ===== */
        .toast-cruz {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--cruz-black);
            color: #fff;
            padding: 1rem 1.8rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-left: 6px solid var(--cruz-yellow);
            transform: translateY(120px);
            opacity: 0;
            transition: 0.4s ease;
            z-index: 9999;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .toast-cruz.show {
            transform: translateY(0);
            opacity: 1;
        }

        .toast-cruz i {
            color: var(--cruz-yellow);
            font-size: 1.6rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero {
                padding: 2.5rem 0 3rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .hero .hero-image {
                margin-top: 2rem;
            }
            .hero .hero-image img {
                max-width: 80%;
                display: block;
                margin: 0 auto;
            }
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 2rem;
                bottom: 20px;
                right: 20px;
            }
            .topbar .contact-info a {
                margin-left: 0.8rem;
                font-size: 0.5rem;
            }
            .delivery-card {
                padding: 1.5rem 1rem;
            }
            .topbar .divider {
                display: none;
            }
            .footer-red-stripe {
                font-size: 0.75rem;
                padding: 0.5rem 0;
            }
            .footer-red-stripe .separator {
                display: none;
            }
            .footer-red-stripe .d-inline-block {
                display: block !important;
                margin: 2px 0;
            }
        }

        @media (max-width: 576px) {
            .navbar-cruz .navbar-brand img {
                height: 35px;
            }
            .navbar-cruz .navbar-brand .brand-text {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .product-card .card-img-top {
                font-size: 3rem;
                padding: 1.5rem 0.5rem;
            }
            .whatsapp-float {
                width: 45px;
                height: 45px;
                font-size: 1.8rem;
                bottom: 15px;
                right: 15px;
            }
            .topbar .social-icons a {
                margin-right: 0.6rem;
                font-size: 0.9rem;
            }
            .topbar .contact-info {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.3rem 0.8rem;
            }
            .topbar .contact-info a {
                margin-left: 0;
                font-size: 0.65rem;
            }
        }
    /* ===== SOBRE NOSOTROS ===== */
    .about-section {
        background: var(--cruz-white);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(253, 4, 0, 0.03) 0%, transparent 70%);
        pointer-events: none;
        animation: float 8s ease-in-out infinite;
    }

    .about-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 40%;
        height: 100%;
        background: radial-gradient(ellipse, rgba(255, 252, 1, 0.05) 0%, transparent 70%);
        pointer-events: none;
        animation: floatReverse 10s ease-in-out infinite;
    }

    .about-icon-wrapper {
        background: var(--cruz-yellow);
        width: 72px;
        height: 72px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 4px 20px rgba(253, 4, 0, 0.15);
        position: relative;
        animation: float 4s ease-in-out infinite;
    }

    .about-icon-wrapper:nth-child(2) {
        animation-delay: 0.5s;
    }

    .about-icon-wrapper:nth-child(3) {
        animation-delay: 1s;
    }

    .about-icon-wrapper i {
        font-size: 2.4rem;
        color: var(--cruz-red);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .about-icon-wrapper:hover {
        transform: scale(1.1) rotate(-5deg) !important;
        box-shadow: 0 12px 40px rgba(253, 4, 0, 0.3);
        animation-play-state: paused;
    }

    .about-icon-wrapper:hover i {
        transform: rotate(10deg) scale(1.1);
        color: var(--cruz-black);
    }

    .about-card {
        background: var(--cruz-white);
        border-radius: 24px;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        border-left: 6px solid var(--cruz-red);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        z-index: 1;
    }

    .about-card:hover {
        box-shadow: 0 20px 60px rgba(253, 4, 0, 0.12);
        transform: translateY(-5px) scale(1.01);
    }

    .stat-item {
        background: var(--cruz-gray);
        padding: 0.8rem 1.2rem;
        border-radius: 12px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid transparent;
        cursor: default;
    }

    .stat-item:hover {
        background: var(--cruz-white);
        border-color: var(--cruz-yellow);
        box-shadow: 0 8px 25px rgba(253, 4, 0, 0.08);
        transform: translateX(8px) scale(1.02);
    }

    .stat-item i {
        transition: all 0.4s ease;
    }

    .stat-item:hover i {
        transform: scale(1.3) rotate(10deg);
    }

    /* ===== MISIÓN, VISIÓN Y VALORES ===== */
    .mission-vision-section {
        background: var(--cruz-gray);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    .mission-vision-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 50%, rgba(253, 4, 0, 0.02) 0%, transparent 50%);
        pointer-events: none;
    }

    .mv-card {
        background: var(--cruz-white);
        border-radius: 24px;
        padding: 2.5rem 2rem;
        height: 100%;
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid rgba(0, 0, 0, 0.04);
        position: relative;
        overflow: hidden;
        cursor: default;
    }

    .mv-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(253, 4, 0, 0.03) 0%, transparent 70%);
        transition: all 0.6s ease;
        pointer-events: none;
    }

    .mv-card:hover::before {
        transform: scale(2);
    }

    .mv-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--cruz-yellow), var(--cruz-red), var(--cruz-yellow));
        background-size: 200% 100%;
        transform: scaleX(0);
        transition: transform 0.6s ease;
        transform-origin: center;
    }

    .mv-card:hover::after {
        transform: scaleX(1);
        animation: shimmer 2s infinite;
    }

    .mv-card:hover {
        transform: translateY(-12px) scale(1.01);
        box-shadow: 0 25px 60px rgba(253, 4, 0, 0.1);
        border-color: rgba(253, 4, 0, 0.1);
    }

    .mv-icon {
        font-size: 2.6rem;
        color: var(--cruz-red);
        background: rgba(253, 4, 0, 0.08);
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        margin-bottom: 1.2rem;
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .mv-card:hover .mv-icon {
        background: var(--cruz-yellow);
        color: var(--cruz-black);
        transform: scale(1.1) rotate(-8deg);
        box-shadow: 0 8px 30px rgba(253, 4, 0, 0.15);
    }

    .mv-card h4 {
        font-weight: 800;
        font-size: 1.3rem;
        color: var(--cruz-black);
        margin-bottom: 0.8rem;
        transition: all 0.3s ease;
    }

    .mv-card:hover h4 {
        color: var(--cruz-red);
        transform: translateX(4px);
    }

    .mv-card p {
        color: #555;
        line-height: 1.8;
        font-size: 0.98rem;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 0.5rem;
    }

    .values-grid li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        font-size: 0.92rem;
        color: var(--cruz-black);
        padding: 0.5rem 0.8rem;
        background: var(--cruz-gray);
        border-radius: 10px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: default;
    }

    .values-grid li:hover {
        background: var(--cruz-yellow);
        transform: translateX(8px) scale(1.03);
        box-shadow: 0 4px 15px rgba(253, 4, 0, 0.1);
    }

    .values-grid li i {
        color: var(--cruz-red);
        font-size: 1.2rem;
        transition: all 0.4s ease;
    }

    .values-grid li:hover i {
        transform: scale(1.3) rotate(20deg);
    }

    /* ===== SERVICIOS ===== */
    .services-section {
        background: var(--cruz-white);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }