body{
    background-color: #F9A232 !important;
    color: #fff !important;
}

.video-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Filtro oscuro, ajusta la opacidad según necesites */
}

.content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.parrafo{
    font-family: "Lekton", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
}

.titulo{
    font-family: "Agu Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "MORF" 18;
}

.bg-verde{
    background-color: #006A4E !important;
}

.bg-blanco{
    background-color: #edfffa !important;
}

.bg-cafe{
    background-color: #4E3131 !important;
}

.bg-rojo{
    background-color: #CB4847 !important;
}

.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 250px;
    position: relative;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.title-menu{
    font-size: 30px !important;
}

.tomataco-logo{
    width: 110px;
}

.tomataco{
    width: 250px;
}

.tomataco-video{
    width: 180px;
}

.tomataco-video-movil{
    width: 450px;
}

.movil{
    justify-content: space-between !important;
    align-items: flex-end !important;
}

/* DESKTOP */
@media (min-width: 768px) and (max-width: 991.98px) {
    .title-menu{
        font-size: 20px !important;
    }
    .tomataco-logo{
        width: 90px;
    }
    .tomataco{
        width: 180px;
    }
    .tomataco-video{
        width: 150px;
    }
    .tomataco-video-movil{
        width: 270px;
    }
}

/* TABLET */
@media (min-width: 576px) and (max-width: 767.98px) {
    .title-menu{
        font-size: 16px !important;
    }
    .tomataco-logo{
        width: 70px;
    }
    .tomataco{
        width: 160px;
    }
    .tomataco-video{
        width: 120px;
    }
    .tomataco-video-movil{
        width: 250px;
    }
}

/* MOVIL */
@media (min-width: 200px) and (max-width: 575.98px) {
    .title-menu{
        font-size: 16px !important;
    }
    .tomataco-logo{
        width: 70px;
    }
    .tomataco{
        width: 160px;
    }
    .movil{
        flex-direction: column !important;
        justify-content: center !important;
    }
    .movil-center{
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .tomataco-video{
        width: 80px;
    }
    .tomataco-video-movil{
        width: 170px;
    }
}