/*==================================================
        SALA SINERGIA TEATRAL
       Agustina para LandingPro
===================================================*/

/*========================
VARIABLES
========================*/

:root{

    --color-bg:#0f1115;
    --color-bg2:#171b22;

    --color-red:#d72638;
    --color-yellow:#f4c542;
    --color-blue:#2f7edb;

    --color-white:#ffffff;
    --color-light:#f5f5f5;
    --color-gray:#b9b9b9;

    --shadow:0 20px 60px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.35s;

    --container:1200px;

}

/*========================
RESET
========================*/

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

html{

    scroll-behavior:smooth;

    scroll-padding-top:100px;

    overflow-x:hidden;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--color-bg);

    color:var(--color-white);

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

section{

    position:relative;

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}

.section{

    padding:120px 0;

}

/*========================
SCROLL
========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--color-red);

    border-radius:20px;

}

/*========================
TITULOS
========================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--color-yellow);

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:.85rem;

}

.section-title h2{

    font-family:'Cormorant Garamond',serif;

    font-size:3.4rem;

    margin-top:15px;

}

.section-tag{

    color:var(--color-yellow);

    font-size:.9rem;

    text-transform:uppercase;

    letter-spacing:2px;

}

/*========================
HEADER
========================*/

#header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:9999;

    transition:.4s;

}

#header.active{

    background:rgba(15,17,21,.80);

    backdrop-filter:blur(14px);

    box-shadow:0 10px 35px rgba(0,0,0,.35);

}

.nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    width:180px;

}

.menu{

    display:flex;

    gap:38px;

}

.menu a{

    position:relative;

    transition:.3s;

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--color-red);

    transition:.35s;

}

.menu a:hover::after{

    width:100%;

}

.menu a:hover{

    color:var(--color-yellow);

}

.hamburger{

    display:none;

}

/*========================
BOTONES
========================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border-radius:50px;

    background:linear-gradient(45deg,var(--color-red),#ff4b4b);

    color:white;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(215,38,56,.35);

}

/*==========================================
HERO PREMIUM - REFLECTORES TEATRALES
==========================================*/

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#090909;

}

.hero-bg{

    position:absolute;

    inset:0;

    background:url("../img/hero.jpg") center center;

    background-size:cover;

    transform:scale(1.08);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(to bottom,
    rgba(0,0,0,.55),
    rgba(0,0,0,.85));

}

.hero-noise{

    position:absolute;

    inset:0;

    opacity:.07;

    background-image:url("../img/noise.png");

}

/*==========================================
REFLECTORES TEATRALES
==========================================*/

.spotlight{

    position:absolute;

    pointer-events:none;

    z-index:5;

}

.spotlight-red{

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(215,38,56,.35),

    rgba(215,38,56,.15) 40%,

    transparent 70%);

    filter:blur(35px);

    top:-200px;

    left:10%;

    animation:spotlightPulse 5s ease-in-out infinite alternate,

    spotlightDrift 7s ease-in-out infinite alternate;

}

.spotlight-yellow{

    width:650px;

    height:650px;

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(244,197,66,.35),

    rgba(244,197,66,.15) 40%,

    transparent 70%);

    filter:blur(35px);

    bottom:-150px;

    left:40%;

    animation:spotlightPulse 6s ease-in-out infinite alternate,

    spotlightDriftReverse 8s ease-in-out infinite alternate;

}

.spotlight-blue{

    width:750px;

    height:750px;

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(47,126,219,.35),

    rgba(47,126,219,.15) 40%,

    transparent 70%);

    filter:blur(35px);

    top:-100px;

    right:-100px;

    animation:spotlightPulse 7s ease-in-out infinite alternate,

    spotlightDrift 9s ease-in-out infinite alternate;

}

/*==========================================
ANIMACIONES REFLECTORES
==========================================*/

@keyframes spotlightPulse{

    0%{

        opacity:.7;

        transform:scale(1);

    }

    50%{

        opacity:1;

        transform:scale(1.1);

    }

    100%{

        opacity:.8;

        transform:scale(1.05);

    }

}

@keyframes spotlightDrift{

    0%{

        transform:translate(0,0) scale(1);

    }

    25%{

        transform:translate(90px,60px) scale(1.1);

    }

    50%{

        transform:translate(-50px,100px) scale(1.15);

    }

    75%{

        transform:translate(70px,40px) scale(1.12);

    }

    100%{

        transform:translate(40px,70px) scale(1);

    }

}

