/*==========================
    Fuentes
============================*/

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Thourenz Inked';
    src: url('../fonts/Thourenz-Inked.ttf') format('truetype');
}

body {
    font-family: 'Poppins', sans-serif;
}

h2,
h3,
h4,
h5,
h6 {
    font-family: 'Thourenz Inked', sans-serif;
}

/*==========================
    paleta de colores
============================*/

:root {
    --color-primary: #000000;
    --color-secondary: #F8D64E;
    --color-text: #FFFFFF;
    --color-hover: #E5C23D;
}

::selection {
    background: var(--color-secondary);
    color: var(--color-primary);
}

/*==========================
    Nav - Menu
============================*/

:root {
    --color-primary: transparent;
    --color-secondary: #8b0000;
    --color-text: #8b0000;
    --color-hover: #660000;
    --color-vip-btn: #8b0000;
    --color-vip-text: #fff200;
    --navbar-height: 90px;
    --logo-height: 70px;
    --logo-height-scrolled: 50px;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease-in-out;
    /* Estado inicial (transparente) */
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.navbar.scrolled {
    background-color:#eaad1f !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.container-nav {
    max-width: 1400px;
    padding: 0 60px;
}


.navbar-brand img {
    height: var(--logo-height);
    transition: all 0.3s ease;
}

.navbar-nav {
    gap: 35px;
    margin: 0 auto;
    align-items: center;
}


.nav-link {
    color: var(--color-text) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 20px 5px !important;
    margin-top: 20px;
    transition: color 0.3s ease;
}


.nav-link:hover,
.nav-link:focus {
    color: var(--color-hover) !important;
}


.nav-link::after {
    display: none;
}

.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 0;
    padding: 15px 0;
    margin-top: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: var(--color-text) !important;
    text-transform: uppercase;
    font-size: 15px;
    padding: 12px 25px;
    font-weight: 600;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: var(--color-text) !important;
}

.btn-participa {
    background-color: var(--color-vip-btn);
    color: var(--color-vip-text);
    font-weight: 800;
    text-transform: uppercase;
    padding: 15px 10px;
    padding-left: 15px;
    border-radius: 12px;
    /* según la imagen */
    border: none;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-left: auto;
    margin-right: 0;
    text-decoration: none !important;
}

.btn-participa:hover {
    background-color: var(--color-hover);
    color: white;
}

/* Estilo cuando el menú está abierto */
.navbar-collapse.show {
    background-color: #eaad1f !important; 
    margin-top: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Cambiar color de los enlaces en móvil */
.navbar-collapse.show .nav-link {
    color: white !important;
    text-align: center;
    padding: 10px 0 !important;
    margin-top: 0 !important;
}

/* Cambiar color del dropdown en móvil */
.navbar-collapse.show .dropdown-menu {
    background-color: rgba(255,255,255,0.9) !important;
}



/* Ajustes para el modal manteniendo el estilo */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    color: #000;
    border: none;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text);
}

.close-btn:hover {
    color: var(--color-hover);
}

