:root {
    /* Paleta Editorial / Artística 2026 */
    --bg-main: #0f0e0c; /* Negro tinta / cálido */
    --bg-card: #1a1714; /* Marrón muy oscuro / cálido */
    --text-main: #F2EDE4; /* Marfil cálido */
    --text-muted: #9CA3AF; /* Slate suave */
    --accent-gold: #C8A96E; /* Oro apagado / Siena */
    --accent-cyan: #2E6B5E; /* Verde petróleo oscuro (nuevo secundario) */
    
    /* Variables de compatibilidad antigua */
    --bg-color: var(--bg-main);
    --accent-color: var(--accent-gold);
    --accent-hover: #D4B981;

    /* Tipografías */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Efectos */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* RUIDO / FILM GRAIN */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* HEADER */
header {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; letter-spacing: -1px; }
nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}
nav a:hover { color: var(--accent-color); }

/* HERO: LETRAS GIGANTES CON FOTOS DENTRO */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Capa de fondo con parallax sutil */
.hero-bg-parallax {
    position: absolute;
    inset: -10%;
    background-image: url('../img/La_Jarana_Vinilo.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    filter: blur(6px);
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* BLOQUE DE LETRAS CLIP-PATH */
.hero-clip-block {
    line-height: 0.9;
    margin-bottom: 3rem;
    /* Entrada animada */
    animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* Cada palabra con la imagen dentro */
.clip-word {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(4rem, 16vw, 14rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    display: block;

    /* El truco: la imagen dentro de las letras.
       Se usa background con imagen + gradiente de fallback.
       Si la imagen carga, se ve la foto dentro de las letras.
       Si no carga (ruta relativa, protocolo file://, etc.) se ve el gradiente. */
    background-image: var(--hero-img, none),
                      linear-gradient(135deg, #c95d3c 0%, #f0a070 40%, #e8d5a3 100%);
    background-size: cover, cover;
    background-position: center, center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

    /* Parallax interno: la imagen se mueve dentro de las letras */
    transition: background-position 0.3s ease-out;
    will-change: background-position;
}

/* Segunda palabra: imagen diferente, ligero margen negativo para apretar */
.clip-word--alt {
    margin-top: -0.1em;
    font-style: italic;
    font-size: clamp(3rem, 12vw, 10rem);
    /* Imagen de fondo diferente ya viene desde el HTML via --hero-img */
    animation-delay: 0.15s;
}

/* Subtexto y botón debajo de las letras */
.hero-bottom {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
    animation: heroReveal 1.2s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-tagline {
    color: rgba(255,255,255,0.5);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
}

/* Botón CTA en el hero: variante blanca */
.hero-cta {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.4s ease;
}
.hero-cta:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,93,60,0.4);
}

/* Cita de Picasso en la esquina inferior izquierda */
.hero-quote-corner {
    position: absolute;
    bottom: 5rem;
    left: 4rem;
    max-width: 280px;
    text-align: left;
    animation: heroReveal 1.2s 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.quote-line {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}
.hero-quote-corner .quote-author {
    display: block;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

/* Indicador de scroll animado */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: heroReveal 1s 1s both;
}
.scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(8px); opacity: 0.3; }
}

/* BOTONES */
.btn-cta, .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--text-main);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
}
.btn-cta:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* SERVICIOS / TEXTURA PAPEL */
.services-section {
    padding: 8rem 4rem;
    background-color: var(--bg-main); /* Cambiado a dark */
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section-title {
    font-family: var(--font-serif); font-size: 3rem; margin-bottom: 3rem;
    color: var(--text-main);
}
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
}
.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.02);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.card-bg-icon {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 8rem;
    opacity: 0.03;
    transition: var(--transition-smooth);
    z-index: -1;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: var(--accent-cyan);
}
.service-card:hover .card-bg-icon {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.08;
}

/* SCROLLYTELLING */
.scrollytelling-section {
    height: 300vh; /* Para dar espacio al scroll */
    position: relative;
    background-color: var(--bg-card); /* Contraste oscuro para destacar el portfolio */
    color: var(--text-main);
}
.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    overflow: hidden;
}
.scrolly-visual {
    position: relative;
    width: 50vw;
    height: 70vh;
}
.layer {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background-color: transparent;
    border: 4px solid #fff;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.1s ease-out; /* Suave ensamblaje */
}
.layer-1 { transform: translate(-50%, -150%); opacity: 0; z-index: 1;}
.layer-2 { transform: translate(50%, -50%); opacity: 0; z-index: 2;}
.layer-3 { transform: translate(-50%, 50%); opacity: 0; z-index: 3;}

