@font-face {
    font-family: 'neueMontreal'; /* Nombre que usarás en CSS */
    src: url('https://rocketwebstatic.blob.core.windows.net/content/ocu-netflix/Fonts/NeueMontreal-Regular.ttf') format('woff2'),
         url('https://rocketwebstatic.blob.core.windows.net/$web/fonts/Mali-Regular.51c94745.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

html,
body {
    font-family: "neueMontreal";
    /* background: var(--color-accent-bg); */
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

h1 {
    font-size: 120px;
    font-weight: 400;
    line-height: 100%;
    font-family: "neueMontreal";
}

h2 {
    font-size: 100px;
    font-weight: 400;
    line-height: 100%;
    font-family: "neueMontreal";
}

h3{
    font-size: 80px;
    font-weight: 400;
    line-height: 100%;
    font-family: "neueMontreal"; 
}

p{
    font-size: 22px;
    font-weight: 400;
    line-height: 100%;
    font-family: "neueMontreal"; 
}

/* Responsive Typography */
@media (max-width: 1200px) {
    h1 {
        font-size: 80px;
    }
    
    h2 {
        font-size: 65px;
    }
    
    h3 {
        font-size: 48px;
    }
    
    p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 60px;
    }
    
    h2 {
        font-size: 50px;
    }
    
    h3 {
        font-size: 40px;
    }
    
    p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    h3 {
        font-size: 30px;
    }
    
    p {
        font-size: 16px;
    }
}


ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #00ABBD;
}



/* Navegación y menú hamburguesa */
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 6rem;
    border-top: 20px solid #00ABBD;
    position: relative;
}

.logo img {
    width: 167px;
    height: 50px;
    object-fit: cover;
    border: none;
    box-shadow: none;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1000;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #222222;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger-menu span:nth-child(1) {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 10px;
}

.hamburger-menu span:nth-child(3) {
    top: 20px;
}

.nav-menu {
    display: flex;
}

.main-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-links a {
    display: block;
    transition: color 0.2s ease;
    font-size: 18px;
}

.main-links a:hover {
    color: #00ABBD;
}

/* Media queries para responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 1.5rem 3rem;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .main-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 2rem;
        padding: 0;
        width: 100%;
    }
    
    .main-links li {
        width: 100%;
    }
    
    .main-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1rem;
    }
    
    .logo img {
        width: 140px;
        height: 42px;
    }
}

/* Hero */

section{
    width: 100%;
}

.hero{
    display: flex;
    justify-content: left;
    flex-direction: column;
    padding: 3rem 6rem;
    overflow: hidden;
    background-color: #fff;
    background-image: url("https://rocketwebstatic.blob.core.windows.net/content/ocu-netflix/assets/imagen\ hero.png");
    background-position: bottom right;
    background-size: 90%;
    background-repeat: no-repeat;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
}

.hero-content h1{
    text-align: left;
    opacity: 0; /* Para animación GSAP */
}

.hero-concurso img{
    width: 300px;
}

.hero-content p{
    text-align: left;
    width: 50%;
    font-size: 35px;
    opacity: 0;
    padding-top: 4rem;
    padding-bottom: 4rem;
    letter-spacing: 1px;
    line-height: normal;
}

@media (max-width: 992px) {
    .hero-content p{
        width: 50%;
    }

    .hero-concurso img{
        width: 300px;
    }

    .hero {
        padding: 3rem 3rem;
    }
    
    .hero-content p {
        font-size: 24px;
    }
}


