/* CSS Variables */
:root {
    /* Colores */
    --marron-canela: #B8865C;
    --ocre-oscuro: #8B5A3C;
    --verde-selva: #2F4F2F;
    --verde-lima: #7CB342;
    --verde-musgo: #5A7C42;
    --negro-profundo: #2C2C2C;
    --gris-corteza: #6B5B5B;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    
    /* Fuentes */
    --menu-font: 'Crimson Text', serif;
    --body-font: 'Source Sans Pro', sans-serif;
    
    /* Transiciones y espaciados */
    --transition-default: all 0.3s ease;
    --section-padding: 80px 0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--negro-profundo);
    padding-top: 80px;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-container {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.preloader-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background-color: var(--verde-lima);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

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

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-default);
}

.navbar-brand .logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-family: var(--menu-font);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--negro-profundo) !important;
    padding: 8px 20px !important;
    transition: var(--transition-default);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -15px;
    left: 0;
    transition: var(--transition-default);
    z-index: -1;
}

/* Navbar hover effects - combinados */
.navbar-nav .nav-item:nth-of-type(1) .nav-link:hover { color: var(--white) !important; }
.navbar-nav .nav-item:nth-of-type(1) .nav-link::after { background-color: var(--verde-selva); }

.navbar-nav .nav-item:nth-of-type(2) .nav-link:hover { color: var(--white) !important; }
.navbar-nav .nav-item:nth-of-type(2) .nav-link::after { background-color: var(--verde-musgo); }

.navbar-nav .nav-item:nth-of-type(3) .nav-link:hover { color: var(--white) !important; }
.navbar-nav .nav-item:nth-of-type(3) .nav-link::after { background-color: var(--verde-lima); }

.navbar-nav .nav-item:nth-of-type(4) .nav-link:hover { color: var(--white) !important; }
.navbar-nav .nav-item:nth-of-type(4) .nav-link::after { background-color: var(--marron-canela); }

.navbar-nav .nav-item:nth-of-type(5) .nav-link:hover { color: var(--white) !important; }
.navbar-nav .nav-item:nth-of-type(5) .nav-link::after { background-color: var(--ocre-oscuro); }

.navbar-nav .nav-item .nav-link:hover::after {
    height: calc(100% + 30px);
    bottom: -15px;
}

.navbar-toggler {
    border-color: var(--verde-lima);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(124, 179, 66, 0.25);
}

/* Hero Section */
.hero-section {
    background: var(--white);
    padding: 120px 0 0 0;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: url('../img/header2.webp') left center/cover no-repeat;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section .col-lg-6:first-child {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 3.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-family: var(--menu-font);
    font-weight: 600;
    font-size: 3rem;
    line-height: 1.1;
    color: var(--negro-profundo);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gris-corteza);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: justify;
}

.btn-hero {
    display: inline-block;
    background-color: var(--negro-profundo);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-default);
    text-transform: lowercase;
}

.btn-hero:hover {
    background-color: var(--verde-selva);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--menu-font);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
    display: block;
    padding: 0.3rem 0.8rem;
    background-color: var(--verde-selva);
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Specific section title colors */
#institucional .section-title {
    background-color: var(--verde-musgo);
}

#equipo .section-title {
    background-color: var(--verde-lima);
}

#educacion .section-title {
    background-color: var(--marron-canela);
}

#grupos-asociados .section-title {
    background-color: var(--gris-corteza);
}

#contacto .section-title {
    background-color: var(--ocre-oscuro);
}

/* Background Light */
.bg-light {
    background-color: var(--light-gray) !important;
}


/* Institucional Section */
.institucional-extended {
    padding-bottom: 0;
}

.institucional-carousel {
    height: calc(100vh - 160px);
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    margin-bottom: calc(var(--section-padding) * -1);
}

.institucional-carousel .carousel,
.institucional-carousel .carousel-inner {
    height: 100%;
}

.institucional-carousel .carousel-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.institucional-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.institucional-content {
    padding: 2rem;
}

.institucional-content .section-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

/* Institucional Dependencia y Colaboración */
.institucional-logos-container {
    margin-top: 2rem;
}

.institucional-dependencia,
.institucional-colaboracion {
    text-align: center;
    padding: 1.5rem 1rem;
}

.dependencia-logo,
.colaboracion-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.institucional-logo {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.institucional-logo:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--negro-profundo) !important;
    color: var(--white);
    min-height: 50vh;
    padding: 4rem 0 2rem 0;
    display: flex;
    align-items: center;
}

