@font-face {
    font-family: "rubik";
    src: url("fonts/Rubik/static/Rubik-Light.ttf");
}

@font-face {
    font-family: "outfit";
    src: url("fonts/Outfit/Outfit-VariableFont_wght.ttf");
}


:root {

    --page-bg: rgb(255, 255, 255);
    --page-bg2: rgb(247, 247, 247);
    --cor-destaque: #0ca8a8;

}

body {
    margin: 0;
    padding: 0;
    font-family: outfit, sans-serif;
    background-color: var(--page-bg);
    color: #333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: column;
}


/* whatsapp */
.whatsapp {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.6s linear;
    will-change: transform;
}

.whatsapp.animating {
    pointer-events: none;
    box-shadow: none !important;
}

.whatsapp img {
    width: 100%;
    height: auto;
    display: block;
    transform-origin: center;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp .badge {
    animation: pulse-whatsapp 1.5s infinite;
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

/* === Balão ajustado === */
.whatsapp-balloon {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    transform: translateY(-50%) translateX(10px);
    background: #fff;
    color: #333;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-family: sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Ponta do balão */
.whatsapp-balloon::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
}

/* Estado visível */
.whatsapp-balloon.show {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* whatsapp */


section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 10px;
    padding: 30px 0 30px 0;
}

main>section:nth-child(2),
main>section:nth-child(4),
main>section:nth-child(6),
main>section:nth-child(8),
main>section:nth-child(10),
main>section:nth-child(12),
main>section:nth-child(14) {
    background-color: var(--page-bg2);
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.coluna {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 90px;
}

.borda {
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.116);
    box-sizing: border-box;
    padding: 40px 40px 40px 40px;
    border-radius: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #ffffff;
    font-size: 1.2rem;
    text-align: left;
}

.borda2 {
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.116);
    box-sizing: border-box;
    padding: 30px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #ffffff;
    font-size: 1.2rem;
    text-align: left;
    display: flex;
    align-items: center;
}

.borda2 p {
    margin-left: 15px;
}

.borda3 {
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.116);
    box-sizing: border-box;
    padding: 30px;
    border-radius: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #ffffff;
    font-size: 1.2rem;
    text-align: left;
}


.borda-menor {
    width: 100%;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 3px 6px 3px 6px;
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

#logo {
    width: 60%;
}

h1 {
    font-family: outfit, sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: #5c5c5c;
    padding: 0 5% 0 5%;
}


h2 {
    font-family: outfit, sans-serif;
    font-weight: bold;
    font-size: 1.9rem;
    padding: 0 5% 0 5%;
    /* color: #5c5c5c; */

    /* gradiente */
    background: linear-gradient(to right, #6b55fb, #bc5079, #f04e31);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* gradiente */

}

p {
    font-size: 1.05rem;
    color: #555;

}

a {
    text-decoration: none;
}

.destaque {

    color: var(--cor-destaque);
    font-weight: 500;
    text-shadow: var(--cor-destaque) 0.5px 0.3px 0.3px;
}

.destaque-gradiente {
    background: linear-gradient(to right, #6b55fb, #bc5079, #f04e31);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.imagem {
    width: 80%;
    background-color: #e0e9f3;
    border-radius: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.247);
    margin-bottom: 10px;
    margin-top: 20px;
}



hr {
    width: 100%;
    border: 0;
    height: 1px;
    background-color: #d1d1d1;
    margin: 1.5rem 0 1.5rem 0;
}

/* cupom */
.cupom {
    width: 90%;
    background: #f3fff2;
    padding: 55px 20px;
    box-sizing: border-box;
    position: relative;
    border-radius: 10px;
    margin: 40px auto;
    margin-bottom: 20px;
    text-align: center;
    overflow: visible;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.116);
}


.cupomBorda {
    width: 100%;
    border: 2.2px dashed #b3b3b3;
    box-sizing: border-box;
    padding: 5px 5px 5px 5px;
    border-radius: 15px;
    background-color: #ffffff;
}

