/* --- CONFIGURACIÓN BASE --- */
:root {
    --bg-black: #050505;
    --cream: #F5F0E6;
    --pink: #D88CA2;
    --text-white: #FFFFFF;
    --font-sans: 'Montserrat', sans-serif;
    --font-cursive: 'Pinyon Script', cursive;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-black); color: var(--text-white); font-family: var(--font-sans); line-height: 1.6; overflow-x: hidden; }

/* Tipografía Útil */
.cursive-subtitle { font-family: var(--font-cursive); font-size: 3.5rem; color: var(--text-white); font-weight: 400; }
.text-center { text-align: center; }

/* --- HEADER ESTILO CANVA --- */
.header { 
    background-color: var(--bg-black); 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.header-container { 
    max-width: 1200px; /* Un poco más agrupado al centro */
    margin: 0 auto; 
    padding: 0.8rem 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

/* El logo dentro de un círculo blanco */
.header-logo { 
    height: 45px; 
    width: 45px; 
    background-color: #ffffff; /* Círculo blanco */
    border-radius: 50%; /* Lo hace totalmente redondo */
    padding: 6px; /* Le da aire a la corona por dentro */
    object-fit: contain; 
    transition: var(--transition);
}

.header-logo:hover {
    transform: scale(1.05);
}

.nav-links { 
    display: flex; 
    gap: 2rem; 
}

/* Los enlaces con tipografía Raleway */
.nav-links a { 
    font-family: 'Raleway', sans-serif; 
    color: var(--text-white); 
    text-decoration: none; 
    font-size: 0.95rem; 
    font-weight: 600; 
    text-transform: none; /* ¡CRÍTICO! Quita las mayúsculas forzadas */
    transition: var(--transition); 
}

.nav-links a:hover { 
    color: #ffcbfa; /* Brillo rosado al pasar el ratón */
}

/* El botón estilo píldora */
.btn-reservar { 
    font-family: 'Raleway', sans-serif;
    background-color: #ffcbfa; /* Tu rosa exacto de Canva */
    color: #000000; /* Letras negras */
    text-decoration: none; 
    padding: 0.6rem 1.8rem; 
    border-radius: 30px; /* MAGIA: Esto hace la forma de píldora redonda */
    font-weight: 700; 
    font-size: 0.95rem;
    text-transform: none; /* Quita las mayúsculas */
    transition: var(--transition); 
    display: inline-block; 
}

.btn-reservar:hover { 
    background-color: #fcaeea; /* Un rosa ligeramente más fuerte al pasar el ratón */
    transform: translateY(-2px); 
}

/* --- HERO SECTION (TARJETA ROSA DIVIDIDA) --- */
.hero-split-section {
    padding: 120px 2rem 4rem; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-black); 
}

.hero-split-card {
    background-color: #ffcbfa; /* El fondo rosa de Canva */
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Cabecera con textos alineados a las columnas */
.hero-split-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    border-bottom: 2px solid rgba(0,0,0,0.8); 
    padding-bottom: 1rem;
}

.hero-text-left {
    font-family: 'Raleway', sans-serif; 
    font-size: 1.3rem;
    letter-spacing: 12px; 
    font-weight: 600;
    text-align: center; /* Centra "Violinista" sobre la corona */
    padding-left: 12px; 
    color: #000000;
}

.hero-text-right {
    font-family: 'Raleway', sans-serif; 
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: right; 
    color: #000000;
}

/* Cuerpo dividido en dos columnas */
.hero-split-body {
    display: flex;
    flex-direction: row; 
    align-items: stretch; 
    gap: 3rem;
}

.hero-split-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.hero-logo-black {
    width: 100%;
    max-width: 350px;
    /* Al no tener ningún filtro, mostrará el diseño, color y 3D exacto de Canva */
}

.hero-split-right {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
}

.hero-photo-rect {
    width: 100%;
    height: 100%;
    min-height: 450px; 
    object-fit: cover; 
    border-radius: 15px; 
    box-shadow: -10px 10px 25px rgba(0,0,0,0.2); 
}
/* --- RESEÑA ARTÍSTICA --- */
.artist-review { padding: 6rem 2rem; background-color: var(--bg-black); }
.review-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.review-content {
    background-color: transparent; /* Quitamos el fondo */
    padding: 2rem 0; /* Menos relleno ahora que no hay recuadro */
    border: none; /* Quitamos el borde */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Nuevo Título de Reseña Artística */
.review-main-title {
    font-family: 'Playfair Display', serif; /* La fuente que pediste */
    font-size: 3.5rem; /* Tamaño grande y elegante */
    font-style: italic; /* Lo pone en cursiva */
    font-weight: 700; /* Letra gordita/negrita */
    color: var(--pink); /* El mismo color exacto del título de los videos */
    margin-bottom: 1.5rem;
}

/* Texto del párrafo (Más grande) */
.bio-text {
    font-family: 'Playfair Display', serif; 
    font-size: 1.4rem; /* ¡Aumentamos el tamaño! (antes estaba en 1.1 o 1.2) */
    line-height: 1.8;
    color: #FFFFFF; 
    font-weight: 400;
    font-style: italic;
}
.review-videos { display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.video-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 4px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* --- REPERTORIO (CANVA STYLE) --- */
.repertoire-new { background-color: var(--bg-black); padding: 6rem 2rem; }
.container-large { max-width: 1300px; margin: 0 auto; }
.repertoire-header { display: flex; align-items: center; gap: 3rem; margin-bottom: 3rem; }
.cursive-title-rep { font-family: var(--font-cursive); font-size: 5rem; color: var(--text-white); white-space: nowrap; font-weight: 400; }
.repertoire-intro { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; font-weight: 700; color: var(--text-white); line-height: 1.6; }
.repertoire-box { border: 2px solid rgba(255, 255, 255, 0.4); border-radius: 20px; padding: 3rem 2rem; background: rgba(255,255,255, 0.02); }
.repertoire-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.rep-column { display: flex; flex-direction: column; gap: 1.5rem; }
.rep-category { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.rep-group { display: flex; flex-direction: column; gap: 0.3rem; }
.rep-subcategory { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--text-white); text-decoration: underline; }
.rep-group p { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--text-white); line-height: 1.4; }

/* --- EQUIPO TÉCNICO --- */
.equipment-new { 
    background-color: var(--bg-black); 
    padding: 6rem 2rem 1rem; /* <-- Cambiamos el relleno inferior a 1rem para pegarlo más abajo */
    position: relative; 
    overflow: hidden; 
}

.equipment-layout { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    gap: 4rem; 
    max-width: 1250px; /* ¡AUMENTAMOS ESTO! Le da mucho más espacio a los lados para que no se vea apretado */
    margin: 0 auto;
}

/* Columna Izquierda (Texto) */
.equipment-text-col { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    position: relative; 
}

.equipment-title {
    font-family: 'Playfair Display', serif; /* Fuente de Canva */
    font-size: 2.8rem;
    font-style: italic;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.equipment-desc {
    font-family: 'Playfair Display', serif; /* Fuente de Canva */
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4; /* Interlineado más apegado al diseño */
}

/* La marca de agua (Logo original) */
.watermark-logo { 
    width: 250px; 
    opacity: 0.25; 
    margin-top: 3rem; 
    /* Sin filtro invertido para que se vea el logo original con volumen */
}

/* Columna Derecha (Visuales) */
.equipment-visuals-col { 
    flex: 1.5; 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
}

.eq-images-row { 
    display: flex; 
    gap: 1.5rem; 
    justify-content: space-between; 
}

.eq-img { 
    width: 31%; 
    aspect-ratio: 3/4; 
    object-fit: cover; 
    border-radius: 8px; 
    border: 1px solid rgba(255, 255, 255, 0.9); 
}
.eq-cards-row { display: flex; gap: 1.5rem; justify-content: space-between; }
.eq-card-mini { background-color: #0a0a0a; flex: 1; padding: 2rem 1rem; border-radius: 8px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; border: 1px solid rgba(255, 255, 255, 0.05); transition: var(--transition); }
.eq-card-mini:hover { transform: translateY(-5px); border-color: rgba(216, 140, 162, 0.3); }
.eq-icon { font-size: 2.2rem; }
.eq-card-mini p { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; color: #D88CA2; line-height: 1.4; }

/* --- TU EVENTO (RESERVA) CANVA STYLE --- */
.event-booking { 
    background-color: var(--bg-black); 
    padding: 1rem 2rem 6rem; /* <-- Reducimos el relleno de arriba a 1rem */
}
.booking-container-main { 
    max-width: 1000px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 2.5rem; 
}
.booking-top-row { display: flex; gap: 3rem; align-items: flex-start; }

/* Título de "Tu evento" en Playfair Display Cursiva */
/* Título de "Tu evento" */
.booking-title { 
    font-family: 'Playfair Display', serif; 
    font-style: italic;
    font-size: 3rem; /* ¡Reducimos el tamaño de 4rem a 3rem! */
    font-weight: 500; /* Le quitamos un poco de grosor para mayor elegancia */
    margin: 0; 
    white-space: nowrap; 
    color: var(--text-white); 
}

/* Texto de "Tu evento" */
.booking-desc { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.15rem; /* Un poquitito más grande para que se lea fácil */
    font-style: italic; /* ¡Añadimos la cursiva que pediste! */
    font-weight: 400; /* Letra delgada y limpia */
    color: var(--text-white); 
    margin: 0; 
    line-height: 1.7; 
}

/* Título Central de Requerimientos */
.booking-req-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem; /* ¡Reducimos el tamaño de 2.8rem a 2.2rem! */
    font-weight: 500; /* Menos grueso */
    color: var(--text-white);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem; /* Le damos un poco más de aire antes de la foto */
}

/* MAGIA: align-items: stretch obliga a la foto y al form a medir lo mismo */
.booking-bottom-row { 
    display: flex; 
    gap: 3rem; 
    align-items: stretch; 
}

.booking-photo-col {
    flex: 1;
    display: flex;
}

.booking-photo-img {
    width: 100%;
    height: 100%; /* Toma la altura completa de la columna */
    max-width: 550px; 
    border-radius: 20px; 
    object-fit: cover; /* Evita que la foto se deforme al estirarse */
    box-shadow: -10px 15px 30px rgba(0,0,0,0.4); 
}

.booking-form-col { 
    flex: 1.2; 
    display: flex;
}

.form-container { 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 20px; 
    padding: 2rem 1.5rem; 
    background: rgba(255, 255, 255, 0.04); 
    width: 100%; /* Asegura que el formulario ocupe el espacio */
    margin: 0 auto; 
}
.booking-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row-date { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.es-label-date, .en-label-date { font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem; color: var(--text-white); }
.date-input { background-color: transparent; border: none; color: var(--text-white); font-family: var(--font-sans); font-size: 1.1rem; outline: none; cursor: pointer; }
.date-input::-webkit-calendar-picker-indicator { filter: invert(1); font-size: 1.8rem; cursor: pointer; }
.form-fields-list { display: flex; flex-direction: column; gap: 0.8rem; }

/* Magia de las 3 columnas alineadas */
.form-row { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 1rem; }
.form-row label { font-family: var(--font-sans); font-weight: 600; font-size: 0.85rem; color: var(--text-white); text-align: right; }
.en-label { font-family: var(--font-sans); font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); text-align: left; }
.pink-input { background-color: #D67498; border: none; border-radius: 20px; height: 26px; padding: 0 15px; color: white; font-family: var(--font-sans); outline: none; width: 100%; }
.pink-input { 
    background-color: #D67498; 
    border: none; 
    border-radius: 20px; 
    height: 22px; /* Reducimos el grosor de las barritas rosadas */
    padding: 0 15px; 
    color: white; 
    font-family: var(--font-sans); 
    outline: none; 
    width: 100%; 
}
.submit-row { display: flex; justify-content: flex-end; margin-top: 1rem; padding-right: 25%; }
.btn-enviar { background-color: var(--cream); color: var(--bg-black); border: none; padding: 6px 30px; border-radius: 20px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.btn-enviar:hover { background-color: #D67498; color: white; }

/* --- FOOTER --- */
.footer { background-color: var(--bg-black); padding: 4rem 2rem; display: flex; flex-direction: column; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); }
.small-crown { width: 60px; margin-bottom: 2rem; opacity: 0.6; transition: var(--transition); }
.small-crown:hover { opacity: 1; }
.footer p { font-size: 0.8rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; }/* --- FOOTER --- */
.footer { 
    background-color: var(--bg-black); 
    padding: 1.5rem 2rem; /* <-- Redujimos esto de 4rem a 1.5rem para quitar el exceso de espacio negro */
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    border-top: 1px solid rgba(255,255,255,0.05); 
}

.small-crown { 
    width: 60px; /* La hacemos un poquitito más discreta */
    margin-bottom: 0.5rem; /* <-- Acercamos más la corona al texto */
    opacity: 0.5; 
    filter: brightness(0) invert(1); 
    transition: var(--transition); 
}

.small-crown:hover { 
    opacity: 1; 
}

.footer p { 
    font-size: 0.85rem; 
    color: rgba(255,255,255,0.5); 
    letter-spacing: 1px; 
    text-align: center; /* ESTO ES CLAVE: Asegura la alineación perfecta bajo la corona */
}

/* Le da un toque sutil y elegante a tu agencia */
.agency-name {
    color: var(--pink); 
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* Oculta el salto de línea en computadora */
.mobile-break { 
    display: none; 
}

/* ========================================= */
/* --- CÓDIGO RESPONSIVE (MÓVILES) --- */
/* ========================================= */
@media (max-width: 1400px) {
    .hero-photo-floating { max-height: 80vh; }
}

@media (max-width: 1200px) {
    .repertoire-grid { grid-template-columns: repeat(3, 1fr); }
    .booking-top-row { flex-direction: column; gap: 1.5rem; text-align: center; align-items: center; }
    .booking-bottom-row { flex-direction: column; align-items: center; }
    .booking-form-col { width: 100%; }
}

@media (max-width: 992px) {
    .review-grid { grid-template-columns: 1fr; }
    .equipment-layout { flex-direction: column; }
    .eq-images-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 1rem; }
    .eq-img { width: 45%; flex: 0 0 auto; }
    .eq-cards-row { flex-wrap: wrap; justify-content: center; }
    .eq-card-mini { width: 45%; flex: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-top-text-new { flex-direction: column; gap: 0.5rem; text-align: center; }
    .hero-main-layout { flex-direction: column-reverse; align-items: center; gap: 0; }
    .hero-photo-col { width: 100%; bottom: 0; justify-content: center; }
    .hero-logo-col { width: 100%; padding-bottom: 2rem; }
    .hero-crown-large-new { width: 250px; }
    .repertoire-header { flex-direction: column; text-align: center; gap: 1.5rem; }
    .repertoire-grid { grid-template-columns: 1fr; }
    .cursive-subtitle { font-size: 2.8rem; }
    
    /* Responsive Formulario Reserva */
    .form-row { grid-template-columns: 1fr; gap: 0.2rem; margin-bottom: 0.5rem; }
    .form-row label { text-align: left; }
    .en-label { display: none; }
    .submit-row { justify-content: center; padding-right: 0; }
}
/* --- BOTÓN WHATSAPP FLOTANTE --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* El verde oficial de WhatsApp */
    border-radius: 50%;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 10000; /* Asegura que siempre esté por encima de todo */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Efecto de rebote al pasar el mouse */
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Ajuste del botón para que no estorbe en celulares */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}
/* --- SECCIÓN DE CONTACTO (2 COLUMNAS) --- */
.contact-section { 
    padding: 6rem 2rem; 
    background-color: var(--bg-black); 
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 800px; /* Lo mantenemos compacto para que no se separen mucho */
    margin: 0 auto;
    gap: 3rem;
}

/* Columna del Título */
.contact-col-left {
    flex: 1;
    text-align: right; /* Alinea el título hacia la línea divisoria */
    border-right: 1px solid rgba(216, 140, 162, 0.4); /* Línea divisoria rosada muy sutil */
    padding-right: 3rem;
}

.contact-title { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    color: var(--pink); 
    font-size: 2.8rem; /* Un poco más pequeño */
    margin: 0; 
    font-weight: 500;
}

/* Columna de los Datos */
.contact-col-right {
    flex: 1.5;
    text-align: left;
}

.contact-col-right p { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    font-size: 1.1rem; /* Letra mucho más delicada y pequeña */
    margin: 0.8rem 0; 
    color: rgba(255, 255, 255, 0.7); /* Blanco suavizado para que no grite visualmente */
    font-weight: 400;
}

.contact-col-right a { 
    color: var(--text-white); 
    text-decoration: none; 
    transition: var(--transition);
    margin-left: 8px; /* Separación sutil entre la palabra y el dato */
}

.contact-col-right a:hover { 
    color: var(--pink); 
}

/* Ajuste para que en celulares vuelva a ser 1 sola columna y no se rompa */
@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .contact-col-left {
        text-align: center;
        border-right: none; /* Quitamos la línea vertical */
        border-bottom: 1px solid rgba(216, 140, 162, 0.4); /* Ponemos la línea horizontal */
        padding-right: 0;
        padding-bottom: 1.5rem;
    }
    .contact-col-right {
        text-align: center;
    }
}
/* --- AJUSTE PARA VER BOTONES EN CELULARES --- */
@media (max-width: 768px) {
    .nav-links { 
        display: flex !important; /* Forza a que se vean los botones */
        gap: 0.8rem; 
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
    
    .header-container {
        flex-direction: column; /* Apila logo, menú y botón */
        padding: 1rem;
    }

    .nav-links a {
        font-size: 0.7rem; /* Letra pequeña para que quepan todos */
        white-space: nowrap;
    }

    .btn-reservar {
        margin-top: 10px;
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    /* ... (aquí debes tener tus otras reglas de celular) ... */

    /* Ajustes del nuevo Hero SÓLO para celulares */
    .hero-split-body {
        flex-direction: column; /* Solo en el celular se apila verticalmente */
        gap: 2rem;
    }
    .hero-split-header {
        display: flex; /* En celulares vuelve a ser una lista vertical */
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .hero-text-right, .hero-text-left {
        text-align: center;
    }
.hero-text-left {
        font-size: 1rem; /* Reducimos un poquitito la fuente para móviles */
        letter-spacing: 6px; /* Menos espacio entre letras para que quepa */
        white-space: nowrap; /* ¡MAGIA! Esto prohíbe terminantemente que la palabra se rompa en dos líneas */
    }
    .hero-photo-rect {
        min-height: 300px;
    }
}
.mobile-break { 
        display: block; /* En móviles, pone "Desarrollado por Ultrastfull" en la línea de abajo */
    }