
        :root {
            /* Sistema de color mejorado */
            --rojo-alfa: #8B0000;
            --rojo-oscuro: #5A0000;
            --negro-alfa: #111111;
            --gris-alfa: #1A1A1A;
            --dorado-alfa: #D4AF37;
            --gris-claro-alfa: #F8F8F8;
            --gris-medio-alfa: #666666;
            --blanco-alfa: #FFFFFF;
            
            /* Sombreados profesionales */
            --sombra-suave: 0 4px 20px rgba(0, 0, 0, 0.05);
            --sombra-media: 0 8px 30px rgba(0, 0, 0, 0.1);
            --sombra-fuerte: 0 15px 40px rgba(0, 0, 0, 0.15);
            --sombra-negra: 0 10px 25px rgba(0, 0, 0, 0.25);
            
            /* Transiciones */
            --transicion-rapida: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transicion-media: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transicion-lenta: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            
            /* Border radius */
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 20px;
            --radius-xxl: 30px;
            
            /* Espaciado */
            --espacio-xs: 0.5rem;
            --espacio-sm: 1rem;
            --espacio-md: 2rem;
            --espacio-lg: 3rem;
            --espacio-xl: 5rem;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--gris-medio-alfa);
            background-color: var(--gris-claro-alfa);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--negro-alfa);
        }
        
        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-padding {
            padding: var(--espacio-xl) 0;
        }
        
        /* ===== HEADER MEJORADO ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--sombra-suave);
            z-index: 1000;
            transition: all var(--transicion-media);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .header.scrolled {
            box-shadow: var(--sombra-media);
            background: rgba(255, 255, 255, 0.98);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }
        
        .logo img {
            height: 50px;
            transition: transform var(--transicion-rapida);
        }
        
        .logo:hover img {
            transform: scale(1.05);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text .primary {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--rojo-alfa);
            letter-spacing: -0.5px;
        }
        
        .logo-text .secondary {
            font-size: 0.8rem;
            color: var(--gris-medio-alfa);
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        .nav {
            display: flex;
            align-items: center;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
            gap: var(--espacio-md);
        }
        
        .nav-link {
            position: relative;
            text-decoration: none;
            color: var(--negro-alfa);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 0;
            transition: color var(--transicion-rapida);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--rojo-alfa);
            transition: width var(--transicion-media);
        }
        
        .nav-link:hover {
            color: var(--rojo-alfa);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--negro-alfa);
            cursor: pointer;
            padding: 10px;
        }
        
        /* ===== HERO MEJORADO ===== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
            margin-top: 80px;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.85) 0%, 
                rgba(139, 0, 0, 0.6) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            color: var(--blanco-alfa);
            max-width: 800px;
            padding: 0 var(--espacio-lg);
        }
        
        .hero-title {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--blanco-alfa);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 600px;
        }
        
        .hero-controls {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 3;
        }
        
        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all var(--transicion-rapida);
        }
        
        .hero-dot.active {
            background: var(--rojo-alfa);
            transform: scale(1.3);
        }
        
        /* ===== SECCIONES GENERALES ===== */
        .section-title {
            text-align: center;
            margin-bottom: var(--espacio-lg);
        }
        
        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--rojo-alfa);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gris-medio-alfa);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* ===== CORTES DE CARNE ===== */
        .meat-section {
            background: var(--blanco-alfa);
        }
        
        .meat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .meat-card {
            background: var(--blanco-alfa);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--sombra-suave);
            transition: all var(--transicion-media);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .meat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--sombra-fuerte);
        }
        
        .meat-image {
            height: 250px;
            width: 100%;
            overflow: hidden;
        }
        
        .meat-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transicion-media);
        }
        
        .meat-card:hover .meat-image img {
            transform: scale(1.05);
        }
        
        .meat-info {
            padding: 1.5rem;
        }
        
        .meat-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--negro-alfa);
        }
        
        .meat-info p {
            color: var(--gris-medio-alfa);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        
        .meat-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }
        
        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--rojo-alfa);
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            background: var(--rojo-alfa);
            color: var(--blanco-alfa);
            border: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--transicion-media);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            background: var(--rojo-oscuro);
            transform: translateY(-2px);
            box-shadow: var(--sombra-media);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--rojo-alfa);
            color: var(--rojo-alfa);
        }
        
        .btn-outline:hover {
            background: var(--rojo-alfa);
            color: var(--blanco-alfa);
        }
        
        .btn-center {
            display: flex;
            justify-content: center;
            margin-top: var(--espacio-lg);
        }
        
        /* ===== EMBUTIDOS ===== */
        .sausage-section {
            background: linear-gradient(135deg, 
                rgba(139, 0, 0, 0.03) 0%, 
                rgba(26, 26, 26, 0.02) 100%);
        }
        
        .sausage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .sausage-card {
            background: var(--blanco-alfa);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--sombra-suave);
            transition: all var(--transicion-media);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .sausage-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--sombra-fuerte);
        }
        
        .sausage-image {
            height: 300px;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gris-claro-alfa);
            padding: 2rem;
        }
        
        .sausage-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform var(--transicion-media);
        }
        
        .sausage-card:hover .sausage-image img {
            transform: scale(1.05);
        }
        
        .sausage-info {
            padding: 1.5rem;
        }
        
        .sausage-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--negro-alfa);
        }
        
        .sausage-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--rojo-alfa);
            margin: 1rem 0;
        }
        
        .sausage-features {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--gris-medio-alfa);
        }
        
        .feature-item i {
            color: var(--rojo-alfa);
            font-size: 0.8rem;
        }
        
        /* ===== NOSOTROS ===== */
        .about-section {
            background: var(--blanco-alfa);
            position: relative;
            overflow: hidden;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--rojo-alfa), var(--dorado-alfa), var(--rojo-oscuro));
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-image {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--sombra-fuerte);
            position: relative;
            border: 3px solid var(--rojo-alfa);
        }
        
        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform var(--transicion-media);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--negro-alfa);
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .about-feature i {
            color: var(--rojo-alfa);
            font-size: 1.5rem;
            background: rgba(139, 0, 0, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .about-feature h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--negro-alfa);
        }
        
        /* ===== CONTACTO ===== */
        .contact-section {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)), 
                        url('https://images.unsplash.com/photo-1594133552589-875ec86978d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--blanco-alfa);
        }
        
        .contact-section .section-title h2 {
            color: var(--blanco-alfa);
        }
        
        .contact-section .section-title h2::after {
            background: var(--dorado-alfa);
        }
        
        .contact-section .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--blanco-alfa);
        }
        
        .contact-details {
            margin-top: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            background: var(--rojo-alfa);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--blanco-alfa);
        }
        
        .contact-text p,
        .contact-text a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color var(--transicion-rapida);
        }
        
        .contact-text a:hover {
            color: var(--dorado-alfa);
        }
        
        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .form-group label {
            font-weight: 600;
            color: var(--blanco-alfa);
        }
        
        .form-control {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-md);
            color: var(--blanco-alfa);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all var(--transicion-rapida);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--rojo-alfa);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* ===== FOOTER ===== */
        .footer {
            background: linear-gradient(135deg, var(--negro-alfa), var(--rojo-oscuro));
            color: var(--blanco-alfa);
            padding: 4rem 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo img {
            height: 40px;
            margin-bottom: 1rem;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.8);
            margin: 1rem 0;
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--blanco-alfa);
            text-decoration: none;
            transition: all var(--transicion-rapida);
        }
        
        .social-link:hover {
            background: var(--rojo-alfa);
            transform: translateY(-3px);
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--blanco-alfa);
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--dorado-alfa);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all var(--transicion-rapida);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-links a:hover {
            color: var(--dorado-alfa);
            padding-left: 5px;
        }
        
        .footer-links a i {
            font-size: 0.8rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* ===== MODAL ===== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transicion-lenta);
            padding: 20px;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: var(--blanco-alfa);
            border-radius: var(--radius-xl);
            width: 100%;
            max-width: 1200px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(30px);
            transition: transform var(--transicion-lenta);
            box-shadow: var(--sombra-negra);
        }
        
        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--rojo-alfa);
            color: var(--blanco-alfa);
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transicion-rapida);
        }
        
        .modal-close:hover {
            background: var(--rojo-oscuro);
            transform: rotate(90deg);
        }
        
        .modal-product {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            padding: 3rem;
        }
        
        .modal-images {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .main-image {
            width: 100%;
            height: 400px;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        
        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .thumbnails {
            display: flex;
            gap: 1rem;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            cursor: pointer;
            opacity: 0.6;
            transition: all var(--transicion-rapida);
            border: 2px solid transparent;
        }
        
        .thumbnail:hover,
        .thumbnail.active {
            opacity: 1;
            border-color: var(--rojo-alfa);
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .modal-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .modal-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: var(--negro-alfa);
        }
        
        .modal-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--dorado-alfa);
            font-size: 0.9rem;
        }
        
        .modal-rating span {
            color: var(--gris-medio-alfa);
            margin-left: 0.5rem;
        }
        
        .modal-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--rojo-alfa);
        }
        
        .modal-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gris-medio-alfa);
        }
        
        .modal-features h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .modal-features ul {
            list-style: none;
        }
        
        .modal-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--gris-medio-alfa);
        }
        
        .modal-features li i {
            color: var(--rojo-alfa);
            margin-top: 0.25rem;
        }
        
        .modal-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .qty-btn {
            width: 40px;
            height: 40px;
            background: var(--gris-claro-alfa);
            border: 1px solid #ddd;
            border-radius: var(--radius-sm);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all var(--transicion-rapida);
        }
        
        .qty-btn:hover {
            background: var(--rojo-alfa);
            color: var(--blanco-alfa);
            border-color: var(--rojo-alfa);
        }
        
        .qty-input {
            width: 60px;
            height: 40px;
            text-align: center;
            border: 1px solid #ddd;
            border-radius: var(--radius-sm);
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .modal-product {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .main-image {
                height: 300px;
            }
            
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                height: 70px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--blanco-alfa);
                box-shadow: var(--sombra-media);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all var(--transicion-media);
            }
            
            .nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-list {
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }
            
            .hero {
                min-height: 600px;
            }
            
            .hero-content {
                align-items: center;
                text-align: center;
                padding: 0 var(--espacio-sm);
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .meat-grid,
            .sausage-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-product {
                padding: 2rem;
            }
            
            .modal-actions {
                flex-direction: column;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .modal-product {
                padding: 1.5rem;
            }
            
            .modal-header h1 {
                font-size: 2rem;
            }
            
            .modal-price {
                font-size: 2rem;
            }
            
            .about-text h3 {
                font-size: 2rem;
            }
        }
        /* ===== SECCIÓN faeneo ===== */
        .faeneo-section {
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .faeneo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #8B0000, #5A0000, #8B0000);
        }
        
        .faeneo-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 4rem;
            padding: 0 20px;
        }
        
        .faeneo-intro h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #111111;
        }
        
        .faeneo-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #666666;
        }
        
        .faeneo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .faeneo-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(139, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .faeneo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(139, 0, 0, 0.15);
            border-color: #8B0000;
        }
        
        .faeneo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: #8B0000;
        }
        
        .faeneo-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #8B0000, #5A0000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        
        .faeneo-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #111111;
        }
        
        .faeneo-card p {
            color: #666666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .faeneo-features {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .faeneo-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: #444444;
        }
        
        .faeneo-feature i {
            color: #8B0000;
            font-size: 0.9rem;
        }
        
        .faeneo-process {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            margin-top: 3rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(139, 0, 0, 0.1);
        }
        
        .process-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .process-title h3 {
            font-size: 2rem;
            color: #111111;
            margin-bottom: 0.5rem;
        }
        
        .process-title p {
            color: #666666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .process-step {
            text-align: center;
            padding: 2rem 1rem;
            position: relative;
        }
        
        .process-step-number {
            width: 50px;
            height: 50px;
            background: #8B0000;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .process-step h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #111111;
        }
        
        .process-step p {
            color: #666666;
            line-height: 1.6;
        }
        
        .faeneo-standards {
            background: linear-gradient(135deg, #8B0000, #5A0000);
            color: white;
            border-radius: 12px;
            padding: 3rem;
            margin-top: 3rem;
        }
        
        .standards-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .standards-title h3 {
            font-size: 2rem;
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .standards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .standard-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .standard-item i {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #D4AF37;
        }
        
        .standard-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
        }
        
        .standard-item p {
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .faeneo-cta {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(90, 0, 0, 0.03));
            border-radius: 12px;
            border: 1px solid rgba(139, 0, 0, 0.1);
        }
        
        .faeneo-cta h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #111111;
        }
        
        .faeneo-cta p {
            color: #666666;
            max-width: 700px;
            margin: 0 auto 1.5rem;
        }
        
        @media (max-width: 768px) {
            .faeneo-card {
                padding: 1.5rem;
            }
            
            .faeneo-process,
            .faeneo-standards {
                padding: 2rem 1.5rem;
            }
            
            .process-step {
                padding: 1.5rem 0.5rem;
            }
        }
        
        /* Se agrega al menú de navegación */
        .nav-list li:nth-child(4) a {
            /* Ajustar para el nuevo orden del menú */
        }
        /* Estilos para la introducción con imagen */
.faeneo-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.faeneo-intro-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111111;
}

.faeneo-intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 0;
}

.faeneo-intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid #8B0000;
}

.faeneo-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faeneo-intro-image:hover .faeneo-image {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

/* Alternativa: Diseño con imagen de fondo */
.faeneo-intro-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    color: white;
}

.faeneo-intro-bg h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.faeneo-intro-bg p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .faeneo-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faeneo-intro-text h3 {
        font-size: 2rem;
    }
    
    .faeneo-image {
        height: 250px;
    }
    
    .faeneo-intro-bg {
        padding: 2.5rem 1.5rem;
    }
    
    .faeneo-intro-bg h3 {
        font-size: 2rem;
    }
}
.hero-image-intro {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.hero-image-intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem;
    color: white;
}

.hero-image-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-image-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.9);
}
    