:root {
    --primary: #B22222;
    --accent: #D4AF37;
    --dark: #0f0f0f;
    --light: #ffffff;
    --glass: rgba(255, 255, 255, 0.95);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background: #fcfcfc; color: var(--dark); scroll-behavior: smooth; }

/* Navigation */
header {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    background: var(--glass); backdrop-filter: blur(10px);
    transition: 0.4s; border-bottom: 1px solid rgba(0,0,0,0.05);
}
nav {
    max-width: 1300px; margin: 0 auto; padding: 0.8rem 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
}
.logo img { height: 120px; width: auto; }

/* Menú Estilos */
.nav-menu { display: flex; list-style: none; gap: 20px; }
.nav-menu a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.95rem; transition: 0.3s; }
.nav-menu a:hover { color: var(--primary); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

/* Botones */
.btn {
    padding: 0.7rem 1.2rem; border-radius: 12px; text-decoration: none;
    font-weight: 600; font-size: 0.9rem; transition: 0.3s;
    display: flex; align-items: center; gap: 8px;
}

/* RESALTADO BOTÓN LLAMAR */
.btn-call { 
    background: var(--primary); 
    color: white; 
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}
.btn-call:hover { transform: scale(1.05); background: #8B0000; }

.btn-wa { background: #25D366; color: white; }
.btn-full { justify-content: center; margin-top: auto; }

/* Animación Pulse */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(178, 34, 34, 0.7); }
    100% { box-shadow: 0 0 0 15px rgba(178, 34, 34, 0); }
}

/* Slider */
.hero-slider { position: relative; height: 85vh; background: var(--dark); overflow: hidden; }
.slide {
    position: absolute; inset: 0; opacity: 0; transition: 1s ease;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.slide::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 10; color: white; padding: 20px; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 8vw, 4rem); margin-bottom: 10px; }
.highlight { color: var(--accent); }

/* Products */
.section { padding: 80px 1.5rem; max-width: 1300px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 50px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.product-card {
    background: white; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column;
}
.product-img { width: 100%; height: 230px; object-fit: cover; }
.product-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.product-info h3 { color: var(--primary); margin-bottom: 10px; }
.product-info p { font-size: 0.95rem; color: #666; margin-bottom: 20px; line-height: 1.5; }

/* Floats & Footer */
.wa-float {
    position: fixed; bottom: 30px; right: 30px; background: #25D366;
    width: 60px; height: 60px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; z-index: 1001;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
footer { background: var(--dark); color: #ccc; padding: 60px 1.5rem 30px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1300px; margin: 0 auto; }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #222; font-size: 0.85rem; }
.footer-bottom a { color: var(--accent); text-decoration: none; }

/* --- RESPONSIVE SIMPLIFICADO (Logo siempre visible) --- */
@media (max-width: 600px) {
    header {
        background: var(--glass);
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    nav {
        flex-direction: column !important;
        align-items: center !important;
        padding: 10px 15px !important;
    }

    .logo-container {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 0; /* Sin espacio abajo porque quitamos botones */
    }

    .logo img {
        height: 80px; /* Tamaño ideal para que no tape mucha pantalla */
        width: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    /* Quitamos los botones del header en móviles para que no estorben */
    header .nav-actions {
        display: none !important;
    }

    /* Efecto sutil: el logo se achica un poquito al hacer scroll */
    header.scrolled .logo img {
        transform: scale(0.8);
    }
    
    header.scrolled nav {
        padding: 5px 15px !important;
    }
}