.footer-content {
    width: 100%;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-column h5 {
    font-family: var(--menu-font);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-sitemap ul {
    list-style: none;
    padding: 0;
}

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

.footer-sitemap ul li a,
.footer-contact .contact-item a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-sitemap ul li a:hover,
.footer-contact .contact-item a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.footer-contact .contact-item i {
    font-size: 1.2rem;
    margin-right: 0.8rem;
    width: 20px;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--light-gray);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Separador Mono Section */
.separador-mono-section {
    position: relative;
    height: 60vh;
    min-height: 200px;
    background-image: url('../img/separador-mono.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separador-mono-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.separador-mono-section .container {
    position: relative;
    z-index: 2;
}

.separador-mono-text {
    color: var(--white);
    font-family: var(--menu-font);
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    background: var(--verde-musgo);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-instagram:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-instagram i {
    font-size: 1.2rem;
}

/* Carousel fade effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active.carousel-item-start,
.carousel-fade .carousel-item.active.carousel-item-end {
    transform: translateX(0);
}

/* Team Section Styles */
.grupo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.grupo-title {
    display: inline-block;
    color: white;
    background: linear-gradient(135deg, #2d5a27, #4a7c40);
    padding: 0.4rem 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2);
}

.grupo-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-member {
    text-align: center;
    margin-bottom: 1rem;
}

.member-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    margin-bottom: 0;
}

.member-photo:hover {
    transform: translateY(-8px);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-photo:hover img {
    transform: scale(1.05);
}

.member-info {
    text-align: center;
    padding: 1rem 0.5rem;
    margin-top: 0;
    transition: transform 0.3s ease;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-member:hover .member-info {
    transform: translateY(-8px);
}

.member-name {
    font-family: var(--body-font);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--negro-profundo);
    padding: 0;
    display: inline-block;
}

.member-role {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--negro-profundo);
    font-weight: 400;
    text-align: center;
}

.member-description {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--gris-corteza);
    font-weight: 300;
    line-height: 1.1;
    text-align: center;
}

/* Festival Section Mobile Styles */
.festival-section {
    padding: var(--section-padding);
}

.festival-image-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.festival-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
}

/* Grupos Asociados Section */
.grupos-asociados-section {
    padding: var(--section-padding);
    background-color: var(--white);
    border-top: 2px solid #d3d3d3;
}

.grupo-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: var(--white);
    height: 250px;
    margin: 0 1rem;
    text-align: center;
}

.grupo-logo-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex: 1;
    text-decoration: none;
}

