@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* padroes */
.container {
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.btn-vendas button {
    background: linear-gradient(90deg, #9c9c9c, #000000);
    color: white;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.7s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;

    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;
}

@keyframes mover {
    from {
        background-position: 0% 0;
    }

    to {
        background-position: 200% 0;
    }
}

.btn-vendas button: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);
}

/* Preset Texto */

.rgb-text {
    position: relative;
    font-size: 100px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.rgb-text::before,
.rgb-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rgb-text::before {
    color: #751187;
    transform: translate(-9px, 0);
    opacity: 0.9;
    mix-blend-mode: screen;

    text-align: center;
}

.rgb-text::after {
    color: rgb(185, 227, 147);
    transform: translate(9px, 0);
    opacity: 0.9;
    mix-blend-mode: screen;

    text-align: center;
}

.rgb-text span {
    position: relative;
    z-index: 2;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.35),
        0 0 20px rgba(255, 255, 255, 0.15);
}

.destaque {
    background: linear-gradient(90deg,
            #751187,
            rgb(185, 227, 147),
            #fff);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;

    font-weight: 700;
}

.destaque2 {
    background: linear-gradient(90deg,
            #751187,
            rgb(3, 98, 140),
            #000);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;

    font-weight: 700;
}

/* Preset Texto */

.background-comeco {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image:
        url("../IMG/backgrounds/Textura\ -\ Fundo\ Site.png");

    /* Tamanhos: primeira 60%, segunda 40% */
    background-size: cover;
    /* Posições: primeira à esquerda, segunda à direita */
    background-position: center;
    /* Sem repetição */
    background-repeat: no-repeat;
    z-index: -3;
}

/* Header */
header {
    width: 100%;
    height: 55px;

    position: fixed;
    z-index: 1000;
    top: -100px;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    transition: top 0.5s ease, opacity 0.5s ease;
    background-color: #000;
    color: #fff;

    font-weight: 700;
}

header.show {
    top: 0;
}

.conteudo-header {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    outline: none;
    box-shadow: none;
}

.contador-logo-CA {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contador-logo-CA img {
    /* width: 40px; */
    height: 35px;
}

#btn-vendas-header button {
    padding: 8px 30px;
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-header ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.nav-header ul li a {
    position: relative;
    display: inline-block;
    /* necessário para o pseudo-elemento acompanhar o texto */
    color: #bbbbbb;
    /* ou a cor original */
    text-decoration: none;
    padding-bottom: 6px;
    /* espaço para a linha aparecer abaixo */
}

/* Linha invisível inicialmente, centralizada */
.nav-header ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    /* espessura da linha */
    background-color: #fff;
    /* cor da linha (igual ao hover) */
    transform: scaleX(0);
    /* começa com largura zero */
    transform-origin: center;
    /* ponto de partida: centro */
    transition: transform 0.3s ease-out;
}

/* Hover: linha expande do centro para as bordas */
.nav-header ul li a:hover {
    color: #fff;
}

.nav-header ul li a:hover::after {
    transform: scaleX(1);
    /* largura total */
}

/* Header */


/* Banner */

.banner {
    width: 100%;
    height: 100dvh;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;

    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "CUT \A ACADEMY";

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 500px;
    font-weight: bold;
    color: transparent;
    z-index: -1;
    pointer-events: none;
    font-family: "Bebas Neue", sans-serif;
    white-space: pre;
    line-height: 1;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../IMG/backgrounds/3d-view-camera-shutter.jpg");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    transition: text-shadow 0.5s ease;

}

.banner.glow::before {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../IMG/backgrounds/3d-view-camera-shutter.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    transition: text-shadow 0.5s ease;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;

    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../IMG/backgrounds/open-laptop-with-glowing-screen-notepad-table-night.jpg");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    z-index: -3;
    pointer-events: none;
}

.banner.glow::after {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../IMG/backgrounds/open-laptop-with-glowing-screen-notepad-table-night.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    z-index: -3;
    pointer-events: none;
}


.text-copy-banner {
    /* width: 50%; */

    font-weight: 600;
    font-size: 30px;
    /* margin-top: 100px; */
}

#btn-vendas-banner button {
    padding: 10px 30px;
    margin: 0px 40px 30px 0px;

    background: #000000;

    -webkit-animation: vibrate-1 0.3s linear infinite both;
    animation: vibrate-1 0.3s linear infinite both;
}

#btn-vendas-banner button: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);
}

@-webkit-keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

/* Banner */

/* Seta */

.seta {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: -100px;
    /* margin-bottom: 200px; */
    color: #fff;
}

