* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    scroll-behavior: smooth;
}

article {
    height: 100vh;
}

/* LEGENDA ROLANTE */
.legenda-rolante-continua {
    display: flex;
    white-space: nowrap;
    color: purple;
    animation: rolarTextoContinuo 15s linear infinite;
}

.legenda-rolante-continua span {
    padding-right: 0.3em;
}

@keyframes rolarTextoContinuo {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.container-legenda {
    width: 100%;
    height: 2em;
    overflow: hidden;
    background-color: rgb(253, 214, 41);
    position: relative;
    display: flex;
    align-items: center;
    margin: 0.5em 0;
}

/* LEGENDA */
div.legenda {
    margin: 0;
}

.texto-legenda {
    font-size: 1em;
}

/* SLIDER ANUNCIO */
.slider-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0;
}

.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5em;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-wrapper img {
    width: 100%;
    flex-shrink: 0;
    height: auto;
    display: block;
}

.slider-button {
    position: absolute;
    font-style: normal;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.4em;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-button {
    left: 0.5em;
}

.next-button {
    right: 0.5em;
}

.slider-indicators {
    position: absolute;
    bottom: 0.3em;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5em;
    z-index: 10;
}

.indicator {
    width: 0.6em;
    height: 0.6em;
    background-color: rgba(253, 214, 41, 0.466);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: purple;
}

/*TAMANHOS */
.tamanhos {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    bottom: 1.9em;
    margin-bottom: 1em;
}

.texto-tamanhos {
    margin-right: 0.8em;
    text-transform: uppercase;
    font-size: 0.9em;
    color: black;
    font-weight: 500;
}

.icone-tamanhos {
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: 0.4em;
}

/* CONDIÇÕES E PREÇO */
.condicoes {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    bottom: 2em;
}

.preco {
    display: flex;
    flex-direction: column;
}

.valor {
    text-transform: uppercase;
    font-size: 1.6em;
    color: black;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.parcelamento {
    text-transform: uppercase;
    font-size: 0.55em;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* FRETE */
.frete {
    background-color: purple;
    color: white;
    padding: 0.6em 1em;
    border-radius: 0.5em;
    font-size: 0.8em;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* BOTÃO FAZER PEDIDO */
.container-fazer-pedido {
    display: flex;
    justify-content: center;
}

.btn-fazer-pedido {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12em;
    height: 3em;
    color: purple;
    border-radius: 0.5em;
    border: solid 0.1em purple;
    box-shadow: 0.1em 0.1em purple;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 0.5em;
    bottom: 0.8em;
    position: relative;
    background-color: rgb(253, 214, 41);
}

/* DESCRIÇÃO */
.descricao {
    position: relative;
    padding: 0.7em 0.7em 0;
    font-size: 0.9em;
    /* margin-bottom: 2em; */
}

.descricao p {
    margin-bottom: 0.5em;
}

.tabela-medidas {
    display: flex;
    gap: 1.5em;
    margin-bottom: 0.5em;
}

/* FORMULARIO PARA FAZER PEDIDO */
.container-formulario {
    background-color: aliceblue;
    padding-bottom: 1em;
    margin-bottom: 2em;
    border-top: 2em white solid;
}

.titulo-formulario {
    display: flex;
    justify-content: center;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4em;
    top: 2em;
    position: relative;
}

.titulo-nome {
    margin-bottom: 0.5em;
    font-size: 0.9em;
}

div.input-nome {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1em;
    width: 100%;
}

input.valor-input-nome {
    width: 90%;
    height: 3em;
    text-align: center;
    border-radius: 0.5em;
    border: solid 0.1em rgb(66, 66, 66);
    box-shadow: 0.1em 0.1em rgb(66, 66, 66);
    font-size: 1em;
    margin-bottom: 0.9em;
    background-color: white;
}

input.titulo-checkout {
    text-transform: uppercase;
    border: none;
    width: 100vw;
    text-align: center;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 2em;
    background-color: aliceblue;
    border: none;
    display: flex;
    justify-content: center;
}

.titulo-variacoes {
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 0.5em;
    text-align: center;
}

.grupo-radio {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 5em;
    border: solid 0.1em rgb(66, 66, 66);
    border-radius: 0.5em;
    box-shadow: 0.1em 0.12em rgb(66, 66, 66);
    margin-bottom: 2em;
    background-color: white;
}

form,.grupo-radio {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

label, radio {
    display: flex;
    flex-direction: column;
}

.radio-item  {
    transform: scale(2);
    margin: 1em 0em;
    display: flex;
    gap: 1em;
}

.fonte-tamanhos {
    font-size: 0.8em;
    font-weight: 500;
}

.btn-comprar {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    width: 12em;
    height: 3em;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0.5em;
    border: solid 0.1em purple;
    box-shadow: 0.1em 0.1em purple;
    color: purple;
    background-color: rgb(253, 214, 41);
    margin-bottom: 1em;
    cursor: pointer;
}

a,.btn-comprar {
    text-decoration: none;
    display: flex;
    justify-content: center;
}



.paragrafo-duvidas {
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1em;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    display: flex;
    justify-content: center;
}

.btn-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background-color: rgb(69, 156, 69);
    color: white;
    width: 80%;
    height: 4em;
    border-radius: 0.5em;
    border: 0.1em solid rgb(37, 85, 37);
    box-shadow: 0.1em 0.1em rgb(37, 85, 37);
    margin-bottom: 3em;
    text-transform: uppercase;
    font-size: 0.6em;
    font-weight: 600;
    letter-spacing: 0.05em;
    gap: 0.5em;
}

.btn-whatsapp img {
    width: 3em;
}

/* PERGUNTAS FREQUENTES */
.faq-container {
    padding: 0em 3em;
    margin-bottom: 2em;
}

.titulo-faq {
    display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 1em;
    font-size: 0.8em;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-pergunta {
    background-color: rgb(253, 214, 41);
    color: purple;
    padding: 15px 20px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.5em;
    border: solid 0.1em purple;
    box-shadow: 0.1em 0.1em purple;
}

.faq-pergunta:hover {
    background-color: rgb(223, 188, 37);
}

.faq-pergunta::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-pergunta.active::after {
    content: '-';
    transform: rotate(0deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #f9f9f9;
    border-radius: 0 0 5px 5px;
    padding: 0 20px;
}

.faq-resposta.mostrar {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-resposta p {
    margin: 0;
    color: purple;
    line-height: 1.6;
}

/* NAVEGAÇÃO INFERIOR */
.titulo-inferior {
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    color: purple;
}

.navegacao-inferior {
    background-image: url(/SRC/imagens/vitrine-anuncios/background-bomb.png);
    display: flex;
    position: relative;
    justify-content: space-evenly;
    padding-top: 1.5em;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    margin-bottom: 2em;
}

div.navegacao-inferior-blocos a {
    text-decoration: none;
    color: inherit;
    box-shadow: none;
    outline: none;
}

.navegacao-inferior-blocos {
    display: flex;
    position: relative;
    gap: 3em;
    top: 0.4em;
    margin-bottom: 2em;
}

.navegacao-inferior-bloco-um,
.navegacao-inferior-bloco-dois {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5em;
    color: purple;
}

/* RODAPÉ */
.rodape-fazer-pedido {
    font-size: 0.6em;
    position: relative;
    padding-bottom: 1.5em;
}

p.rodape {
    display: flex;
    justify-content: center;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: rgb(78, 78, 78);
}