/* ESTRUCTURA ARTÍSTICA Y DANZA - KIRENIA MARTINEZ ACOSTA */
:root {
    --dance-wine: #5e0b15;       /* Rojo vino escénico */
    --dance-gold: #d4af37;       /* Dorado elegante */
    --dance-dark: #1a1a1a;       /* Negro carbón suave */
    --dance-cream: #f9f6f0;      /* Fondo crema cálido */
    --white: #ffffff;
    --text-body: #4a4a4a;
    --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; background-color: var(--dance-cream); color: var(--text-body); line-height: 1.8; overflow-x: hidden; }

/* TIPOGRAFÍAS ESCÉNICAS */
h1, h2, h3, h4, .serif-text { font-family: 'Playfair Display', serif; }

/* CABECERA ELEGANTE */
header { background: rgba(26, 26, 26, 0.98); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.brand { display: flex; flex-direction: column; }
.brand h1 { font-size: 2.2rem; color: var(--dance-gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; line-height: 1; }
.brand p { font-size: 0.9rem; color: var(--white); font-weight: 300; letter-spacing: 4px; text-transform: uppercase; margin-top: 5px; }
nav { display: flex; gap: 40px; align-items: center; }
.nav-links { display: flex; gap: 25px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--white); font-weight: 400; font-size: 0.95rem; letter-spacing: 1px; transition: var(--transition); text-transform: uppercase; position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -5px; left: 50%; transform: translateX(-50%); background-color: var(--dance-gold); transition: var(--transition); }
.nav-links a:hover { color: var(--dance-gold); }
.nav-links a:hover::after { width: 100%; }
.lang-selector { padding: 8px 15px; background: transparent; border: 1px solid var(--dance-gold); color: var(--dance-gold); font-family: 'Lato', sans-serif; font-size: 0.85rem; letter-spacing: 1px; cursor: pointer; transition: var(--transition); outline: none; }
.lang-selector:hover { background: var(--dance-gold); color: var(--dance-dark); }

/* HERO CON VÍDEO DE FONDO (REGLA DE ORO LOCAL) */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 0 5%; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: brightness(45%); }
.hero-content { position: relative; z-index: 2; max-width: 1000px; margin-top: 60px; }
.hero-content h2 { font-size: 4.5rem; color: var(--white); font-weight: 700; line-height: 1.1; margin-bottom: 30px; text-shadow: 2px 2px 20px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.4rem; color: var(--dance-cream); font-weight: 300; max-width: 800px; margin: 0 auto; line-height: 1.8; }

/* BLOQUES DE CONTENIDO DENSOS */
.content-block { padding: 120px 5%; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.content-block.full { grid-template-columns: 1fr; max-width: 1000px; text-align: center; }
.content-block h2 { font-size: 3.2rem; color: var(--dance-wine); margin-bottom: 40px; font-weight: 700; }
.content-block p { font-size: 1.15rem; color: var(--text-body); margin-bottom: 25px; text-align: justify; }
.artistic-box { background: var(--white); padding: 60px; border: 1px solid rgba(212, 175, 55, 0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.03); position: relative; }
.artistic-box::before { content: ''; position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px; border: 1px solid var(--dance-gold); z-index: -1; transition: var(--transition); }

/* CATÁLOGO INQUEBRANTABLE (SOLO TÍTULOS E IMÁGENES EXTERNAS) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 60px; width: 100%; }
.service-card { position: relative; height: 450px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--dance-dark); }
.service-card img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 1.2s ease, filter 0.8s ease; filter: brightness(60%) grayscale(20%); }
.service-card:hover img { transform: scale(1.08); filter: brightness(40%) grayscale(0%); }
.service-card .overlay { position: absolute; inset: 0; background: radial-gradient(circle, rgba(94,11,21,0.2) 0%, rgba(26,26,26,0.8) 100%); z-index: 2; pointer-events: none; }
.service-card h3 { position: relative; z-index: 3; color: var(--dance-gold); font-size: 1.8rem; font-weight: 600; text-align: center; padding: 0 30px; letter-spacing: 1px; text-transform: uppercase; }

/* TESTIMONIOS (REGLA: 100% ANÓNIMOS) */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 50px; margin-top: 50px; }
.testimonial-card { background: var(--white); padding: 60px 50px; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.04); border-top: 4px solid var(--dance-wine); }
.testimonial-card p { font-size: 1.15rem; font-style: italic; color: var(--text-body); position: relative; z-index: 1; text-align: justify; }
.testimonial-card::before { content: '”'; position: absolute; top: 20px; left: 30px; font-family: 'Playfair Display', serif; font-size: 8rem; color: var(--dance-cream); line-height: 1; z-index: 0; }

/* FAQ (REGLA: EXACTAMENTE 2, H3 + P) */
.faq-container { background: var(--white); padding: 80px; box-shadow: 0 15px 50px rgba(0,0,0,0.05); border-left: 5px solid var(--dance-gold); margin-top: 50px; text-align: left; }
.faq-item { margin-bottom: 50px; }
.faq-item:last-child { margin-bottom: 0; }
.faq-item h3 { color: var(--dance-wine); font-size: 1.8rem; margin-bottom: 20px; font-weight: 700; }
.faq-item p { font-size: 1.15rem; color: var(--text-body); }

/* FOOTER UNIFICADO GLOBAL (COMPLETO EN TODAS LAS PÁGINAS) */
footer { background: var(--dance-dark); padding: 100px 5% 40px; margin-top: 100px; border-top: 2px solid var(--dance-gold); }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; max-width: 1400px; margin: 0 auto 80px; }
.footer-columns h4 { color: var(--dance-gold); font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 30px; letter-spacing: 1px; }
.footer-columns p { color: #aaaaaa; font-size: 1.05rem; margin-bottom: 12px; }
.footer-menu-links { list-style: none; }
.footer-menu-links li { margin-bottom: 15px; }
.footer-menu-links a { color: #aaaaaa; text-decoration: none; font-size: 1.05rem; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.footer-menu-links a:hover { color: var(--white); padding-left: 8px; color: var(--dance-gold); }

/* LOGO KIT DIGITAL - REGLA INQUEBRANTABLE */
.logo-kit-centered { height: 125px !important; background-color: transparent !important; display: block; margin: 0 auto 50px; }
.footer-legal-text { text-align: center; color: #666666; font-size: 0.9rem; border-top: 1px solid #333333; padding-top: 30px; letter-spacing: 1px; }