@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@700&family=Nunito:wght@800&display=swap');
      
      :root {
            --dorado: #e6b71c;
            --dorado-oscuro: #B8860B;
            --marron: #8B4513;
            --marron-claro: #A0522D;
            --crema: #eeece6;
            --blanco: #FFFFFF;
            --negro: #333333;
            --sombra: rgba(0,0,0,0.1);
            --transicion: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f9f6f0 0%, #fff8ee 100%);
            color: var(--negro);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .btn {
            display: inline-block;
            background: var(--dorado);
            color: var(--blanco);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transicion);
            border: 2px solid var(--dorado);
            cursor: pointer;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .btn:hover {
            background: transparent;
            color: var(--dorado);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--dorado);
            border: 2px solid var(--dorado);
        }

        .btn-outline:hover {
            background: var(--dorado);
            color: var(--blanco);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            display: inline-block;
            margin-bottom: 20px;
            color: var(--marron);
            position: relative;
        }

        .section-title h2:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--dorado);
            margin: 15px auto;
            border-radius: 2px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.6;
        }

  /* HEADER  */
header {
    background: linear-gradient(135deg, #5D2906 0%, #2a6b1a 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 3px solid #e6c41f;
    transition: all 0.4s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(139, 69, 19, 0.3);
}

.logo:hover {
    transform: translateY(-3px);
    background: rgba(139, 69, 19, 0.5);
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: #6d8c2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid #e6c41f;
}

.logo-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent 70%);
}

.logo-icon i {
    color: #f1f1f1;
    font-size: 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon i {
    transform: scale(1.1);
    color: #ffd700;
}

.logo-text {
    font-family: 'Fredoka', 'Nunito', 'Montserrat', Verdana, sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #e6c41f;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.logo-text span {
    color: #c5a227;
    position: relative;
    transition: all 0.3s ease;
}

.logo:hover .logo-text span {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo-text:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #e6c41f, #ffffff, #e6c41f);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.logo:hover .logo-text:after {
    height: 4px;
    background: linear-gradient(to right, #ffd700, #ffffff, #ffd700);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    background: rgba(93, 41, 6, 0.6);
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3), 0 3px 10px rgba(0, 0, 0, 0.2);
}

.nav-links li {
    margin: 0 20px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #e6c41f;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    font-size: 18px;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #e6c41f, #ffd700, #e6c41f);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.nav-links a:hover:after {
    width: 100%;
    background: linear-gradient(to right, #ffd700, #ffffff, #ffd700);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.mobile-menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #ffffffcb;
    background: linear-gradient(135deg, #865424 0%, #e6c41f 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #e6c41f 0%, #ffd700 100%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}



@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(93, 41, 6, 0.95);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: all 0.5s ease;
        z-index: 1000;
        box-shadow: none;
        border-radius: 0;
        padding: 20px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        font-size: 24px;
    }
}
        /* HERO SECTION */
        .hero {
            padding: 200px 0 120px;
            position: relative;
            overflow: hidden;
            background: 
                linear-gradient(rgba(163, 158, 149, 0.85), rgba(146, 130, 67, 0.9)),
                url('https://images.unsplash.com/photo-1568640347023-a616a30bc3bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: rgba(255, 251, 238, 0.541);
            z-index: -1;
            border-radius: 0 0 0 120px;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
        }
        
        .hero:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 0L0 0 892.25 114.72 1200 0z" fill="%23ffffff"/></svg>');
            background-size: cover;
            background-position: bottom;
            z-index: 0;
        }

        .hero-deco {
            position: absolute;
            z-index: 1;
        }
        
        .hero-deco.dog-paw-1 {
            top: 20%;
            left: 5%;
            font-size: 40px;
            color: rgba(230, 196, 31, 0.3);
            transform: rotate(25deg);
            animation: rotate 15s linear infinite;
        }
        
        .hero-deco.dog-paw-2 {
            bottom: 25%;
            right: 15%;
            font-size: 60px;
            color: rgba(42, 107, 26, 0.2);
            transform: rotate(-15deg);
            animation: rotateReverse 18s linear infinite;
        }
        
        .hero-deco.dog-bowl {
            bottom: 15%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: url('https://cdn-icons-png.flaticon.com/512/1581/1581630.png') no-repeat center center/contain;
            opacity: 0.1;
            transform: rotate(-20deg);
        }
        
        .hero-deco.dog-bone {
            top: 25%;
            right: 8%;
            width: 60px;
            height: 60px;
            background: url('https://cdn-icons-png.flaticon.com/512/616/616490.png') no-repeat center center/contain;
            opacity: 0.15;
            transform: rotate(15deg);
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes rotateReverse {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(-360deg);
            }
        }

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e6c41f 0%, #ffd700 100%);
    color: #5D2906;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(230, 196, 31, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 196, 31, 0.6);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 12px rgba(230, 196, 31, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 196, 31, 0);
    }
}

