/* ==========================================================================
   1. VARIABLES Y CONFIGURACIÓN GLOBAL
   ========================================================================== */
:root {
    --primary-color: #cca43b;    /* Oro elegante */
    --secondary-color: #ffffff;
    --dark-bg: #240712;          /* Nuevo: Borgoña vivo y profundo */
    --dark-card: #350f1d;        /* Nuevo: Fondo para las tarjetas de servicios */
    --text-light: #ffffff;
    --text-muted: #f1e4e8;       /* Nuevo: Blanco suavizado con un toque cálido */
    --font-titles: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Transición más fluida */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   2. NAVBAR (MENÚ DE NAVEGACIÓN)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

/* Efecto cuando el usuario hace scroll (se añade con JS) */
.main-header.scrolled {
    background-color: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(204, 164, 59, 0.2);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-titles);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo a span {
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: var(--primary-color);
}

.btn-nav {
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg) !important;
}

/* Menú Hamburguesa para Móviles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   3. HERO SECTION (PORTADA DE ALTO IMPACTO)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11,15,25,0.7) 0%, rgba(11,15,25,0.9) 100%);
    z-index: 2;
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    text-align: left;
}

.hero-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-titles);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title span {
    color: var(--primary-color);
    font-style: italic;
    font-family: var(--font-titles);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Botones Modernos */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* ==========================================================================
   4. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--dark-bg);
        z-index: 999;
        padding: 100px 40px;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(204, 164, 59, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        text-align: center;
        width: 100%;
    }

}
/* ==========================================================================
   5. SECCIÓN SERVICIOS (CSS GRID)
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-titles);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Distribución Inteligente con CSS Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Tarjetas de Servicios Modernas */
.service-card {
    background-color: var(--dark-card);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(204, 164, 59, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Efecto Hover interactivo */
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Detalle visual superior en la tarjeta al pasar el cursor */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-family: var(--font-titles);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.85;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.service-card:hover .card-link {
    letter-spacing: 1px; /* Animación sutil en el texto */
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 480px) {
    .section-title {
        font-size: 2.2rem;
    }
    .service-card {
        padding: 30px 20px;
    }
}
/* ==========================================================================
   6. SECCIÓN MULTIMEDIA Y SPOTIFY
   ========================================================================== */
.multimedia-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(204, 164, 59, 0.1);
}

/* Bloque Combinado de Spotify */
.spotify-block {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 80px;
    border: 1px solid rgba(204, 164, 59, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.spotify-info {
    flex: 1 1 400px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotify-info h3 {
    font-family: var(--font-titles);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.spotify-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.badge {
    background-color: rgba(204, 164, 59, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(204, 164, 59, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spotify-embed-container {
    flex: 1 1 400px;
    background: #000; /* Fondo negro puro para que el iframe de Spotify encaje limpio */
}

.spotify-embed-container iframe {
    display: block;
    border: none;
}

/* Cuadrícula de Vídeos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.video-card {
    background-color: var(--dark-card);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
    border: 1px solid rgba(204, 164, 59, 0.05);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.video-thumbnail-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #000;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-card:hover .video-thumb {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Botón flotante de reproducción moderno */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.video-card:hover .play-button {
    background-color: var(--text-light);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
}

.video-info h4 {
    font-family: var(--font-titles);
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.video-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ==========================================================================
   7. VENTANA MODAL PARA REPRODUCCIÓN (POP-UP)
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 900px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-light);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .spotify-info {
        padding: 30px 20px;
    }
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }
}
/* ==========================================================================
   8. SECCIÓN TRAYECTORIA / NOSOTROS
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-card); /* Alternamos el color de fondo para dar ritmo */
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.9;
}

blockquote {
    font-family: var(--font-titles);
    font-style: italic;
    font-size: 1.3rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0 0 0;
    color: var(--text-light);
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    filter: grayscale(15%);
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    filter: grayscale(0%);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 20px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge .years {
    font-family: var(--font-titles);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
    text-align: center;
}

/* ==========================================================================
   9. SECCIÓN CONTACTO Y FORMULARIO
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    margin-top: 40px;
}

/* Panel de canales directos */
.contact-info-panel h3 {
    font-family: var(--font-titles);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info-panel > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.channel-card {
    display: flex;
    align-items: center;
    background-color: var(--dark-card);
    padding: 20px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-light);
    border: 1px solid rgba(204, 164, 59, 0.1);
    transition: var(--transition-smooth);
}

.channel-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.channel-icon {
    font-size: 2rem;
    margin-right: 20px;
}

.channel-details h5 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.channel-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.location-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Formulario moderno */
.contact-form-container {
    background-color: var(--dark-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(204, 164, 59, 0.1);
}

.modern-form .form-group {
    margin-bottom: 25px;
}

.modern-form .form-row {
    display: flex;
    gap: 20px;
}

.modern-form .form-row .form-group {
    flex: 1;
}

.modern-form label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--dark-bg);
    border: 1px solid rgba(204, 164, 59, 0.2);
    border-radius: 4px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(204, 164, 59, 0.2);
}

.modern-form input::placeholder,
.modern-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.btn-block {
    width: 100%;
    text-align: center;
    cursor: pointer;
}

/* ==========================================================================
   10. RESPONSIVE COMPLEMENTARIO
   ========================================================================== */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        order: -1; /* Ponemos la imagen arriba en móviles */
        max-width: 500px;
        margin: 0 auto;
    }
    
    .experience-badge {
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 600px) {
    .modern-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-form-container {
        padding: 25px 20px;
    }
}