.modal h2 {
    margin-bottom: 25px;
    text-align: center;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .container-nav {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-participa {
        display: block !important;
        margin: 20px auto;
    }

    .navbar {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        background-color: white;
        padding: 30px;
        margin-top: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 20px;
    }

    .btn-participa {
        width: auto;
        text-align: center;
        margin-top: 25px;
        display: inline-block;
    }

    .navbar {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .container-nav {
        padding: 0 20px;
    }

    .navbar-brand img {
        height: 60px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .btn-participa {
        padding: 12px 25px !important;
        font-size: 16px;
    }
}

/*==========================
    banner principal
============================*/

.banner {
    background-image: url('../assets/figura/banner-principal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 150px;
}


.logo_banner {
    max-width: 450px;
    width: 90%;
}

.slogan_banner {
    font-size: 1.2rem;
    color: #8c2700;
    margin-top: 10px;
    font-weight: 400;
}

.figura_banner_alcaldia {
    width: 250px;
    height: 58px;
    margin-top: 0px;
    margin-left: 90px;
    /* puedes ajustar el valor */
}


.plato_banner {
    max-width: 900px;
    width: 100%;
    height: auto;
    margin-top: -40px;
    position: relative;


    animation: rotarPlato 10s linear infinite;
}


@keyframes rotarPlato {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 768px) {
    .plato_banner {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .plato_banner {
        max-width: 250px;
    }
}

/*==========================
    Festival gastronómico
============================*/

.zona_festival {
    position: relative;
    padding: 5% 16% 0% 10%;
    overflow: hidden;
    /* Propiedades del fondo responsive */
    background-image: url('../assets/figura/banner-figuras.png');
    background-size: cover;
    background-position: center 30%;
    /* Valor inicial para desktop */
    background-repeat: no-repeat;
    min-height: 500px;
    /* Altura mínima para evitar colapso */
}

.titulo_festival {
    font-family: 'Anton', sans-serif;
    color: #e62129;
    /* Rojo vibrante como en la imagen */
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin: 0;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}


.subtitulo_festival {
    font-family: 'Anton', sans-serif;
    color: #8b0000;
    /* Rojo vino */
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.text_festival {
    margin-top: 20px;
    font-size: 15px;
    width: 84%;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
}


.gallery {
    margin-top: -30;
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.7);
    transform-origin: center;
}

.column-1,
.column-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.column-2 {
    position: relative;
    top: 60px;
}

.plato-container-1,
.plato-container-2 {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.plato-container-1 {
    height: 400px;

}

.plato-container-2 {
    height: 300px;

}

.plato {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.plato-1,
.plato-4 {
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
}

.plato-2 {
    justify-content: flex-end;
}

.plato-3 {
    justify-content: flex-start;
}

.plato-2,
.plato-3 {
    width: 75%;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

@media (max-width: 992px) {
    .zona_festival {
        padding: 8% 6%;
        background-position: center 40%;
        min-height: auto;
    }

    .titulo_festival {
        font-size: 3rem;
        text-align: center;
    }

    .subtitulo_festival {
        font-size: 1.6rem;
        text-align: center;
    }

    .text_festival {
        width: 100%;
        font-size: 14px;
        text-align: justify;
        margin: auto;
    }

    .gallery {
        transform: scale(0.8);
    }
}


/* Ajustes para móviles */
@media (max-width: 768px) {
    .zona_festival {
        flex-direction: column;
        padding: 15% 5%;
        background-position: center 50%;
        background-size: auto 100%;
    }

    .titulo_festival {
        font-size: 2.4rem;
        text-align: center;
        margin-top: -15px;
    }

    .subtitulo_festival {
        font-size: 1.4rem;
        text-align: center;
        margin-top: -100px;
    }

    .text_festival {
        font-size: 13px;
        line-height: 1.3;
        width: 100%;
        text-align: justify;
        padding: 0 10px;
    }

}


/*==========================
    Cifras
============================*/

.zona_cifras {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 60px 0;
    gap: 20px;
    text-align: left;
    color: white;
    background:
        linear-gradient(to right, rgba(253, 187, 45, 0.85), rgba(243, 110, 33, 0.85), rgba(237, 28, 36, 0.85)),
        url('../assets/productos/plato-buffet.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0px;
}


.cifra-card {
    flex: 1 1 300px;
    max-width: 400px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.titulo_cifra {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    /* Más grande */
    font-weight: 100;
    /* Menos grosor */
    text-transform: uppercase;
    line-height: 1.2;
    color: #ffee00b9;
}

.cifra {
    font-size: 2.8rem;
    color: #ffee00bd;
}

.subtitulo_cifra {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #fff;
    margin-top: 10px;
}

#dato_centro {
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
}

@media (max-width: 768px) {
    .zona_cifras {
        flex-direction: column;
        text-align: center;
    }

    .cifra-card {
        max-width: 100%;
        border: none !important;
    }

    #dato_centro {
        border: none;
    }

    .titulo_cifra {
        font-size: 1.6rem;
    }

    .cifra {
        font-size: 2rem;
    }

    .subtitulo_cifra {
        font-size: 0.9rem;
    }
}


/*==========================
    escenarios
============================*/
/* ===============================
   ESTILOS GENERALES DEL TÍTULO
================================= */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 500;
    font-family: 'Anton', sans-serif;
    gap: 10px;
    margin-top: 100px;
    color: #660000;
}

/* Imágenes decorativas a los lados del título */
.hoja-izquierda,
.hoja-derecha {
    width: 40px;
}

/* Espejo horizontal para la hoja derecha */
.hoja-derecha {
    transform: scaleX(-1);
}

.decoracion-izquierda {
    position: absolute;
    left: 0;
    top: 25px;
    transform: translateY(-50%);
    width: 180px;
    z-index: -1;
    margin-left: 130px;
}


/* ===============================
   CONTENEDOR DE ESCENARIOS
================================= */
.zona_escenarios {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5% 0 1% 0;
    background: var(--color-white);
    position: relative;
}

.zona_escenarios .figura_banner {
    width: 10%;
    position: absolute;
    top: -130px;
    right: 100px;
    transform: rotateY(180deg) rotate(90deg);
}

.slider {
    display: flex;
    gap: 0;
    overflow: hidden;
    width: 61%;
    justify-content: center;
    position: relative;
}

.card {
    width: 380px;
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    transform: scale(0.9);
    display: none; /* Se ocultan las tarjetas por defecto */
}

/* Capa roja con opacidad */
.card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(171, 24, 21, 0.6);
    transition: opacity 0.5s ease-in-out;
}

.card p {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, bottom 0.5s ease-in-out;
}

/* Card activa en el centro */
.card.active {
    width: 400px;
    height: 400px;
    transform: scale(1.2);
    z-index: 2;
}

.card.active::before {
    opacity: 0; /* Quitar capa roja */
}

.card.active p {
    bottom: 10px;
    opacity: 1;
    width: 100%;
    height: 50%;
    padding: 30% 3% 0 4%;
    font-size: 1.5rem;
    line-height: 25px;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(360deg, var(--color-primary), transparent);
}

/* Flechas de navegación */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:#E5C23D ;
    color: var(--color-secondary);
    border: none;
    padding: 0 3%;
    font-size: 1vw;    
    z-index: 10;
    transition: background 0.3s ease-in-out;
}

.slider-btn:hover {
    background: var(--color-tertiary);
}

#prevBtn {
    left: 15px;
}

#nextBtn {
    right: 15px;
}


/*==========================
    Embajadores
============================*/

.zona_embajadores {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5% 0 1% 0;
    background: var(--color-white);
    position: relative;
}

.zona_embajadores .figura_banner {
    width: 41%;
    position: absolute;
    bottom: -40%;
    left: -4%;
    opacity: 0.2;
    transform: rotate(350deg);
}

.card_embajador img {
    display: block;
    margin: 0 auto;
    margin-bottom: 0.3rem;
    /* reduce espacio entre imagen y texto */
    border-radius: 50%;
    /* si quieres mantenerla redonda */
}

.titulo_embajador {
    color: #8c0000;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    margin-top: -25px;
    /* acerca el texto a la imagen */
}

.subtitulo_embajador {
    color: #000;
    text-transform: none;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.2rem;
}

.subtitulo_embajador strong {
    font-size: 1rem;
}

.info_persona {
    text-align: center;
}

#embajador-1 {
    background-image: url(../assets/embajadores/juan-del-mar.webp);
}

#embajador-2 {
    background-image: url(../assets/embajadores/tulio-zuloaga.webp);
}

#embajador-3 {
    background-image: url(../assets/embajadores/jorge-rausch.webp);
}