/* CONTEÚDO */
.titulo-cupom {
    text-align: center;
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;                                                                                                                   
}

.linha {
    border-bottom: 1px dashed #999;
    margin: 10px 0;
}

.item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin: 8px 0;
}

.valor {
    font-weight: bold;
}

.meia {
    color: #007700;
}

.obs {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.8;
}

.circulado {
    position: relative;
}

.circulado::after {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: -8px;
    bottom: -8px;

    border: 2px solid rgba(21, 255, 0, 0.692);
    border-radius: 40px;
    transform: rotate(-6deg);

    /* “tremida” de escrita à mão */
    clip-path: polygon(1% 10%, 3% 3%, 10% 1%, 20% 0%,
            80% 1%, 90% 3%, 97% 10%,
            99% 40%, 98% 70%,
            97% 90%, 90% 97%, 80% 99%,
            20% 99%, 10% 97%, 3% 90%, 1% 70%);
}


/* --- CÓDIGO DE BARRAS --- */
.barcode-container {
    margin-top: 25px;
    text-align: center;
}

.barcode {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.barcode div {
    width: 2px;
    height: 60px;
    background: #000;
    opacity: 0.6;
    /* barras clareadas, estilo impressora térmica */
}

.barcode .l {
    width: 4px;
    /* barra larga */
}

.barcode-num {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* cupom */


/* LEI */
.lei-container {
    width: 80%;
    position: relative;
    overflow: hidden;
    padding: 5% 5% 5% 5%;
    background: #f3fdff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.116);
    border-radius: 10px;
}

/* Faixa diagonal */
.lei-faixa {
    position: absolute;
    width: 80%;
    margin-top: -5%;
    margin-left: -30%;
    transform: rotate(-45deg);
    height: 25px;
    line-height: 25px;
    background-color: #28c63d;
    color: #fff;
    font-weight: bold;
    font-size: 0.7rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}

/* Wrapper que contém duas cópias do texto */
.lei-scroll-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 18s linear infinite;
}

/* Texto rolando */
.lei-scroll-text {
    white-space: nowrap;
    margin-right: 3px;
    /* espaço entre cópias para suavidade */
}

/* LEI */



/* carrinho faixa */
.carrinho-container {
    position: relative;
    overflow: hidden;
    padding: 10%;
    background: #f3fdff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.116);
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 10px;

}

/* Faixa diagonal */
.carrinho-faixa {
    position: absolute;
    width: 80%;
    margin-top: -5%;
    margin-left: -30%;
    transform: rotate(-45deg);
    height: 25px;
    line-height: 25px;
    background-color: #f12b2b;
    color: #fff;
    font-weight: bold;
    font-size: 0.7rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}

/* Wrapper que contém duas cópias do texto */
.carrinho-scroll-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 10s linear infinite;
}

/* Texto rolando */
.carrinho-scroll-text {
    white-space: nowrap;
    margin-right: 3px;
    /* espaço entre cópias para suavidade */
}

/* carrinho faixa */


/* Animação contínua */
@keyframes scroll {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}


.imagem2 {
    width: 100%;
}



.botao {
    background-color: transparent;
    width: 80%;
    border-radius: 50px;
    padding: 10px;
    box-sizing: border-box;
    color: var(--cor-destaque);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    border: 1px solid #0ca8a859;
    font-size: 1rem;
    margin-top: 30px;
    margin-bottom: 20px;
    transition: 1s;
}


.botao2 {
    background-color: transparent;
    width: 100%;
    border-radius: 50px;
    padding: 10px 10px 10px 10px;
    box-sizing: border-box;
    color: var(--cor-destaque);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    border: 1px solid #0ca8a859;
    font-size: 1rem;
    margin-top: 30px;
    transition: 1s;
}

.botao img,
.botao2 img {
    width: 30px;
    vertical-align: middle;
    margin-right: 10px;
}

.botao:hover,
.botao2:hover {
    transition: 0.7s;
    color: #ffffff;
    background-color: var(--cor-destaque);
}