.cta-button {
    transition: all 0.3s ease;
    max-width: fit-content;
    padding: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button:hover .form-container {
    transform: translateY(-3px);
}

.cta-button:hover .form-link {
    color: white;
}

.cta-button:hover .form-container img {
    transform: translateX(5px);
}

.cta-button img{
    width: 35px;
    height: 25px;
    transition: transform 0.3s ease;
    margin-top: .5rem;
}

.cta-button:hover img {
    transform: translateX(5px);
}

.cta-button a{
    display: flex;
    gap: 1rem;
    text-decoration: underline;
    font-size: 35px;
    align-items: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover a {
    color: white;
}

#cta-button:hover a {
    color: #00ABBD;
}

/* Estilo para los enlaces de formularios */
.form-link {
    text-decoration: underline;
    color: inherit;
    font-size: inherit;
}

.form-container {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    font-size: 35px;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: default;
}

.no-underline {
    text-decoration: none;
}

.cta-button .form-link:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem 4rem;
    }
    
    .hero h3 {
        font-size: 24px;
    }
    
    .hero-content p {
        width: 50%;
        font-size: 20px;
    }

    .hero-concurso img{
        width:250px;
    }
    
    .cta-button a {
        font-size: 20px;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem 3rem;
        background-position: center;
        background-size: cover;
        background-size: 80% !important;
        background-position: right !important;
    }
    
    .hero-concurso p {
        font-size: 18px;
    }
    
    .hero-concurso img{
        width:200px;
    }

    .cta-button{
        padding: 0 !important;
    }
    
    .cta-button a {
        padding: 0;
        font-size: 18px;
    }

    .cta-button img {
        width: 20px;
        height: 10px;
        margin: 0;
    }
}


/* Convocatoria */

.convocatoria{
    display: flex;
    flex-direction: column;
}

.convocatoria .superior{
    width: 100%;
    background-color: #B2E6EB;
    height: auto;
    height: 700px;
    display: flex;/* Para animación GSAP */
}

