  :root {
            --primary-color: #1a365d;
            --secondary-color: #2c5282;
            --accent-color: #38a169;
            --success-color: #2ed63e;
            --warning-color: #5de53e;
            --light-color: #f7fafc;
            --dark-color: #1a202c;
            --text-light: #718096;
            --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
            --gradient-accent: linear-gradient(135deg, #3ee543 0%, #0f44df 100%);
            --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #f8fafc;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        .header {
            background: var(--gradient-primary);
            padding: 15px 0;
            box-shadow: var(--shadow-medium);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            height: 50px;
        }

        /* Top Header */
        .top-header-area {
            background: var(--gradient-primary);
            padding: 10px 0;
            color: white;
            font-size: 14px;
        }

        .top-header-area ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .top-header-area a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-header-area a:hover {
            color: var(--warning-color);
            transform: translateY(-2px);
        }

        .share-icons ul {
            justify-content: end;
            gap: 15px;
        }

        .share-icons a {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .share-icons a:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Navbar */
        .navbar {
            background: white !important;
            padding: 15px 0;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-brand img {
            height: 60px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            font-weight: 600;
            color: var(--primary-color) !important;
            padding: 10px 20px !important;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 80%;
        }

        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }

        /* Hero Section Ofertas */
        .offers-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1563720223880-4d93eef1f1c2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: white;
        }

        .offers-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .offers-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Ofertas Section */
        .offers-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;  
    display: flex;  
    flex-direction: column;  
}

        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .offer-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    flex: 1;  
}
        .offer-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .offer-card:hover .offer-image img {
            transform: scale(1.05);
        }

        .offer-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            z-index: 10;
        }

        .offer-content {
    padding: 15px;  
    flex-shrink: 0;  
}
        .offer-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .offer-description {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .offer-price {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .current-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-right: 15px;
        }

        .original-price {
            font-size: 1.1rem;
            text-decoration: line-through;
            color: var(--text-light);
        }

        .discount {
            background: #fee2e2;
            color: #ef4444;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-left: auto;
        }

        .offer-actions {
            display: flex;
            gap: 10px;
        }

        .btn-primary-custom {
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            flex: 1;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            background: var(--gradient-accent);
            color: white;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 8px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            flex: 1;
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        /* Categorías */
        .categories-section {
            padding: 60px 0;
            background: var(--light-color);
        }

        .category-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .category-btn {
            background: white;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-btn.active,
        .category-btn:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Newsletter */
        .newsletter-section {
            background: var(--gradient-primary);
            padding: 80px 0;
            color: white;
            text-align: center;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
        }

        /* Footer */
        .footer-modern {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-widget h4 {
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-widget ul {
            list-style: none;
            padding: 0;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-widget ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .offers-hero h1 {
                font-size: 2.2rem;
            }
            
            .offers-hero p {
                font-size: 1rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .category-filter {
                gap: 10px;
            }
            
            .category-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }
		
		
		.whatsapp-offer-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 20;
}

.offer-card:hover .whatsapp-offer-btn {
    opacity: 1;
    bottom: 20px;
}

.whatsapp-offer-btn:hover {
    background-color: #128C7E;
    transform: translateX(-50%) scale(1.05);
}