.scroll-text {
    color: white;
    font-size: 48px;
    font-weight: 600;

    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }

    100% {
        transform: translateY(0);
    }

}

/* Seta */

/* Relatos */

.img-relatos {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 100px 0;
}

.img-relatos img {
    border-radius: 10px;
}

.box-relatos-img {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
    border-radius: 10px;
}

.img-relato-maior {
    width: 390px;
}

.img-relato-menor {
    width: 580px;
}


/* Relatos */


/* modulos */
.modulos {
    margin: 50px 0 100px 0;
}

.container-modulos {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text-modulos {
    text-align: center;
    margin-bottom: 50px;
}

.boxes-modulos {
    width: 90%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;
    display: grid;
    grid-template-rows: auto;
    width: fit-content;
    justify-self: center;
}

.box-modulos {
    background: #fff;
    color: #000;

    padding: 15px 35px;
    border-radius: 10px;

    animation: bounce-suave-loop 2.5s ease-in-out infinite;
}

@keyframes bounce-suave-loop {
    0% {
        transform: translateY(0);
        opacity: 0.75;
    }

    50% {
        transform: translateY(-6px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.75;
    }
}

/* ========== LINHA 1 (2 itens) ========== */
.box-linha-1 .box-modulos:first-child {
    animation-delay: 0s;
}

.box-linha-1 .box-modulos:last-child {
    animation-delay: 0.4s;
}

/* ========== LINHA 2 (2 itens) ========== */
.box-linha-2 .box-modulos:first-child {
    animation-delay: 0.1s;
}

.box-linha-2 .box-modulos:last-child {
    animation-delay: 0.5s;
}

/* ========== LINHA 3 (2 itens) ========== */
.box-linha-3 .box-modulos:first-child {
    animation-delay: 0.2s;
}

.box-linha-3 .box-modulos:last-child {
    animation-delay: 0.6s;
}

/* ========== LINHA 4 (2 itens) ========== */
.box-linha-4 .box-modulos:first-child {
    animation-delay: 0.3s;
}

.box-linha-4 .box-modulos:last-child {
    animation-delay: 0.7s;
}

/* ========== LINHA 5 (2 itens) ========== */
.box-linha-5 .box-modulos:first-child {
    animation-delay: 0.4s;
}

.box-linha-5 .box-modulos:last-child {
    animation-delay: 0.8s;
}

/* ========== LINHA 6 (3 itens) ========== */
.box-linha-6 .box-modulos:first-child {
    animation-delay: 0s;
}

.box-linha-6 .box-modulos:nth-child(2) {
    animation-delay: 0.35s;
}

.box-linha-6 .box-modulos:last-child {
    animation-delay: 0.7s;
}

/* ========== LINHA 7 (3 itens) ========== */
.box-linha-7 .box-modulos:first-child {
    animation-delay: 0.15s;
}

.box-linha-7 .box-modulos:nth-child(2) {
    animation-delay: 0.5s;
}

.box-linha-7 .box-modulos:last-child {
    animation-delay: 0.85s;
}

/* ========== LINHA 8 (3 itens) ========== */
.box-linha-8 .box-modulos:first-child {
    animation-delay: 0.3s;
}

.box-linha-8 .box-modulos:nth-child(2) {
    animation-delay: 0.65s;
}

.box-linha-8 .box-modulos:last-child {
    animation-delay: 1s;
}

/* ========== LINHA 9 (4 itens) ========== */
.box-linha-9 .box-modulos:first-child {
    animation-delay: 0s;
}

.box-linha-9 .box-modulos:nth-child(2) {
    animation-delay: 0.3s;
}

.box-linha-9 .box-modulos:nth-child(3) {
    animation-delay: 0.6s;
}

.box-linha-9 .box-modulos:last-child {
    animation-delay: 0.9s;
}

/* ========== LINHA 10 (4 itens) ========== */
.box-linha-10 .box-modulos:first-child {
    animation-delay: 0.15s;
}

.box-linha-10 .box-modulos:nth-child(2) {
    animation-delay: 0.45s;
}

.box-linha-10 .box-modulos:nth-child(3) {
    animation-delay: 0.75s;
}

.box-linha-10 .box-modulos:last-child {
    animation-delay: 1.05s;
}

/* ========== LINHA 11 (4 itens) ========== */
.box-linha-11 .box-modulos:first-child {
    animation-delay: 0.3s;
}

.box-linha-11 .box-modulos:nth-child(2) {
    animation-delay: 0.6s;
}

.box-linha-11 .box-modulos:nth-child(3) {
    animation-delay: 0.9s;
}

.box-linha-11 .box-modulos:last-child {
    animation-delay: 1.2s;
}


.box-modulos h3 {
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Modulos - logo*/

.box-linha-1 {
    display: grid;
    grid-template-columns: repeat(2, auto);
    /* 2 elementos */

    gap: 25px;
    justify-content: center;
}

.box-linha-2 {
    display: grid;
    grid-template-columns: repeat(2, auto);
    /* 2 elementos */

    gap: 25px;
    justify-content: center;
}

.box-linha-3 {
    display: grid;
    grid-template-columns: repeat(4, auto);
    /* 4 elementos */

    gap: 25px;
    justify-content: center;
}

.box-linha-4 {
    display: grid;
    grid-template-columns: repeat(3, auto);
    /* 3 elementos */

    gap: 25px;
    margin-right: -70px;
    justify-content: space-between;
}

.box-linha-5 {
    display: grid;
    grid-template-columns: repeat(1, auto);
    /* 1 elementos */

    gap: 25px;
    justify-content: space-between;
    /* margin-left: 0px; */
}

.box-linha-6 {
    display: grid;
    grid-template-columns: repeat(1, auto);
    /* 1 elementos */

    gap: 25px;
    margin-left: -70px;
    justify-content: flex-start;
}

.box-linha-7 {
    display: grid;
    grid-template-columns: repeat(1, auto);
    /* 1 elementos */

    gap: 25px;
    justify-content: space-between;
}

.box-linha-8 {
    display: grid;
    grid-template-columns: repeat(2, auto);
    /* 1 elementos */

    gap: 25px;
    margin-left: -70px;
    margin-right: -70px;
    justify-content: space-between;
}

.box-linha-9 {
    display: grid;
    grid-template-columns: repeat(3, auto);
    /* 1 elementos */

    gap: 25px;
    /* margin-right: -30px; */
    justify-content: space-between;
}

.box-linha-10 {
    display: grid;
    grid-template-columns: repeat(3, auto);
    /* 1 elementos */

    gap: 25px;
    justify-content: center;
}

.box-linha-11 {
    display: grid;
    grid-template-columns: repeat(3, auto);
    /* 1 elementos */

    gap: 25px;
    justify-content: center;
}

.box-linha-12 {
    display: grid;
    grid-template-columns: repeat(2, auto);
    /* 1 elementos */

    gap: 25px;
    justify-content: center;
}

#btn-vendas-modulos button {
    padding: 8px 30px;
    margin-top: 60px;
}

/* Modulos - logo*/

/* modulos */

/* Metodologia */
.metodologia {
    margin: 100px 0;
    margin-top: 200px;
}

.containder-metodologia {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    gap: 30px;
}

.containder-metodologia img {
    width: 45%;
}

.text-metodologia {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;

    /* padding: 30px; */

    width: 45%;
}

.text-metodologia h1 {
    font-size: 40px;
}

.text-metodologia p {
    font-size: 22px;
}

/* Metodologia */


/* countdown */

.countdown-prox-turma {
    width: 100%;
    background: #000;
    margin: 40px 0;
}

.countdown {
    background: #000;
    padding: 0px 0px 40px 0px;
    text-align: center;
}

.countdown-title {
    font-family: "Bebas Neue", cursive;
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
}

.countdown-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.time {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 90px;
}

.time span {
    font-size: 28px;
    font-weight: bold;
}

.time p {
    font-size: 12px;
    margin: 5px 0 0;
}

#btn-vendas-countdown {
    margin-top: 30px;
}

#btn-vendas-countdown button {
    padding: 8px 30px;
}