.grupo-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive Media Queries */
@media (max-width: 1300px) {
    .separador-mono-text {
        font-size: 4rem;
        margin-bottom: 2rem;
        line-height: 1.1;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 10px 15px !important;
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    /* Mobile menu hover colors */
    .navbar-nav .nav-item:nth-of-type(1) .nav-link:hover { 
        color: var(--white) !important; 
        background-color: var(--verde-selva) !important;
        border-radius: 4px;
    }
    
    .navbar-nav .nav-item:nth-of-type(2) .nav-link:hover { 
        color: var(--white) !important; 
        background-color: var(--verde-musgo) !important;
        border-radius: 4px;
    }
    
    .navbar-nav .nav-item:nth-of-type(3) .nav-link:hover { 
        color: var(--white) !important; 
        background-color: var(--verde-lima) !important;
        border-radius: 4px;
    }
    
    .navbar-nav .nav-item:nth-of-type(4) .nav-link:hover { 
        color: var(--white) !important; 
        background-color: var(--marron-canela) !important;
        border-radius: 4px;
    }
    
    .navbar-nav .nav-item:nth-of-type(5) .nav-link:hover { 
        color: var(--white) !important; 
        background-color: var(--ocre-oscuro) !important;
        border-radius: 4px;
    }
    
    .hero-section {
        padding: 40px 0;
        text-align: center;
        height: auto;
        min-height: auto;
        display: flex;
        align-items: center;
        background: url('../img/header2.webp') center center/cover no-repeat;
        position: relative;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
        z-index: 1;
    }
    
    .hero-section::after {
        display: none;
    }
    
    .hero-section .container {
        height: auto;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        margin: 20px;
        padding: 40px 20px;
        position: relative;
        z-index: 2;
        backdrop-filter: blur(5px);
    }
    
    .hero-section .col-lg-6:first-child {
        padding: 0;
        margin: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0.5rem 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .institucional-carousel {
        height: 60vh;
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .institucional-content {
        padding: 1rem;
    }
    
    .separador-mono-section {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .separador-mono-text {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.1;
    }
    
    body {
        padding-top: 70px;
    }
    
    .footer {
        min-height: auto;
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-column {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    /* Team section mobile adjustments */
    .team-member {
        margin-bottom: 2rem;
    }
    
    .member-photo {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Hero section adjustments */
    .hero-section {
        padding: 30px 0;
        height: auto;
        min-height: auto;
        background: url('../img/header2.webp') center center/cover no-repeat;
        position: relative;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.75);
        z-index: 1;
    }
    
    .hero-section::after {
        display: none;
    }
    
    .hero-section .container {
        padding: 0 15px;
        height: auto;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        margin: 20px 10px;
        backdrop-filter: blur(20px);
        position: relative;
        z-index: 2;
    }
    
    .hero-section .col-lg-6:first-child {
        padding: 2.5rem 2rem;
        margin: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    /* Button adjustments */
    .btn-hero {
        padding: 12px 25px;
        font-size: 0.9rem;
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto;
    }
    
    /* Section adjustments */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 2rem;
    }
    
    /* Institucional section mobile */
    .institucional-carousel {
        height: 50vh;
        min-height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .institucional-content {
        padding: 0.5rem;
    }
    
    .institucional-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    /* Separador mono section */
    .separador-mono-section {
        height: 60vh;
        min-height: 350px;
        padding: 20px 0;
    }
    
    .separador-mono-text {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        padding: 0 15px;
    }
    
    .btn-instagram {
        padding: 10px 20px;
        font-size: 0.95rem;
        margin: 0 15px;
    }
    
    /* Team section mobile */
    .grupo-title {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .grupo-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .member-info {
        padding: 0.8rem;
    }
    
    .member-name {
        font-size: 0.9rem;
    }
    
    .member-role {
        font-size: 0.8rem;
    }
    
    .member-description {
        font-size: 0.85rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-logo {
        max-width: 200px;
    }
    
    .footer-column h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-contact .contact-item {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Navbar mobile */
    .navbar-brand .logo {
        height: 60px;
    }

    /* Festival section mobile */
    .festival-section {
        padding: 40px 0;
    }
    
    .festival-image-container {
        padding: 0 15px;
    }
    
    .festival-image {
        width: 100%;
        height: auto;
    }

    /* Grupos Asociados Mobile */
    .grupos-asociados-section {
        padding: 40px 0;
    }

    .grupo-logo-container {
        height: 200px;
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .grupo-logo {
        max-height: 100px;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .hero-section {
        padding: 20px 0;
        min-height: auto;
        background: url('../img/header2.webp') center center/cover no-repeat;
        position: relative;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
        z-index: 1;
    }
    
    .hero-section .container {
        padding: 0 10px;
        margin: 10px 5px;
        min-height: auto;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        position: relative;
        z-index: 2;
    }
    
    .hero-section .col-lg-6:first-child {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .hero-section::after {
        display: none;
    }
    
    .section-title {
        font-size: 1.3rem;
        padding: 0.4rem 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .section {
        padding: 30px 0;
    }
    
    /* Team section extra small */
    .grupo-title {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }
    
    .grupo-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .team-member {
        margin-bottom: 1.5rem;
    }
    
    .member-info {
        padding: 0.6rem;
    }
    
    .member-name {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .member-role {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .member-description {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Institucional section extra small */
    .institucional-carousel {
        height: 45vh;
        min-height: 200px;
    }
    
    .institucional-content {
        padding: 0.5rem;
    }
    
    .institucional-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Separador mono section extra small */
    .separador-mono-section {
        height: 55vh;
        min-height: 300px;
        padding: 15px 0;
    }
    
    .separador-mono-text {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .btn-instagram {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 0 10px;
    }
    
    /* Navbar extra small */
    .navbar-brand .logo {
        height: 50px;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px !important;
    }
    
    /* Footer extra small */
    .footer {
        padding: 1.5rem 0 1rem 0;
    }
    
    .footer-column h5 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-logo {
        max-width: 160px;
    }
    
    .footer-contact .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
    }
    
    .footer-contact .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }

    .festival-section {
        padding: 30px 0;
    }
    
    .festival-image-container {
        padding: 0 10px;
    }

    /* Grupos Asociados Extra Small */
    .grupos-asociados-section {
        padding: 30px 0;
    }

    .grupo-logo-container {
        height: 180px;
        padding: 1rem;
        margin: 0;
    }

    .grupo-logo {
        max-height: 80px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--verde-lima);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--verde-selva);
}