* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
    border: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button {
    background-color: transparent;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 114.4rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    margin-bottom: 4rem;
}

header h1 {
    font-weight: 300;
    color: #fff;
    padding: 5px;
    font-size: 3.2rem;
    text-align: center;
    margin: 0 auto;
    text-transform: uppercase;

    background: #a70c0c;
}

header .faixa {
    background: #810505;
    padding: 8px 0px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.44rem;
    letter-spacing: 1.5px;
}

main .video {
    max-width: 90rem;
    width: 100%;
    margin: 0 auto;
}

main .video h6 {
    text-align: center;
    color: #1b1b10;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 3rem;
}

main .s-potes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 40px 0;
    gap: 1.6rem;
    flex-shrink: 0
}

main .s-potes .card {
    border: 2px solid #dee2e6;
    border-radius: 5rem;
    padding: 2.4rem;
    text-align: center;
    max-width: 34.8rem;
    width: 100%;
}

main .s-potes .card.red {
    border: 2px solid #B3001B;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

main .s-potes .card .head h3 {
    font-weight: 700;
    font-size: 2.8rem;
    color: #1b1b10;
}

main .s-potes .card .head p {
    line-height: 2.3rem;
    font-size: 1.4rem;
    color: #212529;
}

main .s-potes .card .body .price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}


main .s-potes .card .body .price strong {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 6.4rem;
    line-height: 1.2;
}

main .s-potes .card .body .price p {
    max-width: 4rem;
    width: 100%;
    display: block;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.5;
}

main .s-potes .card .body .save {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

main .s-potes .card .body .free {
    font-size: 1.7rem;
    line-height: 2.8rem;
}

main .s-potes .card .footer p {
    font-size: 1.4rem;
    margin: 1.6rem 0;
    line-height: 2.3rem;
}

main .s-potes .card .footer .price {
    font-size: 1.7rem;
    line-height: 2.8rem;
}

.btn-buy {
    font-family: 'Roboto', sans-serif;
    width: 95%;
    margin: 15px auto 0;
    font-weight: 700;
    background-image: linear-gradient(180deg, #01b319 0, #04960d 100%);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    text-decoration: none;
    color: white;
    font-size: 27px;
    line-height: 1.1em;
    border-radius: 7px;
    border: none;
    padding: 10px 5px;
    animation: 1s ease-in-out infinite alternate pulsar;
    cursor: pointer;
    display: block;
    transition: all .3s;
}

.btn-buy:hover {
    text-decoration: none;
    color: #000;
}

footer {
    background: #000000;
    border-top: 1px solid #c1c1c1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-top: 10dvh;
    color: white;
}

@keyframes pulsar {
    0% {
        transform: scale(1);
        box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.575);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0px 0px 18px 5px rgba(255, 255, 255, 0.575);
    }

    100% {
        transform: scale(1);
        box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.575);
    }
}

@media (max-width:768px){
    footer{
        margin-top: 20dvh;
    }
}

@media (max-width:991px) {
    main .s-potes {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .order-1 {
        order: 3;
    }

    .order-2 {
        order: 1;
    }

    .order-3 {
        order: 2;
    }

    main .s-potes .card .body .price strong {
        font-size: 4.4rem;
    }

    main .s-potes .card .head h3 {
        font-size: 2.1rem;
    }

    main .s-potes .card .body .save {
        font-size: 1.4rem;
    }

    main .s-potes .card .body .free {
        font-size: 1.4rem;
    }

    main .s-potes .card .footer .price {
        font-size: 1.4rem;
    }

    header h1 {
        font-size: 2.4rem;
    }

    header .faixa {
        font-size: 1.1rem;
    }
    main .video h6{
        font-size: 1.3rem;
    }

    footer .footer-links{
        font-size: 1.2rem !important;
    }
}