body {
    font-family: 'Futura PT Light';
    color: #0c0f30;
    background-color: #0c0f30;

    b {
        font-family: 'Futura PT Medium';
    }
}

.wrapper {
    background: #f8e9de url("https://tres23cafe.com/torneo-arte-latte/images/now-33.png") center;
    background-size: cover;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
    height: auto;
    flex-wrap: wrap;

    @media screen and (min-width: 1024px) {
        flex-direction: row;
        min-height: calc(100vh - 96px);
    }

    @media screen and (min-width: 1440px) {
        max-width: 1440px;
        margin: 0 auto;
    }
}

.column-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: -38px;
    width: 100%;

    & > img {
        width: auto;
        height: 100%;
    }

    @media screen and (min-width: 1024px) {
        width: calc(3 / 7 * 100%);
        height: 100%;
        margin-top: 0;
    }

    @media screen and (min-width: 1280px) {
        width: calc(1 / 2 * 100%);

        & > img {
            width: 600px;
            height: 600px;
        }
    }
}

.column-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    margin: 20px 0;
    box-sizing: border-box;

    @media screen and (min-width: 1024px) {
        width: calc(4 / 7 * 100%);
        margin: 0;
        padding: 50px;
        gap: 16px;
    }

    @media screen and (min-width: 1280px) {
        width: calc(1 / 2 * 100%);
        justify-content: flex-end;
        padding: 20px 30px;
        gap: 120px;
    }
}

.datos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: -30px;

    @media screen and (min-width: 768px) {
        justify-content: flex-end;
        margin-top: -130px;
    }

    @media screen and (min-width: 1024px) {
        margin: 0;
        padding: 0 20px;
        justify-content: flex-start;
    }

    @media screen and (min-width: 1280px) {
        margin-top: -40px;
    }
}

.banner-top {
    display: flex;
    flex-direction: column; 
    align-items: center;
    max-width: 600px;
}

.fecha {
    font-family: 'Futura PT Book';
    font-size: 30px;
    width: max-content;

    b {
        font-family: 'Futura PT Light';
        font-size: 130px;
        line-height: 100px;
    }

    strong {
        font-family: 'Futura PT Bold';
        font-size: 26px;
    }
}

.info {
    font-family: 'Futura PT Book';
    font-size: 20px;
}

.direccion {
    font-family: 'Futura PT Light';
    font-size: 16px;
}

.lugar {
    font-size: 14px;
}

.frase {
    font-family: 'Futura PT Book';
    text-align: center;
    border-radius: 20px;
    border: 1px solid #a83905;
    padding: 8px;
    font-size: 24px;
    line-height: 28px;

    @media screen and (min-width: 1024px) {
        padding: 20px;
        font-size: 30px;
        line-height: 40px;
    }
}

.cupos {
    font-family: 'Futura PT Extra Bold';
    font-size: 16px;
    line-height: 18px;
    display: flex;
    flex-direction: column;
    background-color: #a83905;
    color: #f8e9de;
    padding: 6px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 60%;

    span {
        font-family: 'Futura PT Book';
        text-align: center;
    }

    @media screen and (min-width: 1024px) {
        font-size: 18px;
        line-height: 20px;
        padding: 8px 16px;
        width: 80%;

        span {
            font-size: 20px;
            text-align: center;
        }
    }

    @media screen and (min-width: 1280px) {
        flex-direction: row;
        width: max-content;
    }
}

.texto {
    text-align: right;
    width: 100%;
    font-family: 'Futura PT Book';
    font-size: 14px;
    line-height: 16px;
}

.terminos {
    font-family: 'Futura PT Medium';
    text-decoration: underline;
}

.text {
    font-family: 'Futura PT Book';
    font-size: 18px;
    line-height: 18px;
    text-align: justify;

    @media screen and (min-width: 1024px) {
        font-size: 18px;
        line-height: 18px;
    }
}

.container-buttons {
    display: flex;
    flex-direction: column;
    gap: 36px;

    @media screen and (min-width: 1024px) {
        max-width: 280px;
    }

    @media screen and (min-width: 1280px) {
        max-width: 480px;
    }
}

.button {
    font-family: 'Futura PT Medium';
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #0c0f30;
    color: #f8e9de;
    text-align: center;
    cursor: pointer;
    min-width: 220px;
    box-sizing: border-box;

    &:hover {
        background-color: #f8e9de;
        color: #a83905;
    }
}

.item {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