.hero-badge:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(25deg);
    transition: all 0.6s;
}

.hero-badge:hover:after {
    left: 120%;
}

.hero h1 {
    font-family: 'Fredoka', 'Nunito', 'Montserrat', Verdana, sans-serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #5D2906;
    text-shadow: 
        1px 1px 2px rgba(255, 255, 255, 0.8),
        3px 3px 8px rgba(93, 41, 6, 0.2);
    letter-spacing: -1px;
    position: relative;
    animation: bounceIn 1s ease-out;
}


.hero h1 span {
    color: #2a6b1a;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(42, 107, 26, 0.3);
}

.hero h1 span:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(212, 175, 55, 0.3);
    z-index: -1;
    border-radius: 3px;
}

.hero p {
    font-size: 26px; /* Tamaño aumentado para mejor legibilidad */
    margin-bottom: 40px; /* Más espacio para respiración */
    color: #2a1e0a; /* Color más rico y oscuro para mejor contraste */
    max-width: 650px; /* Ancho ligeramente mayor */
    line-height: 1.8; /* Mayor altura de línea para mejor lectura */
    font-weight: 600; /* Peso más fuerte para destacar */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7); /* Sombra sutil para separar del fondo */
    position: relative; /* Para efectos adicionales */
    padding-left: 25px; /* Espacio para el elemento decorativo */
    font-style: italic; /* Ligero énfasis */
    letter-spacing: 0.5px; /* Espaciado más elegante */
    background: linear-gradient(90deg, rgba(230, 196, 31, 0.1), transparent); /* Degradado sutil */
    border-left: 4px solid #e6c41f; /* Borde decorativo */
    padding: 15px 0 15px 25px; /* Relleno mejorado */
    border-radius: 0 10px 10px 0; /* Bordes redondeados */
    animation: fadeInText 1.2s ease-out forwards; /* Animación de entrada */
}

/* Animación para el texto */
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Elemento decorativo */
.hero p:before {
    content: '❝';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 50px;
    color: #e6c41f;
    opacity: 0.5;
    line-height: 1;
    font-family: Georgia, serif;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s 0.3s ease-out forwards;
    opacity: 0;
    transform: translateX(30px);
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-img-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 15px solid #fff;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-img-container:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.hero-img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.hero-img-container:hover img {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    background: linear-gradient(135deg, #5D2906 0%, #8B4513 100%);
    color: #ffd700;
    padding: 25px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 26px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 2;
    border: 4px solid #ffd700;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.offer-badge span {
    display: block;
    font-size: 16px;
    margin-top: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Efecto de brillo en la imagen */
.hero-img-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.205), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Decoraciones adicionales */
.hero-deco {
    position: absolute;
    z-index: 1;
}

.hero-deco.dog-paw-1 {
    top: 20%;
    left: 5%;
    font-size: 40px;
    color: rgba(230, 196, 31, 0.2);
    transform: rotate(25deg);
    animation: rotate 15s linear infinite;
}