.superior .texto{
    width: 50%;
    padding: 3rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.texto .inscripcion p{
    font-size: 24px;
}

.texto .propuestas p{
    font-size: 24px;
}

.texto .inscripcion .subtitulo{
    padding-top: 1.5rem;
    font-size: 35px;
}

.texto .propuestas .subtitulo{
    padding-top: 1.5rem;
    font-size: 35px;
}

.superior .imagen{
    width: 50%;
}

.convocatoria .inferior{
    width: 100%;
    background-color: #00ABBD;
    height: auto;
    height: 700px;
    display: flex;/* Para animación GSAP */
}

.inferior .texto{
    width: 50%;
    padding: 3rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.titulo h3 {
    white-space: normal; /* Permitir que el texto se ajuste en pantallas pequeñas */
}

.inferior .imagen{
    width: 50%;
}

.convocatoria .inferior p{
    color: white;
    font-size: 24px;
}

.plazo, .envio{
    font-weight: bold;
}

.superior .subtitulo{
    font-weight: regular;
}

@media (max-width: 992px) {
    .superior .texto,
    .inferior .texto {
        padding: 3rem 3rem;
    }
    
    .texto .inscripcion .subtitulo,
    .texto .propuestas .subtitulo {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .convocatoria .superior {
        flex-direction: column;
        height: auto;
    }
    
    .convocatoria .inferior {
        flex-direction: column-reverse;
        height: auto;
    }
    
    .superior .texto,
    .inferior .texto,
    .superior .imagen,
    .inferior .imagen {
        width: 100%;
    }
    
    .superior .texto,
    .inferior .texto {
        padding: 2rem 2rem;
        gap: 2rem;
    }
    
    .superior .imagen,
    .inferior .imagen {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .superior .texto,
    .inferior .texto {
        padding: 1.5rem 1rem;
    }
    
    nav {
        padding: 1rem 1.5rem;
    }
    
    /* .logo img {
        width: 120px;
        height: 50px;
        position: absolute;
        top: 1rem;
        left: 1rem;
    } */
    
    .main-links {
        font-size: 16px;
    }
    
    .links {
        width: 100%;
    }

    .superior .plazo, .superior .envio{
        font-size: 18px !important;
    }
}

/* seccion buscamos */

.buscamos{
    padding: 6rem;
    width: 100%;
    background-color: #fff;
}

.buscamos .superior{
    display: flex;
    width: 100%;
    opacity: 0; /* Para animación GSAP */
}

.buscamos .titulo{
    width: 60%;
}

.buscamos .titulo p{
    width: 80%;
    padding-top: 4rem;
    font-size: 24px;
}

.buscamos .inferior{
    width: 100%;
    padding-top: 4rem;
    opacity: 0; /* Para animación GSAP */
}

.pilar .reivindicativo p{
    font-size: 24px;
}

.pilar .descripcion p{
    font-size: 24px;
}

.subpilar{
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 992px) {
    .buscamos {
        padding: 4rem 3rem;
    }
    
    .buscamos .titulo {
        width: 80%;
    }
    
    .buscamos .titulo p {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .buscamos {
        padding: 3rem 2rem;
    }
    
    .buscamos .superior {
        flex-direction: column;
    }
    
    .buscamos .titulo {
        width: 100%;
    }
    
    .buscamos .titulo p {
        width: 100%;
        padding-top: 2rem;
    }
}

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

    .pilar{
        padding: 1rem 1rem !important;
    }

    .pilar p{
        font-size: 18px !important;
    }
}

.buscamos .inferior .dropdown{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.buscamos .inferior .dropdown .pilar .icono {
    position: relative;
    width: 24px;
    height: 24px;
}

.buscamos .inferior .dropdown .pilar .icono .bar {
    position: absolute;
    background-color: #222222;
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.buscamos .inferior .dropdown .pilar .icono .bar:nth-child(2) {
    transform: translateY(-50%) rotate(90deg);
}

.buscamos .inferior .dropdown .pilar.active .icono .bar:nth-child(2) {
    transform: translateY(-50%) rotate(0);
}

.buscamos .inferior .dropdown .pilar.active .descripcion {
    max-height: 200px;
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.buscamos .inferior .dropdown .pilar{
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid black;
    cursor: pointer;
    position: relative;
}

.buscamos .inferior .dropdown .pilar:last-child {
    border-bottom: 1px solid black;
}

.buscamos .inferior .dropdown .pilar .reivindicativo{
    text-align: left;
    width: 30%;
}

.buscamos .inferior .dropdown .pilar .descripcion{
    width: 30%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
}


/* seccion premios */

.premios{
    background-color: #B2E6EB;
    padding: 6rem;
    opacity: 0; /* Para animación GSAP */
}

.premios .descripcion{
    display: flex;
    padding-top: 4rem;
    height: auto;
    height: 100%;
    gap: 4rem;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.premios .descripcion p{
    font-size: 24px;
}

.premios .p-grande{
    padding-top: 1rem;
    font-size: 35px !important;
}

.premios .descripcion .izquierda{
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}


.premios .descripcion .izquierda .primer{
    width: 50%;
}

.premios .descripcion .izquierda .menciones{
    width: 50%;
}

.premios .descripcion .derecha{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.premios .descripcion .derecha .cortometraje{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premios .descripcion .derecha .cortometraje p{
    text-align: center;
}

.premios .descripcion .derecha img{
    width: 20px;
    height: 20px;
}

.primer-premio, .menciones-jurado{
    font-weight: bold;
}

@media (max-width: 992px) {
    .premios {
        padding: 3rem 3rem;
    }
    
    .premios .p-grande {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .premios {
        padding: 2rem 2rem;
    }
    
    .premios .descripcion {
        flex-direction: column;
        gap: 2rem;
        padding-top: 2rem;
        height: 100%;
    }
    
    .premios .descripcion .izquierda,
    .premios .descripcion .derecha {
        width: 100%;
        gap: 2rem;
    }

    .premios .descripcion p{
        font-size: 24px;
    }

    .premios .descripcion .izquierda .primer{
        width: 100%;
    }

    .premios .descripcion .izquierda .menciones{
        width: 100% !important;
    }

    .premios .descripcion .izquierda{
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .cortometraje .p-grande{
        text-align: left !important;
    }
    
    .premios .p-grande {
        font-size: 20px;
    }
}

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

    .premios p{
        font-size: 18px !important;
    }

    .premios .p-grande{
        font-size: 24px !important;
    }
}

/* seccion bases */

.bases{
    padding: 3rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #00ABBD;
    opacity: 0; /* Para animación GSAP */
}

.bases a{
    padding: 0;
}

.bases .cta-button {
    display: flex;
    align-items: center;
}

.bases .formularios{
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.bases .formularios a{
    text-decoration: underline;
    transition: all 0.3s ease;
    display: inline-block;
}

.bases .formularios a:hover {
    color: white;
    transform: translateY(-3px);
}

.bases .formularios img{
    width: 35px;
    height: 25px;
    transition: transform 0.3s ease;
    margin-top: .5rem;
}

.bases .formularios:hover img {
    transform: translateX(5px);
}

.bases .formularios p, a{
    font-size: 35px;
}
.bases .formularios a{
    text-decoration: underline;
}

#instituciones, #personas-fisicas{
    color: #222222;
    padding-right: .3rem;
}

#instituciones:hover, 
#personas-fisicas:hover {
    color: white;
}

/* Footer legal */
.legal-footer {
    margin-top: 2rem;
}

.legal-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.legal-footer .legal-text {
    font-size: 12px;
    line-height: 1.5;
    color: #222222;
    margin-bottom: 1rem;
    text-align: justify;
}

#protecciondatos{
    font-size: 12px;
}

@media (max-width: 992px) {
    .bases {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .bases {
        padding: 2rem 3rem;
    }
    
    .bases .izquierda {
        display: none;
    }
    
    .bases .derecha {
        width: 100%;
        justify-content: center;
    }

    .bases .formularios p, a{
        font-size: 20px;
    }
}

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

    .bases .formularios img{
        width: 35px;
        height: 11px;
    }
}

/* seccion de jurados */

.jurados{
    padding: 6rem;
}

.jurados .titulo{
    width: 100%;
}

.jurados-container{
    display: flex;
    gap: 3rem;
    padding-bottom: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.jurado{
    transition: transform 0.3s ease;
    width: 370px;
}

.jurados h2{
    padding-bottom: 2rem;
}

.jurado:hover {
    transform: translateY(-10px);
}

.nombre-jurado{
    padding-bottom: 1rem;
    text-align: left !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.jurado p{
    font-size: 16px;
    line-height: 1.5;
}

.jurado img{
    width: 100%;
    height: 350px;
    object-position: top;
    object-fit: cover;
    padding-bottom: 1rem;
}

/* Bio container styles */
.bio-container {
    position: relative;
}

.bio-preview {
    margin-bottom: 0.5rem;
}

.bio-full {
    display: none;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 0.5rem;
    scrollbar-width: thin;
}

.bio-full::-webkit-scrollbar {
    width: 6px;
}

.bio-full::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.bio-full::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.bio-full.hidden {
    display: none;
}

.bio-preview.hidden {
    display: none;
}

.saber-mas {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    padding: 0;
    margin-top: 0.5rem;
    text-align: left;
    transition: color 0.3s ease;
}

.saber-mas:hover {
    color: #00ABBD;
}

@media (min-width: 993px) {
    .jurados-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem 3.5rem;
    }
    
    .jurado {
        max-width: 320px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-bottom: 1.5rem;
        height: 100%;
    }
    
    .jurado img {
        width: 100%;
        height: 350px;
    }
    
    .nombre-jurado {
        margin: 0;
        text-align: center;
    }
    
    .bio-container {
        margin-top: 0;
        display: flex;
        flex-direction: column;
    }
    
    .bio-full {
        max-height: 250px;
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    .jurados-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .jurados {
        padding: 4rem 3rem;
    }
    
    .jurados-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .jurado {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .jurados {
        padding: 3rem 1rem;
    }
    
    .jurados-container {
        grid-template-columns: 1fr;
    }
    
    .jurado {
        width: 100%;
    }
}

/* seccion footer */

footer{
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(178,230,235,1) 100%);
    padding: 6rem;
}

footer .superior{
    display: flex;
    justify-content: center;
}

footer .inferior {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 992px) {
    footer {
        padding: 4rem 3rem;
    }
    
    footer .superior {
        flex-direction: column;
        gap: 3rem;
    }
    
    footer .links {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem;
    }
    
    footer .inferior h1 {
        font-size: 50px;
    }
}


footer .links{
    display: flex;
    flex-direction: column;
}


footer .links ul li{
    text-align: center;
}

footer .links ul li a{
    font-size: 16px ;
}

footer .inferior{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.copyright{
    font-size: 14px;
}