@keyframes spotlightDriftReverse{

    0%{

        transform:translate(0,0) scale(1);

    }

    25%{

        transform:translate(-80px,-60px) scale(1.12);

    }

    50%{

        transform:translate(60px,-90px) scale(1.10);

    }

    75%{

        transform:translate(-40px,-50px) scale(1.15);

    }

    100%{

        transform:translate(-70px,-40px) scale(1);

    }

}

.hero-container{

    position:relative;

    z-index:20;

}

.hero-circle{

    position:absolute;

    right:auto;
    left:55%;

    top:50%;

    transform:translateY(-50%);

    width:30vw;
    max-width:500px;
    min-width:180px;

    z-index:10;

    pointer-events:none;

    opacity:1;

    animation:circleSpin 20s linear infinite;

}

@keyframes circleSpin{

    0%{

        transform:translateY(-50%) rotate(0deg);

    }

    100%{

        transform:translateY(-50%) rotate(360deg);

    }

}

.hero-content{

    max-width:700px;

}

.hero-subtitle{

    letter-spacing:4px;

    color:#f4c542;

    font-size:.9rem;

}

.hero h1{

    margin:30px 0;

    font-size:6rem;

    line-height:.95;

    font-family:"Cormorant Garamond",serif;

}

.hero h1 span{

    display:block;

    opacity:0;

    transform:translateY(60px);

}

.hero p{

    color:#d8d8d8;

    font-size:1.2rem;

    letter-spacing:2px;

}

.hero-buttons{

    display:flex;

    gap:25px;

    margin-top:45px;

}

.btn-outline{

    padding:18px 42px;

    border:2px solid rgba(255,255,255,.3);

    border-radius:60px;

}

.btn-outline:hover{

    background:white;

    color:black;

}

/*==========================================
LA SALA
==========================================*/

.about-premium{

    display:grid;

    grid-template-columns:55% 45%;

    max-width:var(--container);

    margin:auto;

    height:900px;

    overflow:hidden;

}

.about-image{

    position:relative;

    overflow:visible;

}

.about-content{

    display:flex;

    flex-direction:column;

    padding:60px;

    background:#11151d;

    overflow:hidden;

}

.about-text-scroll{

    flex:1;

    overflow-y:auto;

    padding-right:15px;

    scrollbar-width:thin;

    scrollbar-color:var(--color-red) transparent;

}

.about-text-scroll::-webkit-scrollbar{

    width:6px;

}

.about-text-scroll::-webkit-scrollbar-track{

    background:transparent;

}

.about-text-scroll::-webkit-scrollbar-thumb{

    background:var(--color-red);

    border-radius:10px;

}

.about-image img{

    width:100%;

    height:auto;

    max-height:70%;

    object-fit:contain;

    border-radius:22px;

    position:absolute;

    top:100px;

    left:0;

    opacity:0;

    transition:opacity 1s ease;

}

.about-image img.active{

    opacity:1;

    position:relative;

}

.section-mini{

    color:#f4c542;

    letter-spacing:4px;

}

.about-content h2{

    margin:25px 0;

    font-size:3.2rem;

    font-family:"Cormorant Garamond",serif;

}

.about-content p{

    color:#d0d0d0;

    line-height:2;

    margin-bottom:25px;

}

.stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:30px;

}

.stat-card{

    padding:30px 20px;

    border-radius:20px;

    background:#1a2029;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-5px);

    border-color:var(--color-yellow);

}

.stat-card h3{

    font-family:"Cormorant Garamond",serif;

    font-size:2.8rem;

    color:var(--color-yellow);

    line-height:1;

    margin-bottom:10px;

}

.stat-card span{

    color:var(--color-gray);

    font-size:.9rem;

    line-height:1.5;

}

/*==================================================
                    GALERIA
=================================================*/

.gallery{

    background:var(--color-bg);

    padding-top:60px;

    padding-bottom:60px;

    overflow:hidden;

}

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:28px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    box-shadow:var(--shadow);

}

.gallery-item img{

    height:330px;

    object-fit:cover;

    transition:.55s;

}

.gallery-item::before{

    content:"+";

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:4rem;

    color:white;

    background:rgba(215,38,56,.45);

    opacity:0;

    transition:.4s;

    z-index:2;

    pointer-events:none;

}