.onde-utilizar-item {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 10px;

}

.onde-utilizar-item img {
    width: 1.3rem;
    height: 1.3rem;
    margin-left: 7px;
    margin-right: 7px;
    opacity: 0.9;
}


.locais-eventos-item {
    width: 100%;
    height: 80px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    padding: 7px;
    border-radius: 5px;
    margin-bottom: 20px;

}

.locais-eventos-item img {
    width: 70px;
    height: 70px;
    margin-left: 6px;
    margin-right: 13px;
    border-radius: 95px;
}


/* Linha do tempo */
.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--cor-destaque);
    /* cor da linha */
    border-radius: 2px;
}

/* Cada item */
.timeline-item {
    position: relative;
    padding: 10px 40px 10px 0;
    margin-bottom: 20px;
}

/* Bolinhas (números) */
.timeline-circle {
    position: absolute;
    left: -4px;
    /* metade do círculo */
    top: 20px;
    width: 32px;
    height: 32px;
    background: var(--cor-destaque);
    color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

/* Texto */
.timeline-item p {
    max-width: 80%;
    font-size: 1rem;
    line-height: 1.4;
    margin-left: 50px;
    margin-top: -10px;
}

/* Responsivo */
@media (max-width: 600px) {
    /* .timeline-item p {
        max-width: 100%;
    }

    .timeline::before {
        right: 20px;
    }

    .timeline-circle {
        right: 3px;
    } */
}

/* Linha do tempo */



.lista-com-img {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #000000;
    margin-top: 35px;
    margin-bottom: 35px;
    text-align: left;
    font-weight: 300;
}

.lista-com-img li {
    margin-left: -10px;
    padding-left: 60px;
    margin-bottom: 28px;
    background: url('img/ok.png') no-repeat left center;
    background-position: 12px center;
    background-size: 30px 30px;
    color: #000000;
    box-sizing: border-box;
    line-height: 1.1rem;
    font-size: 1rem;
    /* alinha com a imagem */
}



.video {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
    margin-top: 15px;
}


.carrinho {
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.116);
    box-sizing: border-box;
    padding: 30px;
    border-radius: 10px;
    margin-top: 25px;
    margin-bottom: 15px;
    background-color: #ffffff;
    font-size: 1.2rem;
    text-align: left;

}

.carrinho img {
    width: 60%;
    height: auto;
    margin-left: 20%;
    padding-bottom: 25px;
}

.carrinho-titulo {
    font-size: 1.2rem;
    font-weight: bold;
}

.preco-antigo {
    font-size: 1rem;
    position: relative;
    display: inline-block;
    color: #838383;
    padding: 5px;

}

.preco-antigo::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: red;
    top: 52%;
    left: 0;
    animation: riscar 2.7s linear infinite;
}

@keyframes riscar {
    0% {
        width: 0;
    }

    25.93% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

.preco {

    font-size: 2.2rem;
    font-weight: bold;
    color: var(--cor-destaque);
}

.botao-comprar {
    background-color: var(--cor-destaque);
    color: #ffffff;
    border-radius: 50px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 35px;
}

.carrinho-linha {
    border: none;
    height: 1px;
    background-color: #ccc;
    width: calc(100% + 60px);
    margin-left: -30px;
}


/* FAQ */
.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

/* Botão da pergunta */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0px 5px 0px 5px;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

/* Ícone + / - */
.faq-icon {
    font-size: 20px;
    transition: transform .3s ease;
}

/* Conteúdo da resposta */
.faq-answer {
    max-height: 0;
    padding: 4px 5px 4px 5px;
    overflow: hidden;
    font-size: 0.92rem;
    color: #616161;
    line-height: 1.5;
    transition: max-height .35s ease;
}

/* Espaçamento interno quando aberto */
.faq-answer.open {
    padding-top: 20px;
    padding-bottom: 15px;
}

/* Linha animada abaixo da pergunta */
.faq-question::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--cor-destaque);
    border-radius: 4px;
    bottom: -6px;
    transition: width .35s ease;

}