/* BENTO GRID */
.bento-section { padding: 8rem 4rem; background-color: var(--bg-main); }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}
.bento-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.bento-item:hover { transform: scale(1.02); }
.main-metric { grid-column: span 1; grid-row: span 1; background: var(--bg-card); color: var(--text-main); border: 1px solid var(--accent-cyan); }
.main-metric .number { font-size: 3.5rem; font-family: var(--font-serif); font-weight: 700; color: var(--accent-gold); }
.video-card { grid-column: span 2; grid-row: span 2; background: #1a1a1a; align-items: center; }
.text-card { grid-column: span 1; grid-row: span 1; }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background-color: #25d366; color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); }

/* FOOTER */
footer {
    padding: 3rem 4rem;
    background-color: var(--bg-card);
    color: var(--text-main);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-contact {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}
.footer-contact span {
    margin: 0 10px;
}
footer p {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header { padding: 1rem 1.5rem; }
    nav { display: none; }

    /* Hero móvil: todo centrado, letras llenan la pantalla */
    .hero-inner { padding: 0 1.5rem; }
    .hero-clip-block { line-height: 0.9; margin-bottom: 2rem; }
    .clip-word { font-size: clamp(3.5rem, 22vw, 7rem); }
    .clip-word--alt { font-size: clamp(2.5rem, 18vw, 6rem); }
    .hero-bottom { flex-direction: column; gap: 1.5rem; }
    .hero-tagline { display: none; } /* En móvil el tagline ocupa demasiado */
    .hero-quote-corner { position: static; margin-top: 2rem; text-align: center; max-width: 100%; }
    .scroll-indicator { display: none; }

    .services-section, .bento-section { padding: 4rem 1.5rem; }
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .video-card { grid-column: span 1; grid-row: span 1; height: 300px; }
    .sticky-container { flex-direction: column; justify-content: center; padding: 1.5rem; }
    .scrolly-visual { width: 100%; height: 50vh; margin-top: 2rem; }
    footer { padding: 2rem 1.5rem; }
    .footer-contact span { display: block; margin-bottom: 0.5rem; }
}

/* =========================================
   GALERÍA Y FILTROS
========================================= */
.gallery-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
.gallery-filters li {
    margin: 0;
    padding: 0;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-cyan);
    color: var(--bg-main);
    border-color: var(--accent-cyan);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

@media (max-width: 1024px) {
    .masonry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    grid-column: span 1;
    grid-row: span 1;
    cursor: pointer;
}

.gallery-item.featured {
    grid-column: span 3;
    grid-row: span 2;
}

@media (max-width: 600px) {
    .gallery-item.featured {
        grid-column: span 1;
        grid-row: auto;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

.case-study-card:hover img {
    transform: scale(1.05);
}

.case-study-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

.case-study-card:hover .case-study-overlay {
    opacity: 1;
}

.case-study-overlay h3 {
    color: var(--accent-gold);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.case-study-card:hover .case-study-overlay h3 {
    transform: translateY(0);
}

.case-study-overlay p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.case-study-overlay .cs-story {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 80%;
}

.case-study-card:hover .case-study-overlay p {
    transform: translateY(0);
}

.cs-result {
    color: var(--accent-cyan) !important;
    font-weight: 600;
}

.cs-btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    align-self: flex-start;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.cs-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-main);
}

.case-study-card:hover .cs-btn {
    transform: translateY(0);
}

/* =========================================
   PRODUCCIÓN AUDIOVISUAL (MOCKUPS)
========================================= */
.video-section {
    padding: 6rem 5%;
    background: var(--bg-main);
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-mockup-container {
    display: flex;
    justify-content: center;
    perspective: 1000px;
    margin-top: 3rem;
}

.laptop-mockup {
    width: 80%;
    max-width: 800px;
    position: relative;
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
}

.laptop-mockup:hover {
    transform: rotateX(0deg);
}

.laptop-screen {
    background: #000;
    border: 15px solid #222;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.video-placeholder-frame {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1a1a, #333);
    color: #fff;
    font-family: var(--font-sans);
}

.play-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    cursor: pointer;
}

.video-placeholder-frame:hover .play-icon {
    color: #fff;
}

.laptop-keyboard {
    background: linear-gradient(to bottom, #d6d6d6, #b0b0b0);
    height: 20px;
    border-radius: 0 0 12px 12px;
    position: relative;
    width: 104%;
    left: -2%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.laptop-keyboard::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #888;
    border-radius: 0 0 5px 5px;
}

/* =========================================
   LIGHTBOX MODAL
========================================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}

@keyframes zoomIn {
    from {transform:scale(0.9); opacity:0;}
    to {transform:scale(1); opacity:1;}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* =========================================
   SOBRE MÍ
========================================= */
.about-section {
    padding: 8rem 4rem;
    background: var(--bg-main);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-content h2 {
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}
.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-skills {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.about-skills li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-size: 0.95rem;
}
.about-skills span {
    color: var(--accent-gold);
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
}

/* =========================================
   CLIENTES Y TESTIMONIOS
========================================= */
.testimonials-section {
    padding: 6rem 4rem;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.clients-logos {
    display: flex;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    padding: 3rem 0;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
}
.client-logo {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-main);
    letter-spacing: 0.05em;
    opacity: 0.8;
    transition: var(--transition-smooth);
}
.client-separator {
    color: var(--accent-gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    opacity: 0.4;
}
.client-logo:hover {
    color: var(--accent-gold);
    opacity: 1;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonial-card {
    background: transparent;
    padding: 2.5rem 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.testimonial-card::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23C8A96E' d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -10px;
    left: -20px;
    width: 50px;
    height: 50px;
    opacity: 0.2;
}
.t-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.t-author h4 {
    margin: 0;
    color: var(--text-main);
    font-size: 1rem;
}
.t-author span {
    color: var(--accent-cyan);
    font-size: 0.8rem;
}

/* =========================================
   HERO EDITORIAL / DOSSIER
========================================= */
.hero-editorial {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--bg-main);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-editorial-image {
    width: 45%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1);
    animation: imageReveal 2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes imageReveal {
    0% { transform: scale(1.05); filter: brightness(0); }
    100% { transform: scale(1); filter: brightness(0.9) contrast(1.1); }
}

.hero-editorial-content {
    width: 55%;
    padding: 0 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-overline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: textReveal 1s 0.2s both;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400; /* Serif no debe ser bold para elegancia editorial */
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    animation: textReveal 1s 0.4s both;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
    animation: textReveal 1s 0.6s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: textReveal 1s 0.8s both;
}

.btn-secondary {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}
.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.btn-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@keyframes textReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .hero-editorial {
        flex-direction: column;
    }
    .hero-editorial-image {
        width: 100%;
        height: 50vh;
    }
    .hero-editorial-content {
        width: 100%;
        padding: 4rem 2rem;
        text-align: center;
        align-items: center;
    }
}