.gallery-item:hover::before{

    opacity:1;

}

@media(max-width:768px){

.gallery-item::before{

    content:none;

}

}

@media(max-width:768px){

.gallery-item::before{

    content:"+";
    position:absolute;
    top:10px;
    left:10px;
    inset:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.5rem;
    color:white;
    background:none;
    opacity:1;
    z-index:2;
    pointer-events:none;

}

.carousel-item::before{

    content:"+";
    position:absolute;
    top:10px;
    left:10px;
    inset:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.5rem;
    color:white;
    background:none;
    opacity:1;
    z-index:2;
    pointer-events:none;

}

}

.gallery-item:hover::before{

    opacity:1;

}

/*==================================================
          GALERIA - CARRUSEL
=================================================*/

.gallery-carousel{

    display:flex;

    align-items:center;

    gap:20px;

    margin-top:40px;

}

.carousel-track{

    display:flex;

    gap:0;

    overflow:hidden;

    scroll-behavior:smooth;

    scrollbar-width:none;

    flex:1;

}

.carousel-track::-webkit-scrollbar{

    display:none;

}

.carousel-item{

    flex:none;

    min-width:100%;

    width:100%;

    border-radius:22px;

    overflow:hidden;

    cursor:pointer;

    box-shadow:var(--shadow);

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}

.carousel-item img{

    width:100%;

    height:auto;

    object-fit:contain;

    transition:.55s;

    display:block;

}

.carousel-item::before{

    content:"+";

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:4rem;

    color:white;

    background:rgba(215,38,56,.45);

    opacity:0;

    transition:.4s;

    z-index:2;

    pointer-events:none;

}

.carousel-item:hover::before{

    opacity:1;

}

@media(max-width:768px){

.carousel-item::before{

    content:none;

}

}

.carousel-item:hover img{

    transform:scale(1.12);

}

.carousel-item:hover::before{

    opacity:1;

}

.carousel-btn{

    width:60px;

    height:60px;

    border-radius:50%;

    border:none;

    background:var(--color-red);

    color:white;

    font-size:1.5rem;

    cursor:pointer;

    flex:none;

    transition:.3s;

}

.carousel-btn:hover{

    background:var(--color-yellow);

    color:#111;

}

/*==================================================
                EFECTOS GENERALES
=================================================*/

.gallery-item,
.about-image{

    will-change:transform;

}

.section-title h2{

    position:relative;

    display:inline-block;

}

.section-title h2::after{

    content:"";

    position:absolute;

    width:90px;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--color-red),
        var(--color-yellow)
    );

    left:50%;

    transform:translateX(-50%);

    bottom:-18px;

    border-radius:20px;

}

.section-title p{

    margin-top:35px;

    color:var(--color-gray);

    max-width:700px;

    margin-inline:auto;

    line-height:1.8;

}

/*==================================================
        DECORACIONES
=================================================*/

.gallery::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(244,197,66,.05);

    border-radius:50%;

    right:-100px;

    bottom:-100px;

    filter:blur(90px);

    pointer-events:none;

}

/*==================================================
                    TALLERES
=================================================*/

.workshops{

    position:relative;

    overflow:hidden;

    background:var(--color-bg2);

    padding-top:60px;

    padding-bottom:60px;

}

.workshops::before{

    content:"";

    position:absolute;

    inset:0;

    opacity:1;

    background:

    radial-gradient(circle at 10% 20%, rgba(215,38,56,.6), transparent 40%),

    radial-gradient(circle at 85% 70%, rgba(244,197,66,.5), transparent 40%),

    radial-gradient(circle at 40% 90%, rgba(47,126,219,.5), transparent 40%);

    mix-blend-mode:screen;

    pointer-events:none;

    z-index:1;

}

.workshops .container{

    position:relative;

    z-index:1;

}

.workshops-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.workshop-card{

    background:#1d2129;

    padding:40px 35px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

    transition:.4s;

    position:relative;

    overflow:hidden;

    box-shadow:var(--shadow);

    display:flex;

    flex-direction:column;

    align-items:center;

}

.workshop-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(215,38,56,.08),
        rgba(47,126,219,.05)
    );

    opacity:0;

    transition:.4s;

}

.workshop-card:hover::before{

    opacity:1;

}

