/* ===== GRILLA HERO ESTILO ORQUÍDEA NEGRA ===== */

.hero-products-section {
    padding: 0;
    margin: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 100vh;
}

.hero-product-card {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
    z-index: 1;
}

.hero-product-card:hover .hero-product-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 48, 78, 0.3),
        rgba(0, 0, 0, 0.2),
        rgba(255, 215, 0, 0.1)
    );
    z-index: 2;
    transition: all 0.5s ease;
}

.hero-product-card:hover .hero-overlay {
    background: linear-gradient(
        45deg,
        rgba(0, 48, 78, 0.6),
        rgba(0, 0, 0, 0.4),
        rgba(255, 215, 0, 0.3)
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--blanco);
    max-width: 800px;
    padding: 2rem;
}

.hero-category {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    color: var(--azul-marino);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    display: none; /* Ocultamos "Estilo Único" */
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: var(--azul-marino);
    color: var(--dorado);
    padding: 1rem 3rem;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.hero-cta:hover {
    background: var(--azul-marino-hover);
    color: var(--dorado-claro);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 48, 78, 0.3);
}

/* Grilla de múltiples productos */
.multi-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.multi-hero-grid .hero-product-card {
    height: 60vh;
    min-height: 500px;
}

.multi-hero-grid .hero-title {
    font-size: 3rem;
    letter-spacing: 4px;
}

.multi-hero-grid .hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 0.8rem 2rem;
}

/* Mensaje inspiracional fullscreen */
.inspiration-hero {
    height: 50vh;
    background: linear-gradient(135deg, var(--azul-marino), var(--negro), var(--dorado));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.inspiration-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.02) 20px,
        rgba(255, 255, 255, 0.02) 40px
    );
    animation: backgroundMove 30s linear infinite;
}

.inspiration-hero-text {
    font-size: 4rem;
    font-weight: 900;
    color: var(--blanco);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1.2;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.inspiration-hero-text .highlight {
    color: var(--dorado);
    display: block;
    font-size: 1.2em;
}

/* Responsive mejorado */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 6px;
    }
    
    .hero-product-card {
        height: 70vh;
        min-height: 500px;
    }
    
    .multi-hero-grid .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .inspiration-hero-text {
        font-size: 3rem;
        letter-spacing: 4px;
    }
}

@media (max-width: 768px) {
    .multi-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-product-card {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 2px;
        padding: 0.8rem 2rem;
    }
    
    .inspiration-hero-text {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 0.6rem 1.5rem;
    }
    
    .inspiration-hero-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero-category {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}