html{
    scroll-behavior: smooth;
}

.jveventos{
    width: 100px;
}

/* --- VARIABLES --- */
:root {
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --primary-neon: #00f2ff; /* Cian Neón */
    --secondary-neon: #d4af37; /* Dorado */
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --glow: 0 0 10px rgba(0, 242, 255, 0.4);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER --- */
.header {
    background: rgba(5, 5, 5, 0.95);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0.5rem 0;
}
.header-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 0 auto; padding: 0 5%;
}
.logo-img { height: 55px; filter: drop-shadow(0 0 2px var(--primary-neon)); }

.nav-list { display: flex; gap: 2rem; }
.nav-link {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;
}
.nav-link:hover { color: var(--primary-neon); text-shadow: var(--glow); }
.cotizar .nav-link {
    border: 1px solid var(--primary-neon); padding: 0.5rem 1.5rem; color: var(--primary-neon);
}
.cotizar .nav-link:hover { background: var(--primary-neon); color: #000; }

.menu-toggle { display: none; font-size: 1.8rem; color: var(--primary-neon); cursor: pointer; }

/* --- HERO SLIDER --- */
.hero-section {
    height: 100vh; position: relative; display: flex;
    align-items: center; justify-content: center; text-align: center;
}
.hero-slider, .hero-slide, .hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hero-slider { z-index: -2; }
.hero-slide {
    background-size: cover; background-position: center; opacity: 0;
    animation: fadeSlide 15s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
@keyframes fadeSlide {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    33% { opacity: 1; transform: scale(1.1); }
    43% { opacity: 0; }
    100% { opacity: 0; }
}
.hero-overlay { background: rgba(0,0,0,0.6); z-index: -1; }

.hero-content { z-index: 1; padding: 0 1rem; margin-top: 60px; }
.hero-content h1 {
    font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.2; margin-bottom: 1rem;
}
.hero-content span { color: var(--primary-neon); text-shadow: var(--glow); }
.hero-content p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem; color: #ddd; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; }
.btn-hero { padding: 1rem 2rem; text-transform: uppercase; font-weight: 600; font-size: 0.9rem; }
.btn-hero.primary { background: var(--primary-neon); color: #000; border: 1px solid var(--primary-neon); }
.btn-hero.secondary { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-hero:hover { transform: translateY(-3px); box-shadow: var(--glow); }

/* --- GENERAL SECTIONS --- */
.main-container, .mobiliario-section, .video-section, .agenda-section, .testimonios-section, .gallery-section, .intro-section {
    padding: 5rem 5%; max-width: 1400px; margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h3 { font-family: var(--font-heading); font-size: 2.5rem; color: #fff; }
.subtitle { color: var(--secondary-neon); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; display: block; margin-bottom: 0.5rem; }

/* Intro Text */
.intro-section { text-align: center; border-bottom: 1px solid #111; }
.intro-section p { max-width: 800px; margin: 0 auto; color: var(--text-gray); font-size: 1.1rem; }

/* --- SERVICIOS GRID --- */
.servicios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card {
    background: var(--bg-card); border: 1px solid #222; overflow: hidden; transition: var(--transition);
}
.service-card:hover { border-color: var(--primary-neon); transform: translateY(-5px); }
.img-wrapper { height: 200px; overflow: hidden; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-card:hover .img-wrapper img { transform: scale(1.1); }
.card-content { padding: 2rem; }
.card-content h4 { color: var(--primary-neon); font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 1rem; }
.service-list li { margin-bottom: 0.5rem; color: var(--text-gray); font-size: 0.9rem; }
.service-list i { color: var(--secondary-neon); margin-right: 8px; }

/* --- MOBILIARIO GRID (Fotos de sillas) --- */
.mobiliario-section { background: #080808; }
.grid-sillas {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
}
.silla-item { height: 250px; overflow: hidden; border: 1px solid #222; position: relative; }
.silla-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; filter: grayscale(50%); }
.silla-item:hover img { transform: scale(1.05); filter: grayscale(0%); }

/* --- VIDEOS --- */
.video-section { background: #000; border-top: 1px solid #111; border-bottom: 1px solid #111; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 3rem; }
.video-card video { width: 100%; border-radius: 4px; box-shadow: 0 0 20px rgba(0,0,0,0.5); border: 1px solid #333; }
.video-info { margin-top: 1rem; text-align: center; }
.video-info h5 { color: var(--primary-neon); font-size: 1.2rem; }
.video-info p { color: var(--text-gray); font-size: 0.9rem; }

/* --- AGENDA CLIENTES --- */
.agenda-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.agenda-card {
    display: flex; align-items: center; background: var(--bg-card); padding: 1.5rem; border: 1px solid #222;
}
.agenda-card:hover { border-color: var(--secondary-neon); background: #151515; }
.date-badge {
    background: #000; border: 1px solid var(--secondary-neon); padding: 10px;
    text-align: center; margin-right: 1.5rem; min-width: 70px;
}
.date-badge .day { display: block; font-size: 1.5rem; font-weight: bold; color: #fff; line-height: 1; }
.date-badge .month { font-size: 0.8rem; color: var(--secondary-neon); }
.agenda-info h5 { font-family: var(--font-heading); margin-bottom: 0.3rem; }
.agenda-info p { font-size: 0.85rem; color: #aaa; }
.agenda-info .time { color: var(--primary-neon); margin-top: 5px; }

/* --- TESTIMONIOS --- */
.testimonios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonio-card {
    background: #111; padding: 2rem; position: relative; border-left: 3px solid var(--primary-neon);
}
.quote { font-family: var(--font-heading); font-size: 4rem; color: #222; position: absolute; top: 0; right: 1rem; line-height: 1; }
.testimonio-card p { position: relative; z-index: 1; font-style: italic; color: #ccc; margin-bottom: 1.5rem; }
.author strong { display: block; color: var(--primary-neon); }
.author span { font-size: 0.8rem; color: #666; }

/* --- CARRUSEL GALERÍA --- */
.carousel-wrapper { position: relative; padding: 0 2rem; }
.carousel-container { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s ease-out; }
.carousel-card { min-width: 25%; height: 250px; padding: 5px; flex-shrink: 0; }
.carousel-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.4s; cursor: pointer; }
.carousel-card:hover img { filter: grayscale(0%); }
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.8); border: 1px solid var(--primary-neon); color: var(--primary-neon);
    font-size: 1.5rem; cursor: pointer; z-index: 10; padding: 10px;
}
.prev { left: 0; }
.next { right: 0; }

/* --- FOOTER --- */
.footer { background: #000; padding: 4rem 5% 1rem; border-top: 1px solid #222; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 1rem; }
.footer-logo span { color: var(--primary-neon); }
.footer-col h4 { color: #fff; margin-bottom: 1.5rem; border-bottom: 1px solid #333; padding-bottom: 10px; display: inline-block; }
.footer-col p { color: #888; margin-bottom: 0.8rem; }
.footer-col i { color: var(--primary-neon); width: 25px; }
.socials a { color: #fff; margin-right: 15px; font-size: 1.2rem; transition: 0.3s; }
.socials a:hover { color: var(--primary-neon); }
.copyright { text-align: center; border-top: 1px solid #111; padding-top: 2rem; color: #fff; font-size: 0.8rem; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-bar {
        position: absolute; top: 100%; left: 0; width: 100%; background: #000;
        flex-direction: column; padding: 2rem 0; display: none; border-bottom: 1px solid var(--primary-neon);
    }
    .nav-bar.active { display: flex; }
    .nav-list { flex-direction: column; gap: 1.5rem; text-align: center; }
    .hero-content h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .video-grid { grid-template-columns: 1fr; }
    .carousel-card { min-width: 100%; }
}