#embajador-4 {
    background-image: url(../assets/embajadores/chris-capentier.webp);
}

.btn_embajadores {
    text-align: center;
    line-height: 20px;
    padding: 5% 0;
}

.btn_embajadores a {
    text-decoration: none;
    color: #7b1616;
    /* rojo vino, igual al de la imagen */
    font-size: 1.5rem;
    font-weight: bold;
}



/*==========================
    participacion
============================*/

.zona_participacion {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 60px 0;
    background-image: linear-gradient(to right, rgba(253, 187, 45, 0.85), rgba(243, 110, 33, 0.85), rgba(237, 28, 36, 0.85)),
        url('../assets/productos/plato-buffet.webp');
    ;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.section-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffee00;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto 10px;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.participacion-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;

}

.participacion-container::-webkit-scrollbar {
    display: none;
}

.section-participacion-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 25px 20px;

}

/* CONTENIDO INTERNO (manteniendo tus estilos) */
.participacion-content {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.participacion-number {
    font-family: "Roboto Mono", monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.participacion-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/*==========================
    Aliados
============================*/

.zona_aliados {
    display: flex;
    justify-content: center;
    padding-bottom: 5%;
}

.slider-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.slider-aliados {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-aliados {
    flex: 0 0 auto;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}

.slide-aliados img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
}

/* Botones de navegación */
.prev,
.next {
    background: transparent;
    color:#660000;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 3rem;
    border-radius: 50%;
    position: absolute;
}

.prev {
    left: -100px;
}

.next {
    right: -100px;
}



/*==========================
    fotter
============================*/

.zona_footer {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 60px 0;
    background:
        linear-gradient(to right, rgba(253, 187, 45, 0.85), rgba(243, 110, 33, 0.85), rgba(237, 28, 36, 0.85)),
        url('../assets/productos/plato-buffet.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.zona_footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    opacity: 0.9;
    z-index: -1;
}

.siguenos_footer {
    text-align: center;
    margin: 0;
    color: var(--color-white);
    padding-top: 2%;
    font-size: 1rem;
}

.info_footer {
    text-align: center;
    color: white;
}

.iconos_footer {
    color: var(--color-white);
    font-size: 2rem;
}

.iconos_footer:hover {
    color: var(--color-secondary);
    scale: 1.2;
}

.contacto_footer {
    justify-self: center;
    padding-top: 5%;
    font-size: 1rem;
}

/*==========================
    Festival - banner
============================*/

.zona_banner_festival {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 60px 0;
    background-image: url(../assets/productos/plato-buffet.webp);
    background-size: cover;
    background-position: center;
    height: 50vh;
}

/*==========================
    zona cartagena
============================*/

.zona_cartagena {
    position: relative;
    justify-items: center;
    padding: 5% 0 20% 0;
    overflow: hidden;
}

.zona_cartagena .figura_festival-torre {
    width: 20%;
    position: absolute;
    bottom: -100px;
    right: 0;
}

.zona_cartagena .figura_festival-mujer {
    width: 25%;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.zona_cartagena .figura_festival-icono {
    width: 10%;
    position: absolute;
    top: 30px;
    left: 10px;
    transform: rotateX(180deg);
}

.info_cartagena {
    text-align: center;
    width: 40% !important;
}

.titulo_cartagena {
    font-size: 1.5rem;
    line-height: 30px;
}

.titulo_cartagena,
.subtitulo_cartagena {
    color: var(--color-primary);
    margin: 0;
    font-weight: 500;
}

.frase_cartagena {
    color: var(--color-primary);
    margin: 0;
}

.titulo_cartagena span {
    color: var(--color-primary);
    margin: 0;
    font-weight: bold;
    font-family: 'Thourenz Inked', sans-serif;
}

.txt_cartagena {
    color: var(--color-black);
    margin: 3% 0;
}

/*==========================
    Zona eventos - banner
============================*/

.zona_banner_zonas {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 60px 0;
    background-image: url(../assets/escenarios/plaza-aduana.webp);
    background-size: cover;
    background-position: center;
    height: 50vh;
}

.zonales {
    position: relative;
    justify-items: center;
    padding: 2% 0;
}

.evento_zonal {
    text-align: center;
    padding: 5% 0
}

.titulo_evento_zonal {
    font-size: 3rem;
    color: var(--color-primary);
}

.subtitulo_evento_zonal {
    width: 50%;
    text-align: center;
    justify-self: center;
}

.titulo_zonal {
    text-align: center;
    color: var(--color-primary);
    font-size: 2rem;
    line-height: 30px;
    font-weight: 500;
}

.txt_zonal {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

/*==========================
    gastronomia
============================*/

.gastronomia {
    position: relative;
    justify-items: center;
    padding-bottom: 5%;
}

.info_gastro {
    align-content: center;
    text-align: left;
    font-weight: bold;
}

.titulo_gastro {
    color: var(--color-primary);
    font-weight: bold;
    margin: 0;
}

.gastronomia .figura_banner_fondo,
.zonales .figura_banner_fondo {
    width: 30%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.1;
    z-index: -10;
}

.card_embajadores {
    margin: 2% 0;
}

.img_gastronomia {
    width: 100%;
    height: auto;
}

/* Estilos del fondo oscuro del modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 0px 15%;
}

/* Contenido del modal */
.modal-content {
    background-color: white;
    padding: 20px;
    width: 350px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.modal-content h2 {
    margin-top: 0;
}

.modal-content label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
}

.modal-content input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-content .terms {
    display: flex;
    align-items: center;
    gap: 10px;
}

#terminos {
    width: 10%;
}

.modal-content button {
    width: 100%;
    padding: 10px;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.modal-content button:hover {
    background-color: #b71c1c;
}

.close-btn {
    display: block;
    text-align: right;
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.close-btn:hover {
    color: black;
}


/*==========================
    Responsive media
============================*/


@media (max-width: 1200px) {

    .navbar-nav {
        width: 60%;
        font-size: 1rem;
    }

    .banner {
        height: 70vh;
    }

    .zona_festival {
        padding: 0 5% 5% 5%;
    }

    .section-title {
        width: 50%;
    }

    .slider {
        width: 90%;
    }

    /* aliados */

    .slider-wrapper {
        width: 100%;
    }

    .prev {
        left: -40px;
    }

    .next {
        right: -40px;
    }
}

@media (max-width: 991px) {

    .container-nav {
        justify-content: space-between;
    }

    /* nav */

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-primary);
        /* Fondo del menú */
        z-index: 1000;
        text-align: center;
        padding: 10px 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse .navbar-nav .nav-link {
        padding: 10px;
        color: white !important;
    }

    .navbar-nav .nav-link {
        font-size: 2vw;
    }

    .titulo_festival {
        font-size: 2.5rem;
    }

    .subtitulo_festival {
        font-size: 1.5rem;
    }

    .banner .figura_banner_alcaldia {
        width: 30%;
    }

    .plato-container-1 {
        height: 300px;
    }

    .plato-container-2 {
        height: 200px;
    }

    .text_festival {
        font-size: 14px;
        line-height: 18px;
    }

    .slider-btn {
        font-size: 3vw;
    }

    #nextBtn {
        right: 10px;
    }

    #prevBtn {
        left: 10px;
    }

    .zona_embajadores .figura_banner {
        bottom: -25%;
    }

    .section-title-participacion {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .banner {
        height: 90vh;
    }

    /* Banner Principal */

    .container_banner {
        flex-direction: column;
    }

    .banner .circle {
        top: -350px;
        left: -200px;
    }

    .banner .rectangle {
        bottom: 0;
        width: 100%;
        height: 40%;
    }

    .banner .figura_banner_alcaldia {
        width: 40%;
    }

    .logo_banner {
        width: 60%;
    }

    .plato-principal {
        max-width: 40%;
    }

    .banner .figura_banner,
    .banner .figura_banner_fondo {
        display: none;
    }

    .section-title {
        width: 70%;
    }

    .slogan_banner {
        font-size: 0.8rem;
    }

    .zona_festival {
        padding: 15% 5% 5% 5%;
    }

    .zona_festival .figura_banner-torre {
        display: none;
    }

    .gallery {
        height: 90%;
    }

    .plato-container-1 {
        height: 200px;
    }

    .plato-container-2 {
        height: 100px;
    }

    .plato-1,
    .plato-4 {
        border-top-right-radius: 60px;
        border-bottom-left-radius: 60px;
    }

    .plato-2,
    .plato-3 {
        width: 50%;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .titulo_festival {
        font-size: 2rem;
    }

    .subtitulo_festival {
        font-size: 1rem;
    }

    .text_festival {
        font-size: 10px;
        line-height: 11px;
    }

    .cifra-card {
        padding: 15px 25px;
        text-align: center;
    }

    .zona_escenarios .figura_banner {
        display: none;
    }

    /* embajadores */

    .zona_embajadores .figura_banner {
        display: none;
    }

    /* festival */

    .gallery {
        height: 70%;
    }

    /* aliados */

    .slide-aliados img {
        width: 100px;
        padding: 0;
    }

    .prev {
        left: 0;
    }

    .next {
        right: 0;
    }

    .slider-wrapper {
        width: 95%;
    }

    .slide-aliados {
        width: 180px;
    }

    .info_cartagena {
        width: 60% !important;
    }
}

@media (max-width: 480px) {

    .navbar-nav .nav-link {
        font-size: 3vw;
    }

    .btn-participa {
        padding: 3%;
    }

    /* Banner Principal */

    .banner {
        height: 75vh;
    }

    .banner .circle {
        top: -375px;
        left: -270px;
    }

    .banner .rectangle {
        height: 40%;
        border-bottom-left-radius: 0;
    }

    .banner .figura_banner_alcaldia {
        width: 50%;
        bottom: 5%;
    }

    .logo_banner {
        margin-top: 15%;
        width: 80%;
    }

    .plato-principal {
        max-width: 70%;
    }

    .plato-container-1 {
        height: 350px;
    }

    .plato-container-2 {
        height: 250px;
    }

    .plato-2,
    .plato-3 {
        width: 70%;
    }

    .text_festival {
        font-size: 18px;
        line-height: 20px;
    }

    .section-title {
        width: 100%;
    }

    .titulo_festival {
        font-size: 2.5rem;
    }

    .subtitulo_festival {
        font-size: 1.5rem;
    }

    .card.active p {
        padding: 100% 3% 0 4%;
        font-size: 1rem;
        line-height: 15px;
    }

    .section-title-participacion {
        width: 0;
    }

    #section-participacion {
        justify-content: flex-start;
    }

    .slider-btn {
        font-size: 5vw;
    }

    #nextBtn {
        right: 5px;
    }

    #prevBtn {
        left: 5px;
    }

    /* aliados */

    .slider-wrapper {
        width: 100%;
    }

    .slide-aliados {
        width: 160px;
    }

    .info_cartagena {
        width: 80% !important;
    }

    .prev {
        left: 0;
    }

    .next {
        right: 0;
    }

    .img_gastronomia {
        width: 50%;
    }

    .titulo_gastro {
        font-size: 3rem;
    }

    .txt_gastro {
        font-size: 1.5rem;
    }
}
