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

:root {
    --azul-profundo: #0E3A8A;
    --blanco-roto: #F6F7F9;
    --gris-carbon: #1E1E1E;
    --naranja-calido: #F29C38;
    --gris-claro: #D1D5DB;
    --azul-hover: #0A2D6B;
    --naranja-hover: #E08A2A;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-1: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-hover) 100%);
    --gradient-2: linear-gradient(135deg, var(--naranja-calido) 0%, var(--naranja-hover) 100%);
}

body {
    font-family: 'LINE Seed JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--blanco-roto);
    color: var(--gris-carbon);
    overflow-x: hidden;
    padding-top: 80px;
}



/* Header de navegación */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0 20px;
}

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

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, var(--azul-profundo), var(--naranja-calido));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a {
    color: var(--gris-carbon);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--naranja-calido);
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--azul-profundo);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--naranja-calido), var(--naranja-hover));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 156, 56, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 156, 56, 0.4);
}

/* Header con efecto parallax */
.hero {
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-hover) 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -2px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(255,255,255,0.5)); }
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 0.9; transform: translateY(0); }
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInScale 0.8s ease-out backwards;
}

.benefit:nth-child(1) { animation-delay: 0.2s; }
.benefit:nth-child(2) { animation-delay: 0.4s; }

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 1.8rem;
}

.benefit-text {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.1rem;
    font-style: italic;
}

/* Sección de valor de marca - Aparece al hacer scroll */
.brand-value-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-value-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.value-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    backdrop-filter: blur(20px);
    padding: 50px 35px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(14, 58, 138, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(14, 58, 138, 0.2);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.value-card:nth-child(2) .value-icon {
    animation-delay: 0.5s;
}

.value-card:nth-child(3) .value-icon {
    animation-delay: 1s;
}

.value-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--azul-profundo), var(--naranja-calido));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-description {
    font-family: 'Playfair Display', serif;
    color: var(--gris-carbon);
    opacity: 0.8;
    line-height: 1.8;
    font-size: 1.05rem;
    font-style: italic;
}

/* Sección de testimonios animados */
.testimonials-section {
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-hover) 100%);
    padding: 100px 20px;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="30" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 15s linear infinite;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.testimonials-section .stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.05rem;
    font-style: italic;
}

/* Sección de estadísticas */
.stats-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.stats-section .stat-item {
    padding: 30px;
}

.stats-section .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--naranja-calido), var(--naranja-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.stats-section .stat-label {
    font-size: 1.2rem;
    color: var(--gris-carbon);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-hover) 100%);
    padding: 100px 20px;
    text-align: center;
    margin: 100px 0 0 0;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--naranja-calido), var(--naranja-hover));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(242, 156, 56, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(242, 156, 56, 0.5);
}

/* Filtros elegantes */
.filters {
    max-width: 1400px;
    margin: -40px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.filter-container {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 32px;
    border: 2px solid transparent;
    background: var(--gris-claro);
    color: var(--gris-carbon);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-hover) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(14, 58, 138, 0.4);
}

/* Grid de productos */
.products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 100px;
}

.index-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

/* Tarjetas de producto con efecto 3D */
.index-product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    animation: cardEnter 0.6s ease-out backwards;
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.index-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--azul-profundo), var(--naranja-calido));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.index-product-card:hover::before {
    opacity: 1;
}

.index-product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(14, 58, 138, 0.25);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.index-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.index-product-card:hover .index-product-image {
    transform: scale(1.15) rotate(2deg);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(242, 156, 56, 0.95);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.index-product-info {
    padding: 32px;
}

.index-product-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(14, 58, 138, 0.1);
    color: var(--azul-profundo);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.index-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gris-carbon);
    margin-bottom: 12px;
    line-height: 1.3;
}

.index-product-description {
    font-family: 'Playfair Display', serif;
    color: var(--gris-carbon);
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: italic;
}

.index-product-details {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.detail-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--gris-carbon);
}

.index-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 2px solid var(--gris-claro);
}

.index-product-price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.index-btn-buy {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--naranja-calido) 0%, var(--naranja-hover) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(242, 156, 56, 0.3);
    position: relative;
    overflow: hidden;
}

.index-btn-buy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.index-btn-buy:hover::before {
    width: 300px;
    height: 300px;
}

.index-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(242, 156, 56, 0.4);
}

.index-btn-buy:active {
    transform: translateY(0);
}

.index-btn-buy span {
    position: relative;
    z-index: 1;
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

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

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
}

