:root{
    --font-primary: 'Myriad-pro';
    --font-secondary: 'Garamon';
        --color_1: #142036;
    --color_2: #7DCAE8;
    --color_3: #2A4395;

    --bg-mobile: url('../images/mobile.png');
    --bg-tablet: url('../images/tablet.png');
    --bg-desktop: url('../images/desktop.png');
}

* {
    overflow: hidden;
}

body{
    background-image: var(--bg-desktop);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
    flex-wrap: wrap;
    min-height: 100vh;
}


.proximamente-container{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding: 0 320px;
}

.proximamente-container img{
    width: 600px;
}

 .caja-inicio-desktop{
        display: flex;
    }

    .caja-inicio-tablet,
    .caja-inicio-mobile{
        display: none;
    }

.proximamente{
    color: #fff;
    font-family: var(--font-secondary);
    font-size:  2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* padding-left: 264px;     */
    text-align: center;
}

.info-event{
    display: none;
}

@media (max-width: 991px){
    .info-event{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .format-event{
        color: white;
        font-family: var(--font-primary);
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
    }

    .date-event{
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: flex-end;
    }

    .date-event__day, .date-event__month, .date-event__year{
        font-family: var(--font-secondary);
        color: white;
        font-size:  30px;
        font-style: normal;
        font-weight: 400;
    }

    .date-event__month{
        color: var(--color_2);
        font-weight: 700;
        font-size: 25px;
    }

    body{
        background-image: var(--bg-tablet);
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
        display: inherit;
        text-align: center;
    }

    .proximamente-container{
        padding: 0 80px;
        align-items: flex-start; 
    }

    .proximamente-container img{
        width: 600px;
    }

    .proximamente{
        padding-left: 0;
    }

    .caja-inicio-tablet{
        display: flex;
    }

    .caja-inicio-desktop,
    .caja-inicio-mobile{
        display: none;
    }

}

@media (max-width: 772px){
    .proximamente-container img{
        width: 420px;
    }

}

@media (max-width: 576px){
    body{
        background-image:  var(--bg-mobile) !important;
        background-repeat: no-repeat;
        background-position: center;
    }

    .proximamente-container{
        padding: 0 32px;
        align-items: flex-start;
    }

    .proximamente-container img{
        width: 323px;
    }


     .caja-inicio-mobile{
        display: flex;
    }

    .caja-inicio-desktop,
    .caja-inicio-tablet{
        display: none;
    }
}