@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

.container {
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

header {
    width: 100%;
    height: 55px;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: top 0.5s ease, opacity 0.5s ease;
}

header.escondido {
    top: -55px;
}

header h1 {
    font-size: 16px;
}

.oferta {
    margin: 0 5px 0 0;
}

header img {
    max-width: 30px;
}

#btn-vendas-header {
    max-height: 55px;
}

#btn-vendas-header button {
    padding: 8px 24px;
    font-size: 10px;
    border-radius: 5px;
    margin: 0;
}

.banner {
    height: 1000px;
    margin: 50px 0;
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.banner iframe {
    width: 800px;
    height: 450px;
}

.title-banner {
    text-align: center;
    font-size: 16px;
    width: 900px;
}


.btn-vendas button {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1),
            rgba(0, 0, 0, 0.2)),
        linear-gradient(to right,
            #852222 25%,
            #F74040 50%,
            #852222 75%);

    background-size: 200% 100%;
    filter: brightness(1.1);

    box-shadow:
        0 0 8px rgba(255, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);

    animation: mover 3s linear infinite;

    transition: 0.7s all;

    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 20px 64px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin: 20px 0 40px 0;
    position: relative;
    z-index: 10;
}

.btn-vendas button:hover {
    transform: scale(1.08);

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1),
            rgba(0, 0, 0, 0.2)),
        linear-gradient(to right,
            #F74040 25%,
            #ffb4b4 50%,
            #F74040 75%);

    background-size: 200% 100%;
    filter: brightness(0.9);

    box-shadow:
        0 0 8px rgba(255, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);

    animation: mover 3s linear infinite;
}

.title-conteiner {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.title-conteiner p {
    font-family: "Bebas Neue", sans-serif;
    font-size: 250px;
    text-shadow:
        6px 6px 0 #ffffff8f;
}

.conteiner-tesoura {
    gap: 0;
    position: absolute;
    margin-top: 570px;
    /*Mesmo tamanho do banner*/
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#tesoura1 {
    margin: -3px;
    max-width: 220px;
    position: relative;
    z-index: 1;
}

#tesoura2 {
    margin: -3px;
    max-width: 210px;
    position: relative;
    z-index: 3;
}

/* relatos */
.relatos {
    height: auto;
    margin: 60px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    font-family: "Montserrat", sans-serif;
}

.title-relatos,
.qtd-alunos {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.title-relatos p,
.qtd-alunos p {
    font-family: "Bebas Neue", sans-serif;
    font-size: 118px;
    line-height: 0.9;
    text-shadow:
        6px 6px 0 #ffffff8f;
}

.qtd-alunos p {
    font-family: "Bebas Neue", sans-serif;
    font-size: 88px;
    line-height: 0.9;
    text-shadow:
        5px 5px 0 #ffffff8f;
}

.tempo-recorde,
.span-qtd-alunos {
    font-size: 140px;
}

.conteiner-relatos {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: -60px;
}

.conteiner-relatos-img img {
    max-width: 330px;
}

#relato3 img,
#relato4 img{
    width: 270px;
}

.conteiner-relatos-img p {
    margin-bottom: 5px;
}