/* Quando abrir a pergunta */
.faq-item.open .faq-question::after {
    width: 100%;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

/* FAQ */


.logos-final {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.logos-final img {
    width: 130px;
}


/* Rodape */
.rodape {
    background: #0c0c0d;
    color: #c9c9c9;
    padding: 40px 20px;
    margin-top: 40px;
}

/* Container principal */
.rodape-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
    /* todas as colunas mesma altura */
}

/* Colunas */
.rodape-col {
    flex: 1;
    min-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rodape-col a {
    text-decoration: none;
    color: #aaaaaa;
}

/* Logo */
.rodape-logo {
    width: 180px;
    max-width: 50%;
    margin-bottom: 12px;
    opacity: 0.95;
}

/* Parágrafos */
.rodape-col p {
    line-height: 1.6;
    opacity: 0.9;
}


.rodape-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* espaçamento vertical entre links */
    align-items: center;
}

/* Botões links */
.rodape-links a {
    color: #7c7c7c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 16px;
    /* espaçamento interno */
    border: 1px solid #3a3a3a;
    /* borda */
    border-radius: 20px;
    /* arredondado */
    display: inline-block;
    text-align: center;
    min-width: 160px;
    /* garante mesmo tamanho */
}


.rodape-col:nth-child(2) {
    justify-content: center;
}

/* Ordem natural no mobile */
.rodape-col:nth-child(2) {
    order: 2;
}

/* No desktop (>768px), coluna 2 vem primeiro */
@media (min-width: 768px) {
    .rodape-col:nth-child(2) {
        order: -1;
    }
}

.rodape-copy {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    opacity: 0.7;
    font-size: 14px;
}


@media (max-width: 768px) {
    .rodape-container {
        flex-direction: column;
        align-items: center;
    }

    .rodape-col:nth-child(1) {
        order: 0;
    }

    /* logo */
    .rodape-col:nth-child(2) {
        order: 1;
    }

    /* links segunda posição */
    .rodape-col:nth-child(3) {
        order: 2;
    }

    /* contato última */
}


.visivel {
    display: none;
}

.invisivel {
    display: block;
}

/* Celulares pequenos */
@media (min-width: 320px) {}

/* Celulares médios */
@media (min-width: 375px) {}

/* Celulares grandes */
@media (min-width: 425px) {}

/* Tablets portrait */
@media (min-width: 768px) {

    .visivel {
        display: block;
    }

    .invisivel {
        display: none;
    }

    main {
        margin-top: 0px;
        width: 100%;
    }

    main>section {
        width: 100%;
    }

    .borda,
    .borda2,
    .borda3,
    .cupom {
        width: 52%;
    }

    .lei-container {
        width: 42%;
    }

    main>section:nth-child(1) {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        flex-direction: row;
    }

    main>section:nth-child(1)>.coluna {
        width: 35%;
        padding-right: 5%;
        padding-top: 0px;
    }


    #logo {
        width: 65%;
    }

    .imagem {
        width: auto;
        height: 70vh;
        min-height: 350px;
        border-radius: 100%;
        margin-top: 0vh;
    }

    .botao {
        max-width: 400px;
    }

    /* seleciona a seção que contém a div carrinho */
    main>section:has(.carrinho) {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        flex-direction: row;
        gap: 3%;
    }

    .timeline-circle {
        top: 15px;
    }

    .timeline-item p {
        margin-top: 5px;
    }

    .carrinho {
        flex: 0 0 calc((52% - 3%) / 2);
        min-width: 240px;
    }

    .carrinho img {
        width: 70%;
    }

    .carrinho-titulo {
        font-size: 1rem;
    }

    .preco {
        font-size: 1.8rem;
    }

    .botao-comprar {
        height: 42px;
        font-size: 1rem;
    }

}

/* Notebooks e tablets landscape */
@media (min-width: 1024px) {}

/* Telas grandes */
@media (min-width: 1440px) {}