.workshop-card:hover{

    transform:translateY(-12px);

    border-color:var(--color-yellow);

}

.workshop-card .icon{

    font-size:3rem;

    margin-bottom:20px;

    color:var(--color-white);

    display:flex;

    justify-content:center;

    line-height:1;

}

.workshop-card .icon svg{

    display:block;

}

.workshop-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    margin-bottom:15px;

}

.workshop-card p{

    color:var(--color-gray);

    line-height:1.8;

    margin-bottom:30px;

}

.btn-workshops{

    display:block;

    width:fit-content;

    margin:40px auto 0;

    padding:18px 38px;

    border-radius:50px;

    background:linear-gradient(45deg,var(--color-red),#ff4b4b);

    color:white;

    font-weight:600;

    font-size:1.1rem;

    transition:.35s;

    text-align:center;

}

.btn-workshops:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(215,38,56,.35);

}

.workshops-cta{

    text-align:center;

    margin-top:60px;

    padding:50px 40px;

    background:#1a2029;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.05);

}

.workshops-cta h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2.4rem;

    margin-bottom:18px;

}

.workshops-cta p{

    color:var(--color-gray);

    line-height:1.8;

    max-width:700px;

    margin:0 auto 30px;

}

/*==================================================
                    INCAA
=================================================*/

.incaa{

    position:relative;

    padding:140px 0;

    background:
    linear-gradient(rgba(5,5,5,.82),rgba(5,5,5,.88)),
    url("../img/cinta2-cine.png");

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.incaa-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle,
    rgba(244,197,66,.12),
    transparent 70%);

}

.incaa-content{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:30px;

    position:relative;

    z-index:2;

}

.incaa h2{

    font-family:'Cormorant Garamond',serif;

    font-size:4rem;

    margin:25px 0;

}

.incaa p{

    max-width:700px;

    line-height:1.9;

    color:#ddd;

    margin-bottom:40px;

}

.incaa-image{

    width:100%;

    max-width:280px;

    border-radius:16px;

    box-shadow:var(--shadow);

    flex:none;

}

/*==================================================
                UBICACION
=================================================*/

.location{

    background:var(--color-bg2);

}

.location-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.location h2{

    font-family:'Cormorant Garamond',serif;

    font-size:3rem;

    margin:20px 0;

}

.location p{

    line-height:1.9;

    color:#ddd;

    margin-bottom:30px;

}

.location ul{

    display:grid;

    gap:15px;

}

.location li{

    font-size:1.1rem;

}

.map iframe{

    width:100%;

    height:450px;

    border-radius:22px;

    border:none;

    filter:grayscale(.5);

}

/*==================================================
                CONTACTO
=================================================*/

.contact{

    background:var(--color-bg);

}

.contact-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:start;

}

.contact h2{

    font-family:'Cormorant Garamond',serif;

    font-size:3rem;

    margin:20px 0;

}

.contact p{

    color:#ccc;

    line-height:1.9;

    margin-bottom:40px;

}

.contact-item{

    margin-bottom:30px;

}

.contact-item strong{

    display:block;

    color:var(--color-yellow);

    margin-bottom:6px;

}

.contact-item span{

    color:#ccc;

    font-size:1.1rem;

}

.contact-item a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#ccc;
    font-size:1.1rem;
    transition:.3s;
}

.contact-item a:hover{
    color:var(--color-yellow);
}

.contact-item a svg{
    flex:none;
}

.contact-form{

    display:grid;

    gap:18px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 22px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.1);

    background:#1a2029;

    color:white;

    font-family:'Poppins',sans-serif;

    font-size:1rem;

    transition:.35s;

    outline:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--color-red);

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#777;

}

/*==================================================
                FOOTER
=================================================*/

footer{

    background:#0a0c10;

    padding:80px 0 0;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:350px;

    margin-bottom:25px;

}

.footer-grid h4{

    font-size:1.2rem;

    margin-bottom:25px;

    color:var(--color-yellow);

}

.footer-grid li{

    margin-bottom:12px;

}

.footer-grid a{

    transition:.3s;

    color:#bbb;

}

.footer-grid a:hover{

    color:var(--color-red);

}

.footer-grid p{

    color:#999;

    line-height:1.8;

}

.copyright{

    text-align:center;

    padding:40px;

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.05);

    color:#777;

    font-size:.9rem;

}

