/* === VARIABLES & RESET === */
:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-panel: #1e293b;
    --primary: #8b5cf6;
    --accent: #06b6d4;
    --gold: #fbbf24;
    --pink: #ec4899;
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --wa-green: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', system-ui, sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-white); min-height: 100vh; }

/* === NAVBAR === */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; height: 80px; background: rgba(15, 23, 42, 0.98);
    position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; text-decoration: none; color: white; }
.logo span { color: var(--accent); }

.header-socials { display: flex; align-items: center; gap: 15px; margin-left: auto; margin-right: 2rem; }
.header-socials a { text-decoration: none; color: white; transition: 0.3s; font-size: 0.95rem; }
.brand-wa { color: var(--wa-green) !important; font-weight: bold; }
.brand-fb { color: #1877F2 !important; }
.brand-ig { color: #E1306C !important; }
.header-socials a:hover { transform: scale(1.1); }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: white; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-white); font-weight: 500; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active-link { color: var(--primary); }

/* === HERO SECTION === */
.hero-cover {
    min-height: 80vh; position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; background-size: cover; background-position: center; background-attachment: fixed;
}
.main-hero-bg { background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1920'); }

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)); }
.hero-content { position: relative; z-index: 2; padding: 20px; max-width: 1100px; width: 100%; }
.tagline { color: var(--accent); letter-spacing: 3px; font-size: 0.9rem; font-weight: bold; display: block; margin-bottom: 1rem; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1.1; font-weight: 800; text-shadow: 0 0 30px rgba(0,0,0,0.5); }
.neon-text { background: linear-gradient(to right, var(--primary), var(--accent)); -webkit-background-clip: text; color: transparent; }
.hero-content p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 2.5rem; }
.hero-desc { font-size: 1.3rem; color: #ddd; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* === BOTONES HERO === */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* === SECCIONES === */
.section-pad { padding: 5rem 5%; max-width: 1300px; margin: 0 auto; }
.bg-darker { background-color: var(--bg-darker); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; color: var(--accent); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

/* === CARDS GENERALES === */
.service-card {
    background: var(--bg-panel); border: 1px solid var(--border-glass); padding: 2rem; border-radius: 16px;
    text-align: center; transition: 0.3s; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.service-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.service-card h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* === DJ CARDS === */
.dj-card {
    background: var(--bg-panel); border-radius: 16px; border: 1px solid var(--border-glass);
    transition: 0.3s; position: relative; display: flex; flex-direction: column; overflow: hidden;
    padding: 0; text-align: center;
}
.dj-card:hover { transform: translateY(-7px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15); }

.dj-img-wrapper { width: 100%; height: 220px; position: relative; overflow: hidden; }
.dj-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.dj-card:hover .dj-img-wrapper img { transform: scale(1.1); }

.dj-icon-overlay {
    position: absolute;
    top: 220px;
    right: 8%;
    width: 50px; height: 50px;
    transform: translateY(-65%);
    background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.4); border: 4px solid var(--bg-panel); z-index: 10;
}

.dj-content { padding: 2.5rem 1.5rem 2rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.dj-content h4 { font-size: 1.4rem; margin-bottom: 0.5rem; color: white; font-weight: bold; }
.dj-content p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }

.tribute-card { border: 1px solid var(--gold); background: linear-gradient(to bottom, #2a200a, #1e293b); }
.tribute-card .dj-icon-overlay { background: var(--gold); color: black; border-color: #2a200a; }
.badge-gold { background: var(--gold); color: black; font-weight: bold; font-size: 0.75rem; padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 8px; align-self: center; }

/* === INDEX MENU CARDS === */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; justify-content: center; margin-top: 2rem; }
.menu-card {
    background: rgba(30, 41, 59, 0.6); backdrop-filter: blur(10px); border: 1px solid var(--border-glass);
    padding: 2rem 1.5rem; border-radius: 16px; text-decoration: none; color: white;
    transition: 0.3s; display: flex; flex-direction: column; align-items: center;
}
.menu-card:hover { background: rgba(30, 41, 59, 0.9); transform: translateY(-10px); border-color: rgba(255,255,255,0.3); }
.icon-glow {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 1rem; background: rgba(255,255,255,0.05); box-shadow: 0 0 15px rgba(0,0,0,0.2); transition: 0.3s;
}
.icon-glow.gold { color: var(--gold); border: 1px solid rgba(251, 191, 36, 0.3); }
.icon-glow.cyan { color: var(--accent); border: 1px solid rgba(6, 182, 212, 0.3); }
.icon-glow.purple { color: var(--primary); border: 1px solid rgba(139, 92, 246, 0.3); }
.icon-glow.pink { color: var(--pink); border: 1px solid rgba(236, 72, 153, 0.3); }
.menu-card h4 { font-size: 1.2rem; margin-bottom: 5px; font-weight: 700; }
.menu-card span { font-size: 0.85rem; color: var(--text-gray); }

/* === BOTONES === */
.btn-whatsapp-hero {
    background-color: var(--wa-green); color: white; font-weight: bold; padding: 14px 35px;
    border-radius: 50px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
    font-size: 1.1rem; box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); transition: 0.3s;
}
.btn-whatsapp-hero:hover { background-color: #1ebc57; transform: scale(1.05); }

.btn-whatsapp-float {
    background-color: var(--wa-green); color: white; font-weight: bold; padding: 10px 20px;
    border-radius: 50px; text-decoration: none; border:none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s;
}
.btn-whatsapp-float:hover { background-color: #1ebc57; transform: translateY(-2px); }

.btn-whatsapp-submit {
    width: 100%; background: var(--wa-green); color: white; padding: 12px; border: none;
    border-radius: 8px; font-weight: bold; cursor: pointer; display: flex; justify-content: center;
    align-items: center; gap: 10px; font-size: 1.1rem; transition: 0.3s;
}
.btn-whatsapp-submit:hover { background: #1ebc57; }

/* Botón transparente */
.btn-glass {
    background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 30px; border-radius: 50px; text-decoration: none; font-weight: bold;
    transition: 0.3s; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.btn-glass:hover { background: rgba(255,255,255,0.2); border-color: white; }
.btn-text { background: none; border: none; color: var(--accent); cursor: pointer; font-weight: bold; text-decoration: underline; }

/* === EXTRAS === */
.clients-belt { background: var(--bg-panel); padding: 1.5rem 0; overflow: hidden; border-y: 1px solid var(--border-glass); margin-top: -1px; position: relative; z-index: 5; }
.marquee-wrapper { white-space: nowrap; overflow: hidden; }
.marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
.marquee-content span { margin: 0 30px; font-size: 1.1rem; color: var(--text-gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.marquee-content i { color: var(--primary); margin-right: 8px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.testimonial-card {
    background: var(--bg-panel); padding: 2rem; border-radius: 16px; border: 1px solid var(--border-glass);
    display: flex; flex-direction: column; height: 100%; transition: 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.stars { color: #fbbf24; margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-card p { font-style: italic; color: #ddd; margin-bottom: 1.5rem; flex-grow: 1; line-height: 1.6; }
.client-info { display: flex; align-items: center; gap: 12px; }
.avatar { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: white; font-size: 0.9rem; }
.avatar.purple { background: var(--primary); }
.avatar.cyan { background: var(--accent); }
.avatar.pink { background: var(--pink); }

/* AV.html Features & FAQ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; text-align: center; }
.feature-item { background: var(--bg-panel); padding: 2rem; border-radius: 12px; border: 1px solid var(--border-glass); transition: 0.3s; }
.feature-item:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1); }
.feature-item i { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; }
.feature-item h4 { color: white; margin-bottom: 0.5rem; font-size: 1.2rem; }
.feature-item p { color: var(--text-gray); font-size: 0.95rem; }

.faq-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.faq-card { background: var(--glass); border: 1px solid var(--border-glass); padding: 1.5rem; border-radius: 12px; transition: 0.3s; }
.faq-card:hover { background: rgba(255,255,255,0.08); }
.faq-card h4 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.faq-card p { color: #ccc; line-height: 1.6; font-size: 0.95rem; }
.faq-card.highlight-faq { background: linear-gradient(145deg, var(--bg-panel), #1e293b); border: 1px solid var(--primary); grid-column: 1 / -1; }
.faq-card ul { list-style: none; margin-top: 10px; padding-left: 10px; }
.faq-card ul li { color: var(--text-white); margin-bottom: 5px; }
.faq-card ul li::before { content: "•"; color: var(--accent); font-weight: bold; display: inline-block; width: 1em; }

/* === FOOTER COMPLETO === */
.main-footer {
    padding: 5rem 5% 1rem 5%; background: #020617; border-top: 1px solid var(--border-glass); margin-top: 5rem;
}
.footer-content {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1300px; margin: 0 auto 3rem auto;
}
.footer-col h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.footer-col h3 span { color: var(--accent); }
.footer-col p { color: var(--text-gray); line-height: 1.6; font-size: 0.95rem; margin-bottom: 1.5rem; }
.footer-col h4 { color: white; font-size: 1.1rem; margin-bottom: 1.5rem; position: relative; display: inline-block; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background: var(--accent); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a, .footer-col ul li { color: var(--text-gray); text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.footer-col ul li a:hover { color: white; padding-left: 5px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.3s;
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn.fb:hover { background: #1877F2; }
.social-btn.ig:hover { background: #E1306C; }
.social-btn.wa:hover { background: #25D366; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; text-align: center; color: #64748b; font-size: 0.9rem; }

/* === REPRODUCTOR VIDEO HOMOGÉNEO === */
/* Clase especial para que todos los videos midan lo mismo */
.std-video {
    width: 100%;
    height: 280px;         /* Altura fija para que todos sean iguales */
    object-fit: contain;   /* Muestra todo el video sin cortarlo */
    background-color: #000;/* Relleno negro estilo cine */
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; width: 100%; height: 100vh; background: var(--bg-dark); padding: 2rem; z-index: 999; }
    .nav-links.active { display: flex; }
    .header-socials.desktop-only { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .faq-card.highlight-faq { grid-column: auto; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn-whatsapp-hero, .btn-glass { width: 100%; justify-content: center; margin-bottom: 10px; }
}
