:root {
    --negro: #0A0A0A;
    --dorado: #C5A059;
    --crema: #F6F3EE;
    --blanco: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--crema); color: var(--negro); line-height: 1.6; overflow-x: hidden; }

/* --- CONTENEDOR --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 50px; }

/* --- HEADER --- */
header { background: var(--negro); padding: 15px 0; position: fixed; width: 100%; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 50px; width: auto; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--crema); text-decoration: none; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; }
.nav-links a:hover { color: var(--dorado); }
.btn-cta { background: var(--dorado); color: var(--negro); padding: 12px 24px; text-decoration: none; font-weight: 700; font-size: 0.7rem; border-radius: 2px; text-transform: uppercase; }

.menu-toggle { display: none; color: var(--crema); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 768px) {
    .container { padding: 0 25px; }
    .menu-toggle { display: block; }
    .hide-mobile { display: none; }
    .nav-container {
        position: fixed; top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: var(--negro); transition: 0.4s;
        z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center;
    }
    .nav-container.active { right: 0; }
    .nav-links { flex-direction: column; gap: 30px; }
    .mobile-socials { display: flex; gap: 20px; margin-top: 30px; border-top: 1px solid #222; padding-top: 20px; }
}

/* --- HERO (CORREGIDO) --- */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; color: var(--blanco); text-align: center; overflow: hidden; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.overlay-hero { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.65); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 900px; padding: 0 20px; }
.hero-content h1 { font-size: clamp(2.2rem, 8vw, 4.2rem); font-family: 'Playfair Display', serif; margin-bottom: 20px; line-height: 1.1; }
.hero-content p { font-size: 0.9rem; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 40px; font-weight: 300; }
.hero-btns { display: flex; gap: 15px; justify-content: center; }
.btn-gold { background: var(--dorado); color: var(--negro); padding: 16px 35px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-outline { border: 1px solid var(--dorado); color: var(--dorado); padding: 15px 35px; text-decoration: none; transition: 0.3s; }

/* --- TÍTULOS --- */
.section-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2rem, 5vw, 2.8rem) !important;
    color: var(--dorado) !important;
    text-align: center; margin-bottom: 50px; font-weight: 700;
    position: relative; padding-bottom: 15px; display: block;
}
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: var(--dorado); }

/* --- PORTAFOLIO 9:16 --- */
.section { padding: 100px 0; }
.shorts-wrapper { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin-bottom: 60px; }
.short-item { width: 320px; aspect-ratio: 9 / 16; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.short-item iframe { width: 100%; height: 100%; }
.photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.photo-grid img { width: 100%; height: 500px; object-fit: cover; filter: brightness(0.85); transition: 0.6s; }

/* --- SERVICIOS --- */
.services-grid-premium { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.service-card-v { position: relative; height: 520px; overflow: hidden; background: #000; border-radius: 5px; }
.service-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: 0.8s; }
.card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.92) 95%); }
.service-info { position: absolute; bottom: 0; width: 100%; padding: 40px 20px; color: var(--blanco); text-align: center; z-index: 2; }
.service-info i { color: var(--dorado); font-size: 2rem; margin-bottom: 15px; }

/* --- CONTACTO --- */
.section-contacto { background: var(--negro); color: var(--crema); padding: 120px 0; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.form-premium input, .form-premium textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid #333; color: var(--blanco); padding: 15px 0; margin-bottom: 25px; font-family: inherit; font-size: 1rem; }
.btn-gold-full { width: 100%; background: var(--dorado); color: var(--negro); padding: 22px; border: none; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: 0.3s; }

/* --- FOOTER --- */
.footer-premium { background: #050505; padding: 80px 0 40px; text-align: center; border-top: 1px solid #111; color: #888; }
.footer-logo-container { max-width: 650px; margin: 0 auto 40px; }
.footer-logo-img { width: 180px; height: auto; margin-bottom: 20px; }
.footer-tagline { font-size: 1rem; color: #999; font-style: italic; line-height: 1.6; }
.footer-nav { margin: 30px 0; font-size: 0.8rem; }
.footer-nav a { color: var(--dorado); text-decoration: none; margin: 0 12px; }
.footer-social a { color: var(--blanco); margin: 0 18px; font-size: 1.6rem; }
.footer-info { margin-bottom: 40px; font-size: 0.95rem; line-height: 2.2; color: #ccc; }
.credits { font-size: 0.75rem; color: #444; border-top: 1px solid #111; padding-top: 30px; margin-top: 20px; }

/* --- REVEAL --- */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .services-grid-premium { grid-template-columns: repeat(2, 1fr); }
    .contact-container { grid-template-columns: 1fr; text-align: center; }
    .contact-info-side .section-title::after { left: 50%; transform: translateX(-50%); }
    .photo-grid { grid-template-columns: 1fr; }
}