* {
    margin: 0;
    width: 0;
}

@font-face {
    font-family: "Gilroy";
    src: url(fonts/Gilroy-Regular.ttf);
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url(fonts/Gilroy-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: "Gilroy";
    src: url(fonts/Gilroy-Light.ttf);
    font-weight: 300;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: space-evenly;
    background: url(img/bg-1.jpg) no-repeat;
    background-size: cover;
    font-family: "Gilroy";
}

.tabela {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background-color: #000000;
}

.produto {
    height: calc(100% / 10);
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid #fff;
}

.tabela .produto:last-child {
    border: 0;
}

.produto p~p,
.produto p {
    width: auto;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
}

.produto p~p span {
    color: #981321;
    font-style: italic;
    font-weight: 300;
    margin-right: 15px;
}

/* ############################################################# */

.detalhe {
    position: relative;
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.detalhe::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 50px;
    width: 50%;
    background: #981321;
}

.detalhe::before {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 15px;
    background: #981321;
}

.cartao {
    height: 350px;
    width: 300px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    background-image: linear-gradient(to bottom, #981321, #8d131f, #81141d, #76131b, #6b1319);
    clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0% 0%);
}

.cartao p {
    width: auto;
    font-size: 55px;
    color: #fff;
    font-weight: bold;
}

.cartao p~p {
    font-size: 55px;
    color: #fff;
    font-weight: 300;
}

.container {
    height: 100px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    font-weight: bold;
    color: #fff;
}

.container span {
    display: flex;
    flex-direction: column;
    height: 100px;
    width: fit-content;
}

.container span p {
    font-size: 45px;
    font-weight: bold;
    line-height: 50px;
}

img {
    position: relative;
    top: 150px;
    width: 55%;
}

@media(max-width: 720px) {

    body {
        flex-direction: column-reverse;
    }

    .tabela,
    .detalhe {
        height: 50%;
        width: 100%;
        margin: 0;
        border: 0;
    }

    .produto p,
    .produto p~p {
        font-size: 30px;
    }

    .cartao {
        padding: 0;
        height: 300px;
    }
}

@media(max-width: 1080px) {
    body {
        align-items: center;
        flex-direction: column-reverse;
    }

    .tabela,
    .detalhe {
        height: 50%;
        width: 90%;
        margin: 0;
        border: 0;
    }

    .cartao {
        height: 350px;
        width: 350px;
    }

    img {
        width: 40%;
    }
}

@media(max-width: 960px) {
    body {
        flex-direction: row;
    }

    .tabela, .detalhe {
        height: 100%;
    }

    .cartao {
        height: 250px;
        width: 250px;
    }

    .cartao p {
        font-size: 45px;
    }

    .cartao p~p {
        font-size: 45px;
    }

    .container {
        font-size: 90px;
    }
}

@media(max-width: 720px) {
    body {
        flex-direction: column-reverse;
    }

    img {
        position: relative;
        top: 100px;
    }
    
}

@media(max-width: 540px) {
    body {
        flex-direction: column-reverse;
    }

    img {
        position: relative;
        top: 100px;
    }
    
}