/* countdown */


/* para-quem */
.para-quem {
    margin: 100px 0;
}

.titulo-para-quem {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
}

.titulo-para-quem h1 {
    margin: 0;
    font-size: 50px;
}

.titulo-para-quem p {
    font-size: 20px;
    text-align: center;
}

.titulo-para-quem img {
    width: 80px;
}

.boxes-para-quem {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: center;
    gap: 30px;
}

.box-para-quem {
    box-sizing: border-box;
    width: 300px;
    padding: 20px;
    border: 5px solid white;
    background-color: white;
    border-radius: 10px;
    gap: 100px;
    color: #000;
}

.box-para-quem p {
    font-weight: 400;
    color: #555555;
}

.box-para-quem img {
    width: 80px;
}

#icon-menor {
    width: 55px;
    margin: 10px;
}

/* para-quem */

/* estatistica */

.estatisticas {
    /* margin-top: -150px; */
    margin-bottom: 100px;
    padding: 70px 0;

    background: #000;
    color: #fff;
}

.container-estatisticas {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 20px;
}

.text-estatisticas h1 {
    font-weight: 900;
    font-size: 24px;
    margin: 0;
    text-align: right;
}

.sub-text-estatisticas {
    font-size: 17px;
    text-align: center;
    width: 75%;
}

