* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    background-color: var(--black);
    color: var(--text-white);
}

/* Aplicando o estilo apenas aos elementos de texto */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: transparent;
    background: radial-gradient(99.87% 160.32% at 50% 0%, #F0F3FF 0%, #4C598E 100%) !important;
    background-clip: text;
    -webkit-background-clip: text !important;
}

p,
ul {
    max-width: 800px;
    font-size: 1.3rem;
    line-height: 1.6em;
    color: var(--text-white-transparent);
}

h3 {
    margin-bottom: 30px;
}

a {
    text-decoration: none;
    color: inherit;
}

.button-container {
    width: fit-content;
}

/* Botão estilizado */
.styled-button {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #FFF5E1;
    /* Tom claro para contraste */
    background: linear-gradient(45deg, #dd8809, #e9b20c);
    /* Laranja e amarelo suave */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 165, 38, 0.5);
    /* Sombra laranja */
}

/* Animação do brilho */
.styled-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0));
    transform: skewX(-20deg);
    transition: 0.3s ease;
    animation: shine 3s linear infinite;
    filter: blur(8px);
    /* Brilho mais suave */
    pointer-events: none;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
}

/* Efeito de hover */
.styled-button:hover {
    background: linear-gradient(45deg, #FF9800, #FFC107);
    /* Cores mais vibrantes */
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 165, 38, 0.7);
    /* Intensificação da sombra laranja */
}

.styled-button:hover::before {
    left: 0;
    /* Para parecer mais natural no hover */
}

.alunos {
    width: 200px;
    display: block;
    margin: 5px auto;
    margin-top: 30px;
}

/* Animação de brilho */
@keyframes shine {
    0% {
        left: -150%;
    }

    40% {
        left: 100%;
    }

    100% {
        left: 150%;
    }
}

.btn-secundario {
    border: 2px solid var(--white);
    box-sizing: border-box;
    height: 48px;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border-radius: 24px;
    width: 230px;
    font-size: 20px;
    margin: 40px auto;
    margin-top: 150px;
}

.btn-secundario:hover {
    color: var(--text-black);
    background-color: var(--white);
}

.btn-secundario i {
    margin-left: 10px;
    transform: translateY(2px);
}


header {
    min-height: 100vh;
    background-image: url('../img/HERO_BG.webp');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 5%;

}

header .content {
    width: 1280px;
    margin: auto;
}

header .content .text {
    max-width: 550px;
}

header h1 {
    max-width: 600px;
    font-size: 2.8rem;
    font-weight: bolder;
    margin-bottom: 15px;
}

header p {
    max-width: 400px;
    color: var(--text-white-transparent);
}

.fade-out {
    opacity: 0;
}

section {
    padding: 150px 0;
}

section h1 {
    text-align: center;
    margin: auto;
    width: fit-content;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 80px;
}

.text-center {
    text-align: center;
    margin: auto;
    max-width: 650px;
}

#call-to-action {
    padding-bottom: 40px;
}

#call-to-action h2 {
    max-width: 650px;
    text-align: center;
    margin: auto;
}

#logo {
    width: 140px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 900px;
    margin: auto;
}

.cards-types {
    position: relative;
    background-color: transparent;
    --background-overlay: '';
    background-image: radial-gradient(at top left, #cf9a4a 34%, #00000E 100%);
    padding: 40px;
    border: 1px solid #815615;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    font-family: 'AvantGardeBook', sans-serif;
    overflow: hidden;
}

/* Overlay */
.cards-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.90);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 1;
}

.cards-types:hover {
    transform: translateY(-10px);
}

.cards-types .content {
    position: relative;
    z-index: 2;
}

.cards-types .icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #6d4812;
    margin-bottom: 20px;
}

.cards-types p {
    color: var(--text-white-transparent);
    font-size: 1.2rem;
    line-height: 1.4em;
}

.cards-types span {
    color: var(--text-white);
    font-weight: bold;
}

/* Para telas menores que 768px: 1 card abaixo do outro */
@media (max-width: 768px) {
    .cards-types {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

#feedbacks {
    position: relative;
    background-image: url('../img/bg.png');
}

/* Overlay */
#feedbacks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    z-index: 1;
}

#feedbacks .container {
    position: relative;
    z-index: 2;
}

#feedbacks .fade-left,
#feedbacks .fade-right {
    width: 250px;
}

.feedback-container {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-carousel {
    display: flex;
    scrollbar-width: none;
    gap: 5px;
    padding: 10px 0;
    width: fit-content;
}

.feedback-carousel::-webkit-scrollbar {
    display: none;
}

.feedback {
    flex: 0 0 calc(90% - 10px);
    max-width: 400px;
    width: 400px;
    height: 500px;
    transition: transform 0.8s;
    transform: scale(1);
    overflow: hidden;
    position: relative;
}

.feedback img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
}

.feedback:hover {
    transform: scale(1.08);
}

.bonus-container {
    width: 900px;
    max-width: 100%;
    margin: auto;
}

.bonus {
    background: radial-gradient(70.1% 91.75% at 66.77% 95.14%, rgb(31, 31, 41) 0%, rgb(18, 18, 23) 100%);
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 3/1;
    margin-bottom: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
}

.bonus .text {
    width: 50%;
}

.bonus span {
    color: #dd8809;
}

.bonus img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
    filter: grayscale(1);
    transition: all 0.6s ease;
}

.bonus:hover {
    transform: scale(1.05);
}

.bonus:hover img {
    filter: grayscale(0);
}

#oferta {
    padding-bottom: 240px;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#oferta .row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

