/* SESSION HEADER ================================================================================================================ */
#hero-lavacao {
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #000 95%),
        url('../assets/img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    /* min-height: 90vh; */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

#hero-lavacao::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
    z-index: 1;
}

/* Espaçamento maior */
#hero-lavacao .container {
    padding-left: 100px;
    padding-right: 100px;
}

#hero-lavacao .title {
    font-weight: 700;
    font-size: 3.5rem;
    background: linear-gradient(90deg, #f5c000, #ffdd57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

#hero-lavacao .subtitle {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 200;
    margin: 20px 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(47, 221, 38, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 20px rgba(47, 221, 38, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(47, 221, 38, 0.4);
    }
}

@keyframes shimmer-he {
    0% {
        left: -75%;
    }

    50% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

#hero-lavacao .btn-yellow {
    position: relative;
    /* Necessário para o ::before */
    overflow: hidden;
    /* Garante que o efeito fique DENTRO do botão */
    background: linear-gradient(90deg, #2fdd26, #a8eb12);
    color: #000;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    animation: pulse 2.5s infinite ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

#hero-lavacao .btn-yellow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    animation: shimmer-he 2.5s infinite;
    z-index: 0;
    /* Mantém efeito atrás do texto */
}


#hero-lavacao .btn-yellow:hover {
    background-color: #28c622;
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: scale(1.03);
}

#hero-lavacao .text-wrapper {
    max-width: 500px;
    z-index: 2;
}

.image-bg-expert {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.image-bg-expert img {
    max-height: 730px !important;
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 80px rgba(255, 215, 0, 0.3));
    mix-blend-mode: lighten;
    display: block;
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

/* MOBILE */
/* MOBILE */
@media (max-width: 768px) {
    #hero-lavacao {
        background-image:
            linear-gradient(to bottom, rgba(0, 0, 0, 0) 85%, #000 100%),
            url('../assets/img/background-mobile.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;


        text-align: center;
        min-height: 85vh;
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
        display: flex;
        padding-bottom: 20px;
    }

    #hero-lavacao::after {
        content: none !important;
    }

    #hero-lavacao .container {
        padding: 20px;
    }

    .image-bg-expert {
        position: static;
        text-align: center;
        z-index: 2;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .image-bg-expert img {
        max-width: 500px;
        height: auto;
        display: block;
        margin: 0 auto;
        /* Degradê de preto (embaixo) para transparente (em cima) */
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);

        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }

    #hero-lavacao .title {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 0px;
        /* REDUZIDA */
    }

    #hero-lavacao .subtitle {
        text-align: center;
        font-size: 1.05rem;
        margin-bottom: 10px;
        /* LEVEMENTE AJUSTADA */
    }

    #hero-lavacao .btn-yellow {
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    #hero-lavacao .text-start {
        text-align: center !important;
    }

    /* #hero-lavacao .text-start p {
        font-weight: 200 !important;
    } */

    #hero-lavacao .text-wrapper {
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }
}

/* SESSION ESTRATEGIA ================================================================================================================ */