#destaque-sub-text-estatisticas {
    font-size: 22px;
}

.box-estatisticas,
.text-estatisticas {
    width: 17%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.box-estatisticas {
    background-color: white;
    color: #000;
    padding: 40px 0;
}

.box-estatisticas h1 {
    margin: 0;
}

#btn-vendas-estatisticas button {
    padding: 8px 30px;
}

/* estatistica */

/* Duvidas */
.duvidas {
    width: 100%;
    background-color: #000;
    padding: 100px 0;
    color: #fff;
}

.faq-container {
    width: 100%;
    max-width: 1300px;

    display: flex;
    gap: 70px;
    align-items: flex-start;
}

/* MENU */

.faq-left {
    min-width: 250px;
}

.faq-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 35px;
}

.faq-menu {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.faq-tab {
    background: none;
    border: none;

    text-align: left;
    cursor: pointer;

    font-size: 18px;
    color: #5f5f5f;

    transition: 0.3s;
}

.faq-tab:hover {
    color: #fff;
}

.faq-tab.active {
    color: #fff;
    font-weight: 600;
}

/* FAQ AREA */

.faq-right {
    flex: 1;
}

.faq-group {
    display: none;
    flex-direction: column;
    margin-top: 60px;
}

.faq-group.active {
    display: flex;
}

.faq-item {
    border-bottom: 1px solid #d8d8d8;
}

.faq-question {
    width: 100%;

    background: none;
    border: none;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 24px 0;

    cursor: pointer;

    font-size: 22px;
    font-weight: 600;
    color: #fff;

    text-align: left;
}

.faq-icon {
    font-size: 24px;
    transition: 0.3s;
    margin-left: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition:
        max-height 0.4s ease,
        padding 0.3s ease;

    padding: 0;
}

.faq-answer p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    padding-bottom: 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Duvidas */



/* professores */

.container-box-professores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 600px;
}

.box-professores {
    flex: 0 0 calc(25% - 20px);
    min-width: 200px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 255px;
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;

    transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.box-professores.expandido {
    max-height: 100%;
}

.box-professores img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.box-professores:not(.expandido) img {
    transform: translateY(-0%);
}

.box-professores:hover {
    border: solid 2px #ddd;
}

.box-professores::after {
    content: "Clique para mais";
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-100%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* professores */

/* card-pagamento */

.card-pagamento {
    margin: 200px 0;
}

.box-pagamento {
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.box-card-pagamento {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 50px;
}

.box-card-pagamento h1 {
    font-size: 60px;
    margin: 0;
}

.box-pagamento p {
    font-size: 30px;
    margin: 10px;
    /* font-weight: 500; */
}

#clique-aqui {
    font-size: 16px;
    color: #b4b4b4;
}

.destaque-valor {
    font-size: 60px;
    font-weight: 600;
}

.box-link {
    text-decoration: none;
    display: block;
    color: inherit;

    background: #000000;

    padding: 70px 150px;
    border-radius: 10px;

}

.box-link:hover {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2),
            rgba(0, 0, 0, 0.3)),
        linear-gradient(90deg,
            #FFFFFF 0%,
            rgb(185, 227, 147) 25%,
            rgb(175, 117, 186) 50%,
            rgb(185, 227, 147) 75%,
            #FFFFFF 100%);

    background-size: 200% 100%;
    animation: mover 1s linear infinite;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);

    color: #000;
}

/* card-pagamento */


footer {
    width: 100%;
    height: auto;
    background-color: #000;
    color: #bbbbbb;
    display: flex;
    /* align-items: center; */
    justify-content: center;

    padding: 50px 0 200px 0;
}

.footer-container img {
    width: 200px;
}

.footer-container {
    width: 100%;
    display: flex;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-logo-frase-footer {
    width: 30%;
}

.text-footer {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 50px;
    width: 70%;
}

.box-text-footer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.box-text-footer h1 {
    font-size: 20px;
    text-align: left;
}

.nav-footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 0;
}

.nav-footer ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0;
    list-style: none;
    color: #bbbbbb;
}

.nav-footer ul li a:Hover {
    color: #fff;
}