#oferta .card {
    max-width: 450px;
    min-width: 250px;
    padding: 50px;
    padding-top: 40px;
    border-radius: 15px;
    background: radial-gradient(70.1% 91.75% at 66.77% 95.14%, #1f1f29 0%, #121217 100%);
    box-shadow: -9px -9px 15.4px 0px #17171f, 6px 11px 15.4px 0px #111116;
    text-align: center;
    margin-bottom: 50px;
}

#oferta .card h4 {
    font-weight: 600;
    margin-bottom: 30px;
}

#oferta .card .vantagens {
    margin-bottom: 30px;
}

#oferta .card .vantagens a {
    color: var(--text-white);
}

#oferta .card .texto {
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--text-white);
}

#oferta .card p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-white);
}

#oferta .card .old-price {
    margin-bottom: 0px;
}

#oferta .card .main-price {
    font-size: 3.5rem;
}

#oferta .card .divided-price {
    margin-bottom: 0px;
}

#oferta .card .formas-pagamento {
    width: 60%;
    margin: auto;
    margin-top: 50px;
}

#oferta .garantia-card {
    max-width: 400px;
    width: 400px;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#oferta .garantia-conteudo {
    font-size: 0.9em;
    line-height: 1.6;
    color: var(--text-white);
    padding: 15px;
    text-align: start;
}

#sevenDaysImg {
    display: block;
    width: 140px;
    margin: auto;
    margin-bottom: 30px;
    filter: grayscale(1);
}

#oferta .garantia-conteudo h3 {
    margin-bottom: 10px;
}

#oferta .garantia-conteudo p {
    margin: 10px 0;
    font-size: 1.2rem;
    color: var(--text-white);
}

#oferta .garantia-conteudo p:first-child {
    font-weight: bold;
}

#sobre {
    min-height: 100vh;
    background-image: url('../img/SOBRE_BG.webp');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 50px 5%;
}

#sobre .content {
    width: 1280px;
    margin: auto;
}

#sobre .content .text {
    max-width: 600px;
    color: var(--text-white-transparent);
}

#sobre .content .text p {
    letter-spacing: 0.06em;
}

#sobre .content .text span {
    font-weight: bolder;
    color: var(--text-white);
}

footer {
    margin: 10px 0;
    text-align: center;
}

@media (max-width: 1024px) {

    html {
        font-size: 15px;
    }

    .button-container {
        margin: auto;
    }

    .styled-button {
        padding: 14px 22px;
        font-size: 16px;
    }

    header {
        padding: 100px 30px;
        padding-top: 70%;
        text-align: center;
        background-image: url('../img/HERO_BG_MOBILE.webp');
    }

    header .content .text {
        margin: auto;
    }

    header p {
        margin: auto;
    }

    header .styled-button {
        display: block;
        margin: auto;
        margin-top: 40px;
    }

    #sobre {
        padding-top: 90%;
        background-image: url('../img/SOBRE_BG_MOBILE.webp');
    }

    #sobre .content .text {
        margin: auto;
    }
}

@media (max-width: 991px) {

    #bonus {
        padding-bottom: 250px;
    }

    #oferta {
        padding-top: 30px;
    }

    #oferta .garantia-conteudo {
        text-align: center;
    }

}

@media (max-height: 750px) and (min-width: 769px) {
    html {
        font-size: 14px;
    }

    .styled-button {
        padding: 12px 18px;
        font-size: 14px;
    }

    .alunos {
        width: 150px;
    }

    #sobre .content .text {
        max-width: 450px;
    }
}

@media (max-width: 767px) {

    html {
        font-size: 14px;
    }

    .alunos {
        width: 150px;
    }

    .styled-button {
        padding: 15px 20px;
        font-size: 14px;
    }

    header {
        padding: 100px 30px;
        padding-top: 70%;
    }

    section {
        padding: 100px 20px;
    }

    #feedbacks .fade-left,
    #feedbacks .fade-right {
        width: 100px;
    }

    .feedback-container {
        display: block;
        padding: 0;
        overflow: visible;
    }

    .feedback-carousel {
        margin: auto;
        width: 100%;
        overflow: visible;
    }

    .feedback {
        flex: 1;
        width: 100px;
        height: 300px;
        overflow: visible;
    }

    .bonus {
        aspect-ratio: 1/1.5;
        padding: 0;
    }
    
    .bonus .text {
        padding: 40px;
        margin-top: 10px;
        width: 100%;
    }
    
    .bonus img {
        position: initial;
        width: 100%;
        height: auto;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
    }

    #sobre {
        padding-top: 130%;
    }

}

@media (max-width: 600px) {

    #oferta .card {
        padding: 50px 40px;
    }

}

@media (max-width: 500px) {

    html {
        font-size: 12px;
    }

    .styled-button {
        padding: 12px 18px;
        font-size: 12px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    header p {
        max-width: 300px;
    }

    section {
        padding: 80px 15px;
    }

    section h1 {
        font-size: 2.8rem;
        margin-bottom: 60px;
    }

    #call-to-action h2 {
        font-size: 1.5rem;
        line-height: 1.5em;
    }

    #logo {
        width: 120px;
        margin-bottom: 0 !important;
    }

    .feedback-container {
        display: block;
        padding: 0;
        overflow: visible;
    }

    .feedback-carousel {
        margin: auto;
        width: 100%;
        overflow: visible;
    }

    .feedback {
        flex: 1;
        width: 80px;
        height: 300px;
        overflow: visible;
    }

    .feedback img {
        width: 110%;
    }

    #feedbacks .fade-left,
    #feedbacks .fade-right {
        width: 60px;
    }

    #bonus {
        padding-bottom: 160px;
    }

    .bonus {
        width: 90%;
        margin: auto;
        margin-bottom: 40px;
    }

    #oferta .garantia-conteudo {
        max-width: 300px;
    }

    footer {
        font-size: 0.95rem;
    }

}