.hero-deco.dog-paw-2 {
    bottom: 25%;
    right: 15%;
    font-size: 60px;
    color: rgba(58, 155, 34, 0.15);
    transform: rotate(-15deg);
    animation: rotateReverse 18s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeInUp 0.8s ease-out forwards;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        animation: fadeInUp 0.8s 0.3s ease-out forwards;
    }
    
    .hero h1 {
        font-size: 50px;
    }
    
    .hero p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 160px 0 80px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-badge {
        font-size: 16px;
        padding: 10px 25px;
    }
    
    .offer-badge {
        width: 110px;
        height: 110px;
        font-size: 22px;
        top: -15px;
        right: -15px;
    }
    
    .offer-badge span {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-img-container {
        border-width: 10px;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-badge {
        font-size: 14px;
    }
    
    .offer-badge {
        width: 90px;
        height: 90px;
        font-size: 18px;
        padding: 15px;
    }
}
       /* SECCIÓN BENEFICIOS - DISEÑO PREMIUM */
       .features {
        padding: 120px 0;
        position: relative;
        background: 
            linear-gradient(rgba(149, 155, 150, 0.85), rgba(80, 87, 79, 0.9)),
            url('images/DSC04436.jpg') no-repeat center center/cover;
    }

.features:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"><path d="M30,15 Q40,5 50,15 T70,15 Q80,25 70,35 T70,55 Q60,65 50,55 T30,55 Q20,45 30,35 T30,15" fill="none" stroke="%23e6c41f" stroke-width="1" stroke-opacity="0.1"/></svg>');
    z-index: 0;
    opacity: 0.3;
}