/* Loading state */
.index-loading {
    text-align: center;
    padding: 100px 20px;
    font-size: 1.2rem;
    color: var(--gris-carbon);
    opacity: 0.7;
}

.index-loading.error {
    color: #EF4444;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gris-claro);
    border-top-color: var(--azul-profundo);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* Clases para animación de delay dinámico */
.index-product-card.product-card-animated {
    animation: cardEnter 0.6s ease-out backwards;
}

/* Clase para delay dinámico de animación */
.index-product-card[style*="animation-delay"] {
    /* El delay se aplica inline dinámicamente */
}

/* Sección de Garantías y Confianza */
.trust-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 20px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: white;
}

/* Aplicar fill negro a todos los SVG dentro de trust-section */
.trust-section svg {
    fill: var(--gris-carbon);
    transition: fill 0.3s ease;
}

.trust-card:hover svg {
    fill: var(--gris-carbon);
}

.trust-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-container {
    text-align: center;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gris-carbon);
    margin-bottom: 60px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gris-claro);
    transition: all 0.3s ease;
    text-align: center;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--gris-carbon);
}

.trust-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    color: var(--gris-carbon);
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--gris-carbon);
}

.trust-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gris-carbon);
    margin-bottom: 15px;
}

.trust-card p {
    font-family: 'Playfair Display', serif;
    color: var(--gris-carbon);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
    font-style: italic;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--gris-carbon) 0%, #2a2a2a 100%);
    color: white;
    margin-top: 100px;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--naranja-calido), var(--naranja-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-description {
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    font-style: italic;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--naranja-calido);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(242, 156, 56, 0.4);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact li div {
    flex: 1;
}

.footer-contact li strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: white;
}

.footer-contact li p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact li a {
    color: var(--naranja-calido);
    text-decoration: none;
}

.footer-contact li a:hover {
    text-decoration: underline;
}

.footer-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.footer-hours h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.hours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.hours-day {
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.hours-time {
    color: var(--naranja-calido);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cert-badge {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--naranja-calido);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .index-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .brand-values {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .benefits {
        gap: 20px;
    }

    .benefit {
        padding: 12px 24px;
    }

    .filters {
        margin: -30px auto 40px;
    }

    .filter-container {
        padding: 20px;
        gap: 12px;
    }

    .filter-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .index-products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-container {
        height: 280px;
    }

    .index-product-info {
        padding: 24px;
    }

    .brand-value-section {
        margin: 60px auto;
    }

    .brand-values {
        gap: 25px;
    }

    .value-card {
        padding: 40px 25px;
    }

    .value-icon {
        font-size: 3rem;
    }

    .value-title {
        font-size: 1.4rem;
    }

    .testimonials-section {
        padding: 80px 20px;
        margin: 80px 0;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .stats-section {
        margin: 80px auto;
    }

    .stats-section .stat-number {
        font-size: 2.8rem;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px 60px;
    }

    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .benefits {
        flex-direction: column;
        gap: 16px;
    }

    .benefit {
        width: 100%;
        justify-content: center;
    }

    .filter-container {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .index-product-title {
        font-size: 1.3rem;
    }

    .index-product-price {
        font-size: 1.7rem;
    }

    .index-btn-buy {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .value-card {
        padding: 35px 20px;
    }

    .testimonials-title {
        font-size: 1.7rem;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .stats-section .stat-number {
        font-size: 2.5rem;
    }

    .stats-section .stat-label {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.7rem;
    }

            .cta-button {
                padding: 16px 40px;
                font-size: 1.1rem;
            }

            .trust-section {
                padding: 60px 15px;
            }

            .trust-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .trust-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .trust-card {
                padding: 30px 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-hours {
                padding: 20px;
            }

            .hours-grid {
                grid-template-columns: 1fr;
            }

            .footer-certifications {
                flex-direction: column;
                align-items: center;
            }

            .footer-legal {
                flex-direction: column;
                gap: 5px;
            }

            .footer-legal span {
                display: none;
            }

            .nav-menu {
                display: none;
            }

            .nav-cta {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
        }

/* Animaciones escalonadas para las tarjetas */
.index-product-card:nth-child(1) { animation-delay: 0.1s; }
.index-product-card:nth-child(2) { animation-delay: 0.2s; }
.index-product-card:nth-child(3) { animation-delay: 0.3s; }
.index-product-card:nth-child(4) { animation-delay: 0.4s; }
.index-product-card:nth-child(5) { animation-delay: 0.5s; }
.index-product-card:nth-child(6) { animation-delay: 0.6s; }
