/* GLOBAL */
:root {
    --black: #020D13;
    --yellow: #FFA801;
    --gray: #94A3B8;
    --blue-dark: #0F172A;
}

.font-h {
    font-family: 'Poppins';
    font-weight: 500;
}

.text-c {
    text-align: center;
}

.color-gray {
    color: var(--gray);
}

.color-yellow {
    color: var(--yellow);
}

.color-blue-dark {
    color: var(--blue-dark);
}
/*RESET*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

p,
h1,
h2,
h3 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}
/**/

html {
    font-size: 16px;
    font-family: 'IBM Plex Sans', sans-serif; 
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.cabecalho {
    background-color: var(--black);
}

.cabecalho__logo {
    width: 13rem;
    margin-left: 12rem;
}

.cabecalho__tittle {
    font-size: 4rem;
    padding-bottom: 1rem;
}

.conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--black);
    
}

.conteudo__headline {
    max-width: 600px;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 1rem;
}

.conteudo__headline strong {
    color: #fff;
}


.conteiner__vsl {
    object-fit: cover;
    margin-bottom: -100px;
    padding-bottom:56.25%; 
    position:relative; display:block; 
    width: 80%;
}

.conteudo__vsl {
    border: solid var(--yellow) 2px;
    border-radius: 3px;
    position:absolute; top:0; left: 0"
}

.informacoes {
    padding-top: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 2rem;
    padding: 8rem 7rem 0 7rem;
}

.botao {
    display: inline-block;
    padding: 1rem 4rem;
    background: linear-gradient(#ffbf00, #f2a50c);
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: var(--black);
    font: 600 1.125rem/1.35 "Poppins", sans-serif;
    max-width: max-content;
    border: none;
    cursor: pointer;
    grid-column: 1 / -1;
    justify-self: center;
}

.botao:hover {
  background: linear-gradient(#ffb60d, #e59317);
}

.informacoes__h2 {
    font-size: 3rem;
    font-family: 'Poppins';
    grid-column: 1 / -1;
}

.informacoes__h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.informacoes__lista {
    list-style: none; 
    position: relative;
    margin-bottom: 2rem;   
}

.informacoes__lista__itens {
    color: var(--gray);
    font-size: 1.25rem;
}

.informacoes__lista--01 {
    justify-self: end;
}

.informacoes__lista li::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 14px;
    background-image: url("/assets/img/pets.svg");
    position: absolute;
    left: 10px;
}

.sobre {
    max-width: 700px;
    background-color: #FEFEFF;
    margin: 0 auto;
    border-top: 2px solid var(--yellow);
    padding-top: 1.5rem;
}

.sobre__h2 {
    margin-bottom: 0.750rem;
    font-size: 3.5rem;
}

.sobre__h3 {
   margin-bottom: 0.750rem;
}

.sobre__text {
    position: relative;
    font-size: 1.125rem;
    background-color: var(--black);
    margin-bottom: 2.5rem;
    border-radius: 3px;
    padding: 2rem;
    box-shadow: var(--gray) 0px 5px 15px;
}

.sobre__text strong {
    color: #F8BF53;
}

.dec-bone::before {
    content: "";
    width: 27px;
    height: 32px;
    background-image: url("/assets/img/bone.svg");
    position: absolute;
    left: -7px;
    top: -14px;
}

.produto {
    padding-top: 3rem;
    background-color: var(--black);
}

.produto__preco {
    max-width: 40rem;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    background-color: var(--blue-dark);
    padding: 2rem;
    border-radius: 3px;
    margin-bottom: 2rem;
}
.produto__preco__h2 {
    grid-column: 1 / -1;
    justify-self: center;
    color: white;
}
.produto__preco__valor--p {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.produto__preco__valor--p span {
    font-size: 2.5rem;
    
}

.produto__preco__valor--v {
    font-weight: 400;
    font-size: 1.125rem;
    text-align: center;
}

.produto__preco--ou {
    text-align: center;
    font-size: 2rem;
    
}

.div__preco {
    border-right: 0.1px solid var(--gray);
}

.produto ul {
    list-style: none;
    margin: 0;
    position: relative
}

.produto li::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 14px;
    background-image: url("/assets/img/done.svg");
    position: absolute;
    left: 10px;
}

.produto__container {
    background-color: var(--blue-dark);
    max-width: 850px;
    border-radius: 3px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem;
}

.produto__h2 {
    font-family: 'Poppins';
    margin-bottom: 1rem;
    grid-column: -1 / 1;
    justify-self: center;
}

.produto__h3 {
    font-family: 'Poppins';
    margin-bottom: 1rem;
    font-size: 1rem;
}

.produtos {
    margin-bottom: 0.6rem;
}

@media (max-width: 295px) {
    .botao {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 450px) {
    .cabecalho__logo {
        margin: 0 auto 1rem;
    }

    .conteudo__headline {
        padding: 0.6rem;
        line-height: 1.2;
        text-align: center;
    }
    .cabecalho__tittle {
        font-size: 2.5rem;
        line-height: 1;
    }
    .conteiner__vsl {
        width: 100%;
    }

    .informacoes {
        grid-template-columns: 1fr;
        padding: 8rem .5rem 0 .5rem;
    }

    .informacoes__h2 {
        line-height: 1.2;
        font-size: 2rem;
    }

    .sobre__h2 {
        font-size: 2.5rem;
    }

    .sobre__h3 {
        padding: 0.5rem;
    }

    .sobre__text {
        padding: .8rem;
        margin:0 0.4rem 2rem 0.4rem;
    }

    .sobre__text::before {
        left: 340px;
    }

    .produto__preco {
        margin: 0 .5rem 2rem .5rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .produto__preco__h2 {
        font-size: 1.2rem;
    }

    .produto__preco__valor--p {
        margin-bottom: .5rem;
    }

    .produto__preco__valor--v {
        margin-bottom: 1rem;
    }
    .div__preco {
        border-right: none;
        border-bottom: 0.1px solid var(--gray);
    }

    .produto__container {
        grid-template-columns: 1fr;
        padding: 1rem;
        margin: .5rem;
    }
}