.conjunto-2prints {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.relatos-paragrafo {
    margin: 100px 0;
    font-size: 26px;
    text-align: center;
    width: 80%;
}

/* transicao */
.imagem-com-gradiente {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.box {
    border: 1px solid;
    border-image: linear-gradient(90deg,
            #a33434, #F74040) 1;

    padding: 20px;
    width: 400px;
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.icon {
    margin-bottom: 15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: linear-gradient(90deg, #852222, #F74040);
    transform: rotate(45deg);
}

.box h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
}

.box p {
    margin: 0;
    font-size: 15px;
    color: #bfbfbf;
}

/* Cut Academy */

.conteiner-cut-academy {
    width: 100%;
    /* margin: 50px 0; */
    padding: 250px 0;
    background: url("../IMG/CutAcademy/Textura-LightLeak-CutAcademy.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    mask-image: linear-gradient(to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent);

    -webkit-mask-image: linear-gradient(to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent);
}

.conteudo-cut-academy {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;

    border-image: linear-gradient(90deg,
            #ff00ff,
            #00ffff,
            #00ff88) 1;

    background: url("../IMG/CutAcademy/Textura-AllDark-CutAcademy.png");
}

.text-cut-academy {
    width: 45%;
    height: 92%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.text-cut-academy img {
    width: 200px;
}

.text-cut-academy p {
    font-size: 16px;
}

.div-relato-conteudo-cut-academy img {
    width: 500px;
}

.text-cut-academy,
.div-relato-conteudo-cut-academy {
    padding: 30px;
}

.btn-cut-academy {
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    color: #ffffff;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1),
            rgba(0, 0, 0, 0.2)),
        linear-gradient(to right,
            #03628C 25%,
            rgb(113, 178, 207) 50%,
            #03628C 75%);

    background-size: 200% 100%;
    filter: brightness(1.1);

    box-shadow:
        0 0 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);


    animation: mover 3s linear infinite;
}

.btn-cut-academy:hover {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2),
            rgba(0, 0, 0, 0.3)),
        linear-gradient(90deg,
            rgb(113, 178, 207) 0%,
            rgb(185, 227, 147) 25%,
            rgb(175, 117, 186) 50%,
            rgb(185, 227, 147) 75%,
            rgb(113, 178, 207) 100%);

    background-size: 200% 100%;
    animation: mover 4s linear infinite;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Cut Academy */

/* videos curtos */
/* modulos */

.conteiner-videos-curtos {
    margin-top: 300px;
}

.modulos {
    height: auto;
    /* margin: 60px 0; */
    gap: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.conteiner-descricao p,
.conteiner-descricao h3 {
    font-size: 26px;
    text-align: center;
}

.conteiner-modulos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.conteiner-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.conteiner-div img {
    max-width: 250px;
    margin: 30px;
    box-shadow:
        6px 6px 6px #00000076;
    transition: transform 0.6s ease;
}

.conteiner-div img:hover {
    transform: rotateY(15deg) rotateX(10deg) scale(1.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* videos curtos */

/* roteirizacao */

.conteiner-roteirizacao {
    height: 1700px;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: black;
}

/* Os 4 passos */
.conteiner-4passos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.passo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    animation: bounce 4s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

#passo1,
#passo3 {
    justify-content: flex-start;
    text-align: left;
}

/* Elementos pares (2 e 4) - alinhados à direita */
#passo2,
#passo4 {
    justify-content: flex-end;
    text-align: right;
    flex-direction: row-reverse;
    /* Inverte a ordem dos elementos internos */
}

#titulo-subtitulo-2passo,
#titulo-subtitulo-4passo {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.title-4passos p,
.numero-romano {
    font-family: "Bebas Neue", sans-serif;
    /* color: black; */
    font-size: 108px;
    text-shadow:
        6px 6px 0 #969696;
}

.numero-romano {
    font-size: 202px;
    margin: 0;
}

.titulo-4passos {
    font-family: "Bebas Neue", sans-serif;
    font-size: 58px;
    text-shadow:
        3px 3px 0 #969696;
    margin-top: 0px;
}

.subtitulo-4passos {
    font-weight: 600;
    font-size: 22px;
    margin-top: -60px;
    width: 40%;

}

#subtitulo-4passo {
    width: 57%;
}

/* Os 4 passos */

/* roteirizacao */



/* card pagamento */
.card-pagamento {
    height: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.title-conteiner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.title-conteiner-card p {
    font-family: "Bebas Neue", sans-serif;
    font-size: 92px;
    text-shadow:
        6px 6px 0 #ffffff8f;
}

.conteiner-card-pagamento {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* margin-top: -60px; */
    gap: 20px;
}

.conteiner-card-pagamento a {
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 42px;
    font-family: "Bebas Neue", sans-serif;
    text-shadow:
        2px 2px 0 #ffffff8f;
}

.conteiner-card-pagamento p {
    margin: 0;
}

.card {
    border: solid 1px red;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 65px 10px;
    background: rgb(36, 19, 19);
    height: 600px;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(IMG/fundo_laestro_cutters_card.png);

    background-size: cover;
    background-position: center;
    box-shadow:
        0 -5px 15px rgba(255, 0, 0, 0.3),
        0 15px 30px rgba(255, 0, 0, 0.4);

    transition: 0.3s;
    margin-top: -100px;
}

#card-roteirizacao,
#card-edicao {
    padding: 10px 5px;
    gap: 5px;
    box-shadow:
        0 -5px 15px rgba(255, 0, 0, 0),
        0 15px 30px rgba(255, 0, 0, 0);
    margin-top: 0px;
}

.card:hover {
    transform: scale(1.03);
}

.mais-vendido {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.titulo-card {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
}

#valor {
    color: greenyellow;
    font-size: 36px;
    font-weight: bold;
}

#valor-roteirizacao,
#valor-edicao {
    color: #dc292a;
    font-size: 36px;
    font-weight: bold;
}

.valor {
    text-align: center;
    padding: 5px;
    font-size: 20px;
    margin: 0;
}

.valor-avista {
    text-align: center;
    padding: 5px;
    font-size: 15px;
    margin: 0;
}

.divisoria {
    position: relative;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin: 20px 0;
}

.divisoria {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 0, 0, 0.15),
            transparent);
}

/* LINHAS */
.divisoria::before,
.divisoria::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 2px;

    background: linear-gradient(to right,
            transparent,
            red,
            transparent);
}

.divisoria::before {
    top: 0;
}

.divisoria::after {
    bottom: 0;
}

.lista {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
}

.lista p {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    text-align: flex-start;
    /* margin: 0px 0px 0px 10px; */
}

.card-button {
    padding: 14px 32px;
    border-radius: 14px;
    margin: 10px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1),
            rgba(0, 0, 0, 0.2)),
        linear-gradient(to right,
            #0b2f23 25%,
            #1fa37a 50%,
            #0b2f23 75%);

    background-size: 200% 100%;
    filter: brightness(1.1);

    box-shadow:
        0 0 8px rgba(0, 255, 150, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);


    animation: mover 3s linear infinite;
}

#card-button-roteirizacao,
#card-button-edicao {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1),
            rgba(0, 0, 0, 0.2)),
        linear-gradient(to right,
            #852222 25%,
            #F74040 50%,
            #852222 75%);

    background-size: 200% 100%;
    filter: brightness(1.1);

    box-shadow:
        0 0 8px rgba(255, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);


    animation: mover 3s linear infinite;
}


@keyframes mover {
    from {
        background-position: 0% 0;
    }

    to {
        background-position: 200% 0;
    }
}

.card-final {
    text-align: center;
}


/* card pagamento */

.btn-zap button {
    background: linear-gradient(90deg, #00bf63, #00605b);
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.7s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.final-site {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 120px;
}

.title-footer h1 {
    font-size: 18px;
}

/* ===== LETTERBOX ===== */
/* Container fixo que cobre toda a tela, mas com pointer-events: none para não atrapalhar cliques */
.letterbox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.letterbox-bar {
    position: absolute;
    left: 0;
    width: 100%;
    background: #000;
    transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 0;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.letterbox-bar.top {
    top: 0;
}

.letterbox-bar.bottom {
    bottom: 0;
}

.letterbox-bar.top::after {
    bottom: 0;
}

.letterbox-bar.bottom::after {
    top: 0;
}