.copyright a{

    color:var(--color-red);

    text-decoration:underline;

    text-underline-offset:3px;

    font-weight:600;

    transition:.3s;

}

.copyright a:hover{

    color:var(--color-yellow);

}

/*========================
BOTON SUBIR
========================*/

#toTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--color-red);

    color:white;

    font-size:1.8rem;

    border:none;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

    box-shadow:0 10px 30px rgba(215,38,56,.35);

}

#toTop.show{

    opacity:1;

    visibility:visible;

}

#toTop:hover{

    transform:translateY(-5px);

}

/*========================
ANIMACIONES
========================*/

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:.8s ease;

}

.visible{

    opacity:1;

    transform:translateY(0);

}

/*========================
MENU MOBILE
========================*/

@media(max-width:992px){

.hero-circle{

display:none;

}

.spotlight{

display:none;

}

.about-premium{

display:flex;
flex-direction:column;
height:auto;

}

.about-image{

height:380px;
overflow:hidden;

}

.about-image img{

position:relative;
top:0;
height:100%;
max-height:none;
object-fit:cover;

}

.about-content{

padding:35px 25px;

}

}

@media(max-width:768px){

.about-image{

display:none;

}

.stats{

grid-template-columns:1fr;

}

}

@media(max-width:992px){

.location-grid{

grid-template-columns:1fr;

}

}

@media(max-width:992px){

.contact-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;
text-align:center;

}

.footer-logo{

margin:auto auto 25px;

}

}

@media(max-width:768px){

*, *::before, *::after{
    box-sizing:border-box;
}

html, body{
    overflow-x:hidden;
    max-width:100vw;
}

body > *{
    max-width:100vw;
}

.hero{

height:auto;
min-height:100vh;
padding:140px 0 80px;

}

.hero h1{

font-size:3.2rem;

}

.hero-buttons{

flex-direction:column;
align-items:flex-start;

}

}

@media(max-width:768px){

    #header .container{

        width:100%;
        box-sizing:border-box;
        padding:0 20px;

    }

    .nav nav{

        display:flex;
        align-items:center;

    }

    .menu{

        display:none;

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:rgba(15,17,21,.95);

        flex-direction:column;

        align-items:center;

        gap:0;

        border-radius:0 0 18px 18px;

        overflow:hidden;

    }

    .menu.open{

        display:flex;

    }

    .menu li{

        width:100%;

        text-align:center;

    }

    .menu a{

        display:block;

        padding:18px;

        border-bottom:1px solid rgba(255,255,255,.05);

    }

    .menu li:last-child a{

        border-bottom:none;

    }

    .hamburger{

        display:flex;

        flex-direction:column;

        gap:5px;

        cursor:pointer;

        background:none;

        border:none;

        padding:5px;

    }

    .hamburger span{

        width:28px;
        height:3px;
        background:white;
        border-radius:3px;

    }

}

@media(max-width:768px){

    .incaa-content{

        flex-direction:column;

        text-align:center;

        gap:20px;

    }

    .incaa-image{

        max-width:200px;

    }

    .incaa h2{

        font-size:2.2rem;

    }

}

/*========================
LIGHTBOX
========================*/

#lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

#lightbox.show{

    opacity:1;

    visibility:visible;

}

#lightbox img{

    max-width:95%;

    max-height:95%;

    width:auto;

    height:auto;

    object-fit:contain;

    border-radius:12px;

}

#closeLightbox{

    position:absolute;

    top:30px;

    right:40px;

    color:white;

    font-size:3rem;

    cursor:pointer;

}

/*==================================================
                AGENDA CULTURAL
==================================================*/

.agenda{
    background:linear-gradient(
        180deg,
        var(--color-bg),
        var(--color-bg2)
    );
    padding-top:100px;
    padding-bottom:100px;
}

.agenda-carousel{
    display:flex;
    align-items:center;
    gap:20px;
}

.agenda-track{
    display:flex;
    gap:28px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    flex:1;
    padding:10px 0;
}

.agenda-track::-webkit-scrollbar{
    display:none;
}

.agenda-slide-btn{
    width:56px;
    height:56px;
    border-radius:50%;
    border:none;
    background:var(--color-red);
    color:white;
    font-size:1.4rem;
    cursor:pointer;
    flex:none;
    transition:.3s;
}