.section-title {
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 58px;
    color: transparent;
    background: linear-gradient(135deg, #5D2906 0%, #423a10 );
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(93, 41, 6, 0.15);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding: 0 30px 25px;
    margin-bottom: 30px;
    animation: titleGlow 3s infinite alternate;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 8px;
    background: linear-gradient(90deg, #5D2906, #806d0f);
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(230, 196, 31, 0.3);
    transition: all 0.5s ease;
}

.section-title h2:hover:after {
    width: 300px;
    height: 10px;
    background: linear-gradient(90deg, #5a4d0c, #85751d, #635a2c);
    box-shadow: 0 0 20px rgba(107, 95, 29, 0.4);
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 4px 12px rgba(93, 41, 6, 0.15);
    }
    100% {
        text-shadow: 0 0 25px rgba(230, 196, 31, 0.3), 
                     0 0 35px rgba(42, 107, 26, 0.2);
    }
}

/* Optional decorative elements */
.section-title:before,
.section-title:after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #615411;
    font-size: 36px;
    opacity: 0.7;
    animation: spin 8s linear infinite;
}

.section-title:before {
    left: 5%;
}

.section-title:after {
    right: 5%;
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.section-title p {
    font-size: 26px;
    color: #5D2906;
    background: linear-gradient(135deg, rgba(230, 196, 31, 0.15), transparent 70%);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    max-width: 800px;
    margin: 25px auto 40px;
    border: 2px solid #887515;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.features-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 40px;
  padding: 20px 0;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  scrollbar-width: thin; /* para Firefox */
  scrollbar-color: #D4AF37 transparent;
}

.feature-card {
  background: linear-gradient(135deg, #f9fbe7, #fffde7); /* fondo suave */
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #d4af37; /* dorado suave */
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
}

/* Si usas íconos arriba */
.feature-card i {
  font-size: 40px;
  color: #D4AF37;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  color: #5D2906;
  margin-bottom: 10px;
  font-weight: bold;
}

.feature-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* Decoraciones adicionales */
.feature-deco {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.feature-deco.dog-paw-1 {
    top: 15%;
    left: 10%;
    font-size: 80px;
    color: #5D2906;
    transform: rotate(25deg);
}

.feature-deco.dog-paw-2 {
    bottom: 15%;
    right: 10%;
    font-size: 100px;
    color: #e6c41f;
    transform: rotate(-15deg);
}

/* Animaciones de entrada */
@keyframes featureIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: featureIn 0.8s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.3s; }
.feature-card:nth-child(3) { animation-delay: 0.5s; }
.feature-card:nth-child(4) { animation-delay: 0.7s; }

/* Responsive */
@media (max-width: 992px) {
    .features {
        padding: 100px 0;
    }
    
    .section-title h2 {
        font-size: 40px;
    }
    
    .feature-card {
        padding: 40px 25px;
    }
    
    .feature-icon {
        width: 85px;
        height: 85px;
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .features-container {
        gap: 30px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .section-title p {
        font-size: 20px;
    }
    
    .feature-card h3 {
        font-size: 24px;
    }
    
    .feature-card p {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .features {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .section-title p {
        font-size: 18px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }
}

        /* PRODUCTS */
     /* FONDO Y ESTRUCTURA PRINCIPAL */
.products {
    background: 
        linear-gradient(rgba(199, 185, 158, 0.85), 
        rgba(100, 80, 51, 0.9)),
        url('images/fondo_comida.jpeg') no-repeat center center/cover;
    position: relative;
    padding: 80px 0;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* TARJETAS DE PRODUCTO MEJORADAS */
.product-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 320px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 620px;
    position: relative;
}

/* Hover effect */
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Imagen */
.product-img {
    width: 100%;
    height: 350px;
    background-color: rgba(255, 248, 220, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease;
}



/* Contenido */
.product-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content:end;
    /* margin-top: -200px; */
    flex-grow: 1;
    /* overflow: hidden; */
    text-align: left;
}



.price {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    margin: 10px 0;
    align-self: center;
}

.price span {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
    /* margin-left: 5px; */
}

.product-content > p {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    background: #f9f9f9;
    padding: 8px 12px;
    border-left: 4px solid #D4AF37;
    border-radius: 5px;
    line-height: 1.4;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
  }

.product-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    overflow-y: auto;
    /* max-height: 120px; */
}

.product-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.product-features li i {
    color: #D4AF37;
    margin-right: 10px;
    font-size: 16px;
}

/* Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Botón */
.btn {
    display: inline-block;
    background: #D4AF37;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #D4AF37;
    text-align: center;
    transition: all 0.3s ease;
}

.btn:hover {
    background: transparent;
    color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Efectos de fondo decorativos opcionales */
.products:before,
.products:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.products:before {
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.products:after {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
    transform: translate(-30%, 30%);
}

        /* BENEFITS */
        .benefits {
            background: linear-gradient(135deg, #ccae72 0%, #d0d375 100%);
            color: var(--blanco);
            position: relative;
        }

        .benefits:before {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%238B4513"/></svg>');
            background-size: cover;
        }

        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .benefit-icon {
            background: var(--dorado);
            color: var(--blanco);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            flex-shrink: 0;
        }

        .benefit-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        /* TESTIMONIALS */
        .testimonials {
            background: var(--crema);
        }

        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--blanco);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            position: relative;
            border: 2px solid var(--dorado);
        }

        .testimonial-card:before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 100px;
            color: var(--dorado);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 30px;
            color: #555;
            font-size: 18px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--dorado);
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 20px;
            color: var(--marron);
        }

        .author-info p {
            color: #be9a17;
            /* font-size: 15px; */
        }

        /* CTA */
        .cta {
            background: linear-gradient(135deg, var(--marron) 0%, var(--marron-claro) 100%);
            color: var(--blanco);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1517423568366-8b83523034fd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 20px;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        /* FOOTER */
        footer {
            background: var(--negro);
            color: var(--blanco);
            padding: 70px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--dorado);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--dorado);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transicion);
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            color: var(--dorado);
        }

        .footer-links a:hover {
            color: var(--dorado);
            padding-left: 5px;
        }

        .contact-info {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            color: var(--dorado);
            margin-right: 15px;
            font-size: 20px;
            min-width: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            color: var(--dorado);
            border-radius: 50%;
            transition: var(--transicion);
            font-size: 20px;
        }

        .social-links a:hover {
            background: var(--dorado);
            color: var(--blanco);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 14px;
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(255,255,255,0.95);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: var(--transicion);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 42px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .offer-badge {
                width: 100px;
                height: 100px;
                font-size: 18px;
            }
        }