/* ==================== Variables ==================== */
:root {
    --primary-color: #8b0000;
    --secondary-color: #d4af37;
    --dark-bg: #0a0a0a;
    --light-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gold: #d4af37;
    --accent-red: #c41e3a;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== Navbar ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--text-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-gold);
    transition: var(--transition);
}

/* ==================== Hero Section ==================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Teatro-Universal-de-Opera-Nester-Martorell-web.jpg') center/cover;
    opacity: 0.15;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 4px;
    color: var(--text-gold);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 2rem auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-gold);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--text-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 20% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* ==================== Buttons ==================== */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-gold);
    color: var(--text-gold);
}

.btn-secondary:hover {
    background: var(--text-gold);
    color: var(--dark-bg);
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* ==================== Sections ==================== */
.section {
    padding: 8rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--text-gold);
}

.section-header.light .section-title {
    color: var(--text-light);
}

.title-divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 1.5rem auto;
}

.section-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

/* ==================== About Section ==================== */
.about {
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.image-frame {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--text-gold);
}

.image-frame img {
    width: 100%;
    display: block;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-gold);
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== Teatro Section ==================== */
.teatro {
    position: relative;
    background: var(--dark-bg);
}

.teatro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/music-279332_1920.jpg') center/cover;
    opacity: 0.1;
}

.teatro-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.teatro-card {
    padding: 3rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.teatro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.teatro-card:hover::before {
    transform: scaleX(1);
}

.teatro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.teatro-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-gold);
}

.teatro-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.cta-box {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ==================== Escuela Section ==================== */
.escuela {
    background: var(--light-bg);
}

.escuela-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.escuela-feature {
    padding: 2.5rem 2rem;
    background: rgba(139, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.escuela-feature:hover {
    background: rgba(139, 0, 0, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.escuela-feature h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-gold);
}

.escuela-feature p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.video-container {
    margin: 4rem 0;
    position: relative;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(212, 175, 55, 0.2));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover::before {
    opacity: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-custom {
    padding-bottom: 0;
    height: auto;
}

.video-custom video {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.video-custom video:hover {
    transform: scale(1.02);
}

.video-custom video::-webkit-media-controls-panel {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(139,0,0,0.8) 100%);
}

.video-custom video::-webkit-media-controls-play-button,
.video-custom video::-webkit-media-controls-volume-slider,
.video-custom video::-webkit-media-controls-timeline {
    color: var(--secondary-color);
}

/* Título del video */
.video-title {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Botón de activar audio */
.unmute-btn {
    position: absolute;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    color: white;
    border: 2px solid var(--secondary-color);
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.unmute-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.7);
}

.unmute-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mute-icon {
    font-size: 1.3rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(139, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(212, 175, 55, 0.8);
    }
}

.benefits-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(26, 26, 26, 0.8));
    padding: 4rem;
    border: 2px solid var(--text-gold);
    text-align: center;
}

.benefits-box h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-gold);
}

.benefits-list {
    list-style: none;
    margin: 2rem 0 3rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* ==================== Gallery Section ==================== */
.gallery {
    background: var(--dark-bg);
    padding: 6rem 0;
}

/* ==================== Conciertos Section ==================== */
.conciertos {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.conciertos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/music-279332_1920.jpg') center/cover;
    opacity: 0.05;
}

.conciertos-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.conciertos-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-gold);
    font-family: 'Playfair Display', serif;
}

.conciertos-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.emotion-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(212, 175, 55, 0.1));
    padding: 3rem;
    margin-top: 3rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

.emotion-box h3 {
    color: var(--text-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.level-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: var(--transition);
}

.level-item:hover {
    transform: translateY(-5px);
    background: rgba(139, 0, 0, 0.3);
}

.level-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.level-name {
    display: block;
    font-size: 1rem;
    letter-spacing: 1px;
}

.conciertos-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.conciertos-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.conciertos-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(139, 0, 0, 0.95), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.conciertos-image:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.8rem;
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.image-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== Biblioteca Section ==================== */
.biblioteca {
    background: var(--dark-bg);
    position: relative;
}

.biblioteca::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/columns-801715_1920.jpg') center/cover;
    opacity: 0.08;
}

.biblioteca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.biblioteca-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(139, 0, 0, 0.2));
    padding: 3rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.biblioteca-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.biblioteca-card:hover::before {
    transform: scaleX(1);
}

.biblioteca-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.4);
    border-color: var(--secondary-color);
}

.card-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.biblioteca-card h3 {
    font-size: 1.8rem;
    color: var(--text-gold);
    margin-bottom: 1rem;
}

.biblioteca-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== Gallery Section ==================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9), rgba(212, 175, 55, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ==================== Contact Section ==================== */
.contact {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0000 100%);
    padding: 8rem 0;
}

/* ==================== Mensaje Final Section ==================== */
.mensaje-final {
    background: linear-gradient(135deg, var(--light-bg), var(--dark-bg));
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.mensaje-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Teatro-Universal-de-Opera-Nester-Martorell-web.jpg') center/cover;
    opacity: 0.1;
}

.mensaje-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mensaje-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.mensaje-content h3 {
    font-size: 2rem;
    color: var(--text-gold);
    margin: 2rem 0 1rem;
}

.mensaje-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-top: 2rem;
    font-style: italic;
}

.mensaje-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.firma {
    font-style: italic;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.signature {
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== Contact Section ==================== */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.contact-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-gold);
}

.contact-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.contact-form-box {
    padding: 3rem;
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid var(--secondary-color);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    border: 2px solid var(--text-gold);
    color: var(--text-gold);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.social-icon.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.social-icon.email:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-bg);
}

/* ==================== Footer ==================== */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-gold);
}

.footer-col p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--text-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--text-gold);
}

/* ==================== Particles Canvas ==================== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* ==================== Animations ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .about-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .conciertos-content {
        grid-template-columns: 1fr;
    }

    .levels {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .benefits-box {
        padding: 2rem;
    }

    .social-links {
        gap: 1rem;
    }

    .video-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .video-custom video {
        border-radius: 4px;
    }

    .unmute-btn {
        bottom: 60px;
        right: 10px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .emotion-box {
        padding: 2rem;
    }

    .biblioteca-card {
        padding: 2rem 1.5rem;
    }

    .mensaje-content {
        padding: 2.5rem;
    }

    .mensaje-content h2 {
        font-size: 2rem;
    }

    .mensaje-content h4 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo img {
        height: 50px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .unmute-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        bottom: 50px;
    }

    .mute-icon {
        font-size: 1.1rem;
    }

    .mensaje-content {
        padding: 2rem;
    }

    .mensaje-content h2 {
        font-size: 1.5rem;
    }

    .mensaje-content p {
        font-size: 1.1rem;
    }
}