
        .pets-hero {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.8)), 
                        url('../img/products/mascotas/031.png') center/cover;
            color: white;
            padding: 5rem 0 4rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        .pets-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .pets-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: white;
        }

        .pets-hero h1 .highlight {
            color: #FF8C42;
        }

        .pets-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .pets-categories {
            padding: 3rem 0;
            background: #f8f9fa;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .pet-category-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 3px solid transparent;
            text-align: center;
        }

        .pet-category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            border-color: #FF8C42;
        }

        .category-icon {
            background: linear-gradient(135deg, #FF8C42 0%, #FF6B6B 100%);
            padding: 2rem;
            color: white;
            font-size: 3rem;
        }

        .category-content {
            padding: 1.5rem;
        }

        .category-content h3 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }

        .category-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .pets-promo {
            background: linear-gradient(135deg, #FF8C42 0%, #FF6B6B 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin: 4rem 0;
        }

        .promo-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .promo-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .promo-text {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .promo-btn {
            background: white;
            color: #FF8C42;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .promo-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .pets-benefits {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .benefit-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #FF8C42 0%, #FF6B6B 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }

        .benefit-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .benefit-description {
            color: #666;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .pets-hero {
                padding: 3rem 0 2rem;
            }

            .pets-hero h1 {
                font-size: 2.2rem;
            }

            .pets-hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .categories-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
            }

            .products-grid-pets {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .promo-title {
                font-size: 2rem;
            }

            .promo-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .pets-hero h1 {
                font-size: 1.8rem;
            }

            .categories-grid {
                grid-template-columns: 1fr;
            }

            .products-grid-pets {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .contact-info {
            margin-top: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            text-align: center;
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
            color: #666;
            font-size: 0.9rem;
        }
        
        .contact-btn {
            background: #27ae60;
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .contact-btn:hover {
            background: #219653;
            transform: scale(1.05);
        }
    