#estrategia-lavacao {
    position: relative;
    background-image:
        linear-gradient(to top, rgba(0, 0, 0, 0) 50%, #000 95%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, #000 100%),
        url('../assets/img/background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 70px 20px 90px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

#estrategia-lavacao .container {
    max-width: 700px;
    margin: 0 auto;
}

.card-amarela {
    background: linear-gradient(180deg, #ffc400 0%, #ffb300 100%);
    color: #000;
    border-radius: 12px;
    padding: 18px 24px;
    /* leve ajuste de padding */
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card-amarela h2 {
    font-size: 1.95rem;
    /* estava um pouco grande */
    font-weight: 500;
    /* peso regular para o título */
    line-height: 1.4;
    margin: 0;
    margin: 0;
}

.card-amarela .bold {
    font-weight: 900;
    color: #000;
}

.card-amarela .sub {
    font-size: 0.92rem;
    color: #444;
    font-weight: 400;
    margin-top: 10px;
    line-height: 1.4;
}

.destaque {
    font-size: 1.25rem;
    font-weight: 250;
    margin: 25px 0 15px;
}

.bold-amarelo {
    background: linear-gradient(90deg, #ffe259, #fcdc3a, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.descricao {
    font-size: 1rem;
    /* line-height: 1.6; */
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 30px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(47, 221, 38, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 20px rgba(47, 221, 38, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(47, 221, 38, 0.4);
    }
}

@keyframes shimmer-he {
    0% {
        left: -75%;
    }

    50% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

.btn-yellow {
    position: relative;
    /* Para o ::before */
    overflow: hidden;
    /* Garante que o efeito não ultrapasse */
    background: linear-gradient(90deg, #2fdd26, #a8eb12);
    color: #000;
    font-weight: 700;
    padding: 16px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(50, 255, 50, 0.4);
    animation: pulse 2.5s infinite ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    z-index: 1;
}

.btn-yellow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    animation: shimmer-he 2.5s infinite;
    z-index: 0;
}

.btn-yellow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(50, 255, 50, 0.6);
}


@media (max-width: 768px) {
    #estrategia-lavacao {
        background-image:
            linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #000 100%),
            linear-gradient(to bottom, rgba(0, 0, 0, 0) 90%, #000 100%),
            url('../assets/img/background-mobile.png');
        padding: 0px 15px 70px;
    }

    .card-amarela {
        padding: 18px 20px;
    }

    .card-amarela h2 {
        font-size: 1.2rem;
    }

    .card-amarela .sub {
        font-size: 0.95rem;
    }

    .destaque {
        font-size: 1.1rem;
    }

    .descricao {
        font-size: 0.95rem;
    }

    .btn-yellow {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .transicao {
        /* margin: 40px 0 -20px; */
        font-size: 1rem !important;
    }
}

.transicao {
    /* margin: 40px 0 -20px; */
    font-size: 2rem;
    color: #ccc;
    font-weight: 400;
    text-align: center;
}

body {
    font-family: 'Sora', sans-serif;
}

/* SESSION MENTORES ================================================================================================================ */

#mentores {
    background-image:
        linear-gradient(to top, rgba(0, 0, 0, 0) 30%, #000 95%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, #000 98%),
        url('../assets/img/background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 150px 20px;
    color: #fff;
}

.container-mentores {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.conteudo-mentores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.conteudo-mentores .texto {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    text-align: left;
}

.conteudo-mentores .texto h3 {
    font-size: 1.4rem;
    /* font-weight: 600; */
    line-height: 1.3;
    margin-bottom: 15px;
}

.conteudo-mentores .texto .destaque {
    color: #ffdc3a;
    font-weight: 900;
    font-size: 1.3rem;
}

.conteudo-mentores .texto p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}

.conteudo-mentores .imagem {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
}

.conteudo-mentores .imagem img {
    width: 115%;
    border-radius: 12px;
    display: block;
}

/* MOBILE: aplica background mobile */
@media (max-width: 768px) {
    #mentores {
        background-image:
            linear-gradient(to top, rgba(0, 0, 0, 0) 80%, #000 100%),
            linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #000 100%),
            url('../assets/img/background-mobile.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        padding: 0px 15px;
    }

    .conteudo-mentores .imagem img {
        width: 100%;
    }

    .conteudo-mentores .texto {
        text-align: center;
    }

    .conteudo-mentores .texto h3 {
        font-size: 1.5rem;
    }

    .conteudo-mentores .texto p {
        font-size: 0.95rem;
    }

    .conteudo-mentores {
        gap: 25px;
    }
}

/* SESSION PROVAS SOCIAIS ================================================================================================================ */
#prova-social {
    background-image:
        linear-gradient(to top, rgba(0, 0, 0, 0) 65%, #000 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 85%, #000 100%),
        url('../assets/img/background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prova-titulo {
    font-size: 1.6rem;
    font-weight: 100 !important;
    margin-bottom: 30px;
}

.prova-titulo .destaque {
    color: #ffdc3a;
    font-size: 1.9rem;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 33.3333%;
    padding: 0 5px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.carousel-arrow {
    background: transparent;
    border: 2px solid #ffdc3a;
    color: #ffdc3a;
    font-size: 1.5rem;
    padding: 5px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.carousel-arrow:hover {
    background: #ffdc3a;
    color: #000;
}

@media (max-width: 768px) {
    #prova-social {
        background-image:
            linear-gradient(to top, rgba(0, 0, 0, 0) 80%, #000 100%),
            linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #000 100%),
            url('../assets/img/background-mobile.png');
        padding: 60px 15px;
    }

    .prova-titulo {
        font-size: 1.3rem;
    }

    .carousel-slide {
        flex: 0 0 100%;
        padding: 0 5px;
    }

    @media (min-width: 480px) and (max-width: 768px) {
        .carousel-slide {
            flex: 0 0 50%;
        }
    }
}

/* SESSION INVESTIMENTO ================================================================================================================ */

#investimento {
    position: relative;
    padding: 15px 0px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to top, rgba(0, 0, 0, 0) 65%, #000 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 85%, #000 100%),
        url('../assets/img/background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.container-transicao {
    max-width: 720px;
    margin: 0 auto 40px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.container-transicao h2 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.container-transicao p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.gradiente-amarelo {
    background: linear-gradient(90deg, #ffe259, #fcdc3a, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.titulo-investimento {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.card-investimento {
    background: linear-gradient(to bottom, #000 0%, #2b1b06 80%, #5e3b00 100%);
    border-radius: 30px;
    padding: 40px 0;
    box-shadow: 0 0 30px rgb(255 218 0);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 30px auto;
}

.lista-ancoragem ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px;
    max-width: 410px;
    text-align: left;
    font-size: 0.87rem;
}

.lista-ancoragem ul li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 4px;
    font-size: 0.95rem;
    color: #fff;
}

.lista-ancoragem ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #adff2f;
}

.lista-ancoragem ul li span {
    max-width: 70%;
}

.lista-ancoragem ul li strong {
    text-decoration: line-through;
    color: #ff4e4e;
    font-weight: 500;
}

.preco-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    line-height: 1;
    flex-wrap: wrap;
}

.moeda {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.valor-grande {
    font-size: 4.8rem;
    font-weight: bold;
    color: #ffdc3a;
    line-height: 1;
}

.avista-inline {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.btn-comprar {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(90deg, #ffd700, #ffa500);
    color: #000;
    font-weight: 800;
    padding: 14px 15px;
    border-radius: 12px;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
    animation: pulse-scale 2s infinite;
}

.btn-comprar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    animation: shimmer 2.5s infinite;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        left: -75%;
    }

    50% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

@keyframes pulse-scale {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    }
}

.btn-comprar:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #ffa500, #ffd700);
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(50, 255, 50, 0.6);
    color: #000;
}

@media (max-width: 768px) {
    .bg-wrapper {

        background-image:
            linear-gradient(to top, rgba(0, 0, 0, 0) 65%, #000 100%),
            linear-gradient(to bottom, rgba(0, 0, 0, 0) 85%, #000 100%),
            url('../assets/img/background-mobile.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        z-index: 0;
        pointer-events: none;
    }

    .card-investimento {
        padding: 30px 15px;
        border-radius: 24px;
        margin: 25px auto;
        margin-inline: 15px;
        width: auto;
        max-width: 360px;
        /* Diminuímos a largura máxima */
        margin: 0 auto 30px;
        /* Centraliza e dá espaço inferior */
        padding: 30px 20px;

    }

    .lista-ancoragem ul {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .lista-ancoragem ul li {
        font-size: 0.88rem;
        padding-left: 22px;
    }

    .lista-ancoragem ul li span {
        max-width: 65%;
    }

    .valor-grande {
        font-size: 4.8rem;
    }

    .moeda {
        font-size: 1.2rem;
    }

    .avista-inline {
        font-size: 1.15rem;
        font-weight: 100;
    }

    .btn-comprar {
        padding: 12px 20px;
        font-size: 0.95rem;
        margin-top: 16px;
        border-radius: 10px;
    }

    .container-transicao h2 {
        font-size: 1.4rem;
    }

    .container-transicao p {
        font-size: 0.95rem;
    }

    .titulo-investimento {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

.riscado {
    color: #ff4e4e;
    text-decoration: line-through;
    font-weight: 500;
}

/* SESSION GARANTIA ================================================================================================================ */

#garantia {
    background-image:
        linear-gradient(to top, rgba(0, 0, 0, 0) 45%, #000 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 85%, #000 100%),
        url('../assets/img/background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.garantia-container {
    max-width: 700px;
    margin: 0 auto;
}

.garantia-container h2 {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.garantia-container h2 span {
    color: #ffdc3a;
}

.garantia-selo {
    width: 160px;
    margin: 0 auto 30px;
}

.garantia-container p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #garantia {
        background-image:
            linear-gradient(to top, rgba(0, 0, 0, 0) 85%, #000 100%),
            linear-gradient(to bottom, rgba(0, 0, 0, 0) 100%, #000 100%),
            url('../assets/img/background-mobile.png');
    }

}

/* FOOTER ================================================================================================================ */

.footer-custom {
    background: linear-gradient(to top, #000, #111);
    color: #fff;
    padding: 40px 0;
    font-size: 0.95rem;
}

.footer-custom .brand-yellow {
    color: #ffdc3a;
    font-weight: 600;
}

.footer-custom .btn-social {
    background-color: #222;
    border-radius: 50%;
    color: #fff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.footer-custom .btn-social:hover {
    background-color: #ffdc3a;
    color: #000;
}

.footer-custom .footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-custom .footer-link:hover {
    color: #ffdc3a;
}

.footer-custom p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}


html,
body,
* {
    font-family: 'Sora', sans-serif !important;
}