.agenda-slide-btn:hover{
    background:var(--color-yellow);
    color:#111;
}

.agenda-card{
    flex:none;
    min-width:280px;
    width:280px;
    position:relative;
    overflow:hidden;
    border-radius:24px;
    cursor:pointer;
    background:#1a2029;
    box-shadow:var(--shadow);
    transition:transform .35s ease, box-shadow .35s ease;
}

.agenda-card img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:transform .5s ease;
}

.agenda-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        transparent 40%,
        rgba(0,0,0,.88) 100%
    );
}

.agenda-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 55px rgba(0,0,0,.45);
}

.agenda-card:hover img{
    transform:scale(1.08);
}

/*------------------ INFO ------------------*/

.agenda-info{
    position:absolute;
    left:22px;
    right:22px;
    bottom:22px;
    z-index:2;
}

.agenda-info span{
    display:inline-block;
    background:var(--color-red);
    color:#fff;
    padding:6px 12px;
    border-radius:999px;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:12px;
}

.agenda-info h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    margin-bottom:6px;
    color:#fff;
}

.agenda-info p{
    color:#d9d9d9;
    font-size:.95rem;
}

/*==================================================
                    MODAL
==================================================*/

.agenda-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(6px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:99999;
}

.agenda-modal.show{
    opacity:1;
    visibility:visible;
}

.agenda-box{
    width:min(850px,100%);
    background:#11151d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.55);
    display:grid;
    grid-template-columns:300px 1fr;
}

.agenda-modal-img{
    width:100%;
    height:100%;
    min-height:0;
    object-fit:cover;
    background:#0f1115;
}

.agenda-box.img-left .agenda-modal-img{
    object-position:left center;
}

.agenda-modal-content{
    padding:34px;
    display:flex;
    flex-direction:column;
    max-height:520px;
}

.agenda-modal-content h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    margin-bottom:14px;
    color:#fff;
    flex-shrink:0;
}

.agenda-desc{
    color:#d5d5d5;
    line-height:1.8;
    margin-bottom:20px;
    overflow-y:auto;
    flex:1;
    padding-right:8px;
    scrollbar-width:thin;
    scrollbar-color:var(--color-red) transparent;
}

.agenda-desc::-webkit-scrollbar{
    width:5px;
}

.agenda-desc::-webkit-scrollbar-track{
    background:transparent;
}

.agenda-desc::-webkit-scrollbar-thumb{
    background:var(--color-red);
    border-radius:10px;
}

.agenda-modal-content ul{
    display:grid;
    gap:10px;
    margin-bottom:20px;
    flex-shrink:0;
}

.agenda-modal-content li{
    color:#e6e6e6;
    font-size:1rem;
    line-height:1.5;
}

.agenda-modal-content strong{
    color:var(--color-yellow);
}

.agenda-close{
    position:absolute;
    top:18px;
    right:22px;
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    color:#fff;
    font-size:1.6rem;
    cursor:pointer;
    z-index:3;
    transition:.25s ease;
}

.agenda-close:hover{
    background:var(--color-red);
    transform:rotate(90deg);
}

/*==================================================
                    RESPONSIVE
==================================================*/

@media(max-width:900px){

    .agenda-box{
        grid-template-columns:1fr;
    }

    .agenda-box .agenda-modal-img{
        max-height:200px;
    }

}

@media(max-width:768px){

    .agenda{
        padding-top:80px;
        padding-bottom:80px;
    }

    .agenda-track{
        gap:18px;
    }

    .agenda-card{
        min-width:260px;
        width:260px;
    }

    .agenda-card img{
        height:300px;
    }

    .agenda-info h3{
        font-size:1.7rem;
    }

    .agenda-modal-content{
        padding:22px;
        max-height:460px;
    }

    .agenda-modal-content h3{
        font-size:1.7rem;
    }

    .agenda-slide-btn{
        width:44px;
        height:44px;
        font-size:1.1rem;
    }

}

@media(max-width:480px){

    .agenda-card img{
        height:260px;
    }

    .agenda-info{
        left:18px;
        right:18px;
        bottom:18px;
    }

    .agenda-info h3{
        font-size:1.5rem;
    }

    .agenda-modal{
        padding:12px;
    }

    .agenda-modal-content{
        padding:22px 18px;
    }

    .agenda-modal-content ul{
        gap:12px;
    }

}