body {
    margin: 0;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
    background-color: #fff;
    color: #333;
}

/* ENCABEZADO */
.header {
    position: absolute;
    top: 20px;
    right: calc(20px + 250px); /* Mueve los botones a la izquierda */
    z-index: 10;
}

.header-lenguaje {
    display: flex;
    gap: 40px; /* Espacio de 20px entre los botones */
}

button {
    background-color: #fff;
    color: #1935a5; /* Color del texto */
    border: 2px solid #1935a5; /* Borde blanco minimalista */
    padding: 10px 20px;
    border-radius: 30px; /* Bordes redondeados para un diseño minimalista */
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: transparent; /* Fondo transparente al hacer hover */
    color: #fff; /* Color del texto blanco al hacer hover */
    border: 2px solid #fff; /* Borde blanco minimalista */
}

/* BANNER */
.Banner {
    position: relative;
    margin: 0 auto;
    display: flex;
    width: 100%;
    text-align: center;
}

.image-banner-up img {
    display: flex; 
    width: 101.5%;
    height: 100%;
}

.image-banner-down img {
    display: flex; 
    width: 100%;
    height: 100%;
}

/* SCROLL */
.scroll-down {
    position: absolute;
    bottom: 20px; /* Ajusta esta distancia según sea necesario */
    left: 50%;
    transform: translateX(-50%);
    font-size: 4em; /* Tamaño de la flecha más grande */
    color: #fff; /* Color blanco */
    text-decoration: none;
    cursor: pointer;
    animation: bounce 2s infinite;
    border: 2px solid #fff; /* Borde blanco minimalista */
    padding: 10px;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* MEDIA QUERIES */
@media (max-width: 1800px) {
    .header {
        right: 200px;
    }
    
}

@media (max-width: 1600px) {
    .header {
        right: 100px;
    }
    button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
    .scroll-down {
        font-size: 2em; /* Tamaño reducido en pantallas pequeñas */
        width: 2em;
        height: 2em;
    }
}

@media (max-width: 1300px) {
    .header {
        right: 30px;
    }
    .scroll-down {
        font-size: 1.7em; /* Tamaño reducido en pantallas pequeñas */
        width: 1.7em;
        height: 1.7em;
    }
}

@media (max-width: 768px) {
    .header {
        background-color: #1935a5;
        position: static;
        margin: 0 auto;
        text-align: center;
    }

    .header-lenguaje {
        flex-direction: column;
        gap: 10px; /* Espacio reducido en pantallas pequeñas */
    }

    button {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .scroll-down {
        font-size: 1.5em; /* Tamaño reducido en pantallas pequeñas */
        width: 1.5em;
        height: 1.5em;
    }
}

@media (max-width: 480px) {
    .header-lenguaje {
        gap: 5px; /* Espacio aún más reducido en pantallas muy pequeñas */
    }

    button {
        padding: 6px 12px;
        font-size: 0.8em;
    }

    .scroll-down {
        font-size: 0.5em; /* Tamaño aún más reducido */
        width: 0.2em;
        height: 0.2em;
    }
}

/* PRODUCTOS OFRECIDOS */
.products{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}


.products .title {
    max-width: 1440px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #1d1d1b; /* Color de texto en blanco para contrastar con el fondo */
}

.products h1 {
    font-size: 2.5em;
    color: #1935a5;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #1935a5;
    display: inline-block;
    padding-bottom: 10px;
}

.products p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.3em;
    line-height: 1.5;
}


/* Estilo para las imágenes */
.products .hot-meals {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Tres columnas de igual tamaño */
    gap: 10px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.products .hot-meals img {
    width: 70%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}
.products .dessert {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Tres columnas de igual tamaño */
    gap: 10px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.products .dessert img {
    width: 70%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}
.products .dreat {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Tres columnas de igual tamaño */
    gap: 10px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.products .dreat img {
    width: 70%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}
.products .products-offered {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Tres columnas de igual tamaño */
    gap: 10px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.products .products-offered img {
    width: 70%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

.products .organic {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Tres columnas de igual tamaño */
    gap: 10px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.products .organic img {
    width: 70%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

.products .divider {
    border: none;
    border-bottom: 2px solid rgb(0, 4, 255); /* Línea horizontal */
    width: 100%; /* Cruza todo el ancho */
    margin: 20px 0; /* Margen superior e inferior de 5px */
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .products h1 {
        font-size: 2em; /* Ajusta el tamaño del título en pantallas más pequeñas */
    }

    .products p {
        font-size: 1.2em; /* Ajusta el tamaño del título en pantallas más pequeñas */
    }
    
    .products .hot-meals {
        grid-template-columns: repeat(4, 1fr); /* Dos columnas en pantallas de tabletas */
    }

    .products .dessert {
        grid-template-columns: repeat(4, 1fr); /* Dos columnas en pantallas de tabletas */
    }
    .products .products-offered {
        grid-template-columns: repeat(4, 1fr); /* Dos columnas en pantallas de tabletas */
    }

    .products .organic {
        grid-template-columns: repeat(4, 1fr); /* Dos columnas en pantallas de tabletas */
    }
    .products .dreat {
        grid-template-columns: repeat(4, 1fr); /* Dos columnas en pantallas de tabletas */
    }

}

@media (max-width: 768px) {
    .products h1 {
        font-size: 1.5em; /* Ajusta el tamaño del título en pantallas más pequeñas */
    }
    
    .products p {
        font-size: 0.8em; /* Ajusta el tamaño del título en pantallas más pequeñas */
    }

    .products .products-offered {
        grid-template-columns: repeat(4, 1fr); /* Una columna en pantallas móviles */
    }

    .products .products-offered img {
        width: 100%; /* Las imágenes ocupan el 100% del contenedor en pantallas móviles */
    }
    .products .hot-meals {
        grid-template-columns: repeat(4, 1fr); /* Una columna en pantallas móviles */
    }

    .products .hot-meals img {
        width: 100%; /* Las imágenes ocupan el 100% del contenedor en pantallas móviles */
    }
    .products .dessert {
        grid-template-columns: repeat(4, 1fr); /* Una columna en pantallas móviles */
    }

    .products .dessert img {
        width: 100%; /* Las imágenes ocupan el 100% del contenedor en pantallas móviles */
    }
    .products .organic {
        grid-template-columns: repeat(4, 1fr); /* Una columna en pantallas móviles */
    }

    .products .organic img {
        width: 100%; /* Las imágenes ocupan el 100% del contenedor en pantallas móviles */
    }
    .products .dreat {
        grid-template-columns: repeat(4, 1fr); /* Una columna en pantallas móviles */
    }

    .products .dreat img {
        width: 100%; /* Las imágenes ocupan el 100% del contenedor en pantallas móviles */
    }
}

/* EMPRESAS PARTICIPANTES */
.enterprises{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.enterprises .title {
    max-width: 1440px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #1d1d1b; /* Color de texto en blanco para contrastar con el fondo */
}

.enterprises h1 {
    font-size: 2.5em;
    color: #1935a5;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #1935a5;
    display: inline-block;
    padding-bottom: 10px;
}

.enterprises p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.3em;
    line-height: 1.5;
}


/* Estilo para las imágenes */
.enterprises .logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Tres columnas de igual tamaño */
    gap: 10px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.enterprises .logos img {
    width: 70%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .enterprises .title h1 {
        font-size: 2em; /* Ajusta el tamaño del título en pantallas más pequeñas */
    }

    .enterprises .logos {
        grid-template-columns: repeat(4, 1fr); /* Dos columnas en pantallas de tabletas */
    }
}

@media (max-width: 768px) {
    .enterprises h1 {
        font-size: 1.5em; /* Ajusta el tamaño del título en pantallas más pequeñas */
    }
    
    .enterprises p {
        font-size: 0.8em; /* Ajusta el tamaño del título en pantallas más pequeñas */
    }

    .enterprises .logos {
        grid-template-columns: repeat(4, 1fr); /* Una columna en pantallas móviles */
    }

    .enterprises .logos img {
        width: 100%; /* Las imágenes ocupan el 100% del contenedor en pantallas móviles */
    }
}

.Colombia-party {
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Centra la imagen horizontalmente */
    align-items: center; /* Centra la imagen verticalmente */
    width: 100%;
    padding: 10px; /* Padding para espacio alrededor de la imagen */
    box-sizing: border-box; /* Incluye padding en el ancho total del contenedor */
}

.Colombia-party img {
    max-width: 100%; /* La imagen no debe exceder el ancho del contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    display: block; /* Elimina el espacio debajo de la imagen */
}

/* Media Queries para pantallas más grandes */
@media (min-width: 768px) {
    .Colombia-party {
        padding: 20px; /* Mayor padding en pantallas más grandes */
    }
}

/* Media Queries para pantallas muy pequeñas (móviles) */
@media (max-width: 480px) {
    .Colombia-party {
        padding: 5px; /* Reduce el padding en pantallas muy pequeñas */
    }
}

.sponsors-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Dos columnas */
    gap: 20px; /* Espacio entre las imágenes */
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    justify-content: center; /* Centra la última fila */
    margin: 0 auto;
}

.sponsors-logos img {
    width: 100%; /* Asegura que las imágenes ocupen el 100% de su columna */
    height: auto; /* Mantiene las proporciones */
    display: block;
}


/* Media Queries para pantallas más grandes */
@media (max-width: 1000px) {
    .sponsors-logos {
        padding: 20px;
        grid-template-columns: repeat(3, 1fr); /* Dos columnas */
    }

    .sponsors-logos img {
        max-width: 100%;
    }
}

/* Para pantallas de menos de 800px */
@media (max-width: 800px) {
    .sponsors-logos {
        padding: 20px;
        grid-template-columns: repeat(1, 1fr); /* Dos columnas */
    }

    .sponsors-logos img {
        max-width: 100%;
    }
}

/* Para pantallas de menos de 480px (móviles) */
@media (max-width: 480px) {
    .sponsors-logos {
        padding: 5px;
        grid-template-columns: repeat(1, 1fr); /* Una sola columna */
    }

    .sponsors-logos img {
        max-width: 100%;
    }
}

/* SPONSORS */

.sponsors {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('Image/Fondo\ Sponsors.png');
}

.sponsors .conteiner {
    max-width: 1440px;
    width: 100%;
    margin-bottom: 20px;
    margin-top: -500px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #fff; /* Color de texto en blanco para contrastar con el fondo */
}

.sponsors h1 {
    font-size: 3em;
    color: #fffb00;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #fffb00;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.sponsors p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.5em;
    line-height: 1.5;
}

.sponsors div {
    position: relative;
    overflow: hidden;
    height: 500px;
    width: 100%;
    padding-top: 500px;
    max-width: 1440px; /* Ajustar el iframe a la anchura máxima de 1440px */
}

.type-sponsor {
    position: relative;
    margin-top: -750px;
    display: flex;
    justify-content: center; /* Centra la imagen horizontalmente */
    align-items: center; /* Centra la imagen verticalmente */
    padding: 10px; /* Padding para espacio alrededor de la imagen */
    grid-template-columns: repeat(3, 1fr); 
}
.type-sponsor img{
    max-width: 30%;
}

.email {
    background-color: #fffb00; /* Color de fondo */
    color: #0056b3; /* Color del texto */
    border: none; /* Sin borde */
    border-radius: 5px; /* Bordes redondeados */
    padding: 10px 20px; /* Espaciado interno */
    display: flex; /* Alineación de icono y texto */
    align-items: center; /* Centra verticalmente el contenido */
    cursor: pointer; /* Cambia el cursor al pasar por encima */
    font-size: 16px; /* Tamaño del texto */
    transition: background-color 0.3s; /* Transición de color */
}

.email:hover {
    background-color: #0056b3; /* Color de fondo al pasar el mouse */
    color: #fff;
}

.email i {
    margin-right: 8px; /* Espaciado entre el icono y el texto */
    font-size: 20px; /* Tamaño del icono */
}

.email p {
    margin: 0; /* Elimina el margen del párrafo */
}


/* Estilos para pantallas más pequeñas */

@media (max-width: 1200px) {
    .type-sponsor img {
        max-width: 30%;
        margin-top: -70px;
    }
    .email {
        margin-top: -100px;
    }
}

@media (max-width: 992px) {
    .sponsors h1 {
        font-size: 2.5em;
    }

    .sponsors p {
        font-size: 1.2em;
    }

    .type-sponsor img {
        max-width: 30%;
        margin-top: -300px;
    }
    .email {
        margin-top: -250px;
    }
}

@media (max-width: 768px) {
    .sponsors {
        padding: 20px 10px;
    }

    .sponsors h1 {
        font-size: 2em;
    }

    .sponsors p {
        font-size: 1em;
    }

    .type-sponsor img {
        max-width: 30%;
        margin-top: -350px;
    }
    .email {
        margin-top: -330px;
    }
}

@media (max-width: 576px) {
    .sponsors {
        padding: 10px 5px;
    }

    .sponsors h1 {
        font-size: 1.5em;
    }

    .sponsors p {
        font-size: 0.9em;
    }

    .type-sponsor img {
        max-width: 30%;
        margin-top: -450px;
    }
    .email {
        margin-top: -400px;
    }
}

/* INFORMACIÓN */
.info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.column {
    padding: 10px;
    text-align: center;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.logo {
    height: 100px;
    max-width: 400px;
}

.support p {
    color: #1d1d1b;
    font-size: 1.1em;
}

.location iframe {
    width: 100%;
    height: 200px;
    border: 0;
    margin-bottom: 10px;
}

.location p {
    color: #1935a5;
    font-size: 1.1em;
}

@media (min-width: 768px) {
    .info {
        flex-direction: row;
        justify-content: space-between;
    }
}

footer {
    background-color: #1935a5;
    color: #fff;
    text-align: center;
    padding: 10px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.guidestar-seal {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 100px;
    z-index: 1000;
}

/* Logo del festival en el encabezado */
.logo-festival {
    height: 500px; /* Ajusta la altura del logo del festival */
    max-width: 1200px; /* Ajusta el ancho máximo si es necesario */
    margin-top: -30px;
}

/* Estilos responsivos */
@media (max-width: 1200px) {
    .logo-festival {
        height: 400px; /* Ajusta la altura del logo en pantallas medianas */
    }
}

@media (max-width: 992px) {
    .info {
        padding: 15px;
    }

    .logos {
        gap: 10px;
    }

    .logo {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .info {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    .logo {
        height: 70px;
    }

    .location iframe {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .info {
        padding: 5px;
    }

    .info p{
        font-size: 0.8em;
    }

    .info a{
        font-size: 0.8em;
    }

    .logo {
        height: 60px;
    }

    .location iframe {
        height: 120px;
    }
}