@import url(./var.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins" !important;
    outline: none;
    scroll-behavior: smooth;
}

.justInMobile {
    display: none;
}

.ctaDefaultButton {
    z-index: 22;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset !important; */
    box-shadow: rgb(255, 255, 255) 0px 50px 100px -20px, #ffffff 0px 30px 60px -30px, rgba(250, 253, 255, 0.952) 0px -2px 6px 0px inset !important;
    font-size: 0.8em !important;
    background-color: var(--cor-amarelo) !important;
}

.ctaDefaultButton span{
    color: var(--cor-azul) !important;
}

#topMarkBlackNovember {
    width: 100%;
    background-color: var(--cor-amarelo);
    text-align: center;
    padding: 20px 10px;
    position: sticky;
    top:0;
    z-index: 2222;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    font-size: 1.2em;
}

#topMarkBlackNovember:hover::after {
    display: block;
    opacity: 1;

    animation: abbrAppear .2s;
}

@keyframes abbrAppear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


#topMarkBlackNovember:hover {
    background-color: var(--cor-amarelo);
    transition: all .1s;
}

#topMarkBlackNovember h1 {
    color: white;
    font-size: 1em !important;
    font-weight: 300;
}

#topMarkBlackNovember span {
    font-weight: 700;
    animation: textNeonEffect .5s alternate ease-in-out infinite;
}

/* #topMarkBlackNovember::after {
    content: 'Aproveite os descontos e benefícios EXCLUSIVOS da BLACK NOVEMBER';
    position: absolute;
    right: 0;
    left: 50%;
    transform: translateY(20px) translateX(-50%);
    font-size: 0.8em;
    background: rgb(129, 129, 129);
    color: white;
    font-weight: 300;
    font-family: 'Poppins';
    padding: 10px !important;
    width: clamp(200px, 60vw, 300px);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    opacity: 0;

    display: none;
} */

@keyframes textNeonEffect {
    0% {
        text-shadow: rgb(255, 255, 255) 0 0 7px;
    }

    100% {
        text-shadow: rgb(255, 255, 255) 0 0 14px;
    }
}

#waButton {
    width: 70px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
    z-index: 2222;

    display: none;
}

p {
    font-weight: 400 !important;
    color: var(--cor-escuro);
}

span {
    display: inline-block !important;
    text-transform: uppercase;
}

#sabe {
    display: none;
}

::selection {
    background-color: var(--cor-laranja);
    color: var(--cor-claro);
}

img::selection,
video::selection,
iframe::selection,
summary {
    background-color: rgba(0, 0, 255, 0);
}


body {
    background: linear-gradient(44.15deg, rgba(21, 129, 191, 0.89) 0%, rgba(0, 137, 153, 0.7) 100%);
    background-size: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 490px 0px inset;
}

body::-webkit-scrollbar {
    width: 12px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: var(--cor-azul);
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--cor-amarelo);
    border-radius: 20px;
}

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







main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/*Home*/

.home {
    width: 100%;
    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;
    gap: 20px;
    padding-top: 20px;

    max-width: 960px;
}

.home div {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.home img {
    width: 230px;
}

.home h1 {
    color: var(--cor-claro);
    font-size: 1.8em;
    text-align: left;
    line-height: 50px;
    width: 50%;
}

.home h1 span {
    background-color: var(--cor-amarelo);
    color: var(--cor-azul);
    border-radius: 5px;
    padding: 0 7px;
    text-transform: capitalize;
}


.home .snippet{
    max-width: 90%;
}

.snippet {
    position: relative;
    width: clamp(280px, 90%, 900px);
    aspect-ratio: 16/9;
    background-color: var(--cor-azul);
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid var(--cor-amarelo);
}

.snippet .player,
.home iframe {
    position: relative;
    inset: 0;
    height: 0;
    max-height: 100%;
    max-width: 100%;
    min-height: 100%;
    min-width: 100%;
    width: 0;
    background-color: inherit;
}

.snippet .player {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.snippet img {
    position: absolute;
    width: 100% !important;
    height: 100%;
    aspect-ratio: 16/9;
    inset: 0;
}

.snippet svg {
    width: clamp(50px, 20%, 140px);
    line-height: 0;
    z-index: 1;
    padding: 3px;
    border-radius: 50%;
    background-color: var(--cor-amarelo);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;

    animation: svgAnimation .5s infinite alternate ease-in-out;
}

@keyframes svgAnimation{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.2);
    }
}

/* .home iframe {
    width: 900px;
    height: 514px;
    border: 5px solid var(--cor-amarelo);
    border-radius: 20px;
} */



.home a {
    padding: 20px 80px;
    /* background-color: var(--cor-amarelo); */
    background-color: var(--cor-amarelo);
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 200px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    font-weight: 700;

    transition: all 0.3s 0.2s;

}

.home a:hover {
    transform: scale(1.1);
    transition: all 0.3s;
}

.home a span {
    font-size: 1.6em;
    /* color: var(--cor-azul); */
    color: var(--cor-azul);
}

.home p {
    width: 80%;
    color: var(--cor-claro);
}



/*Sobre*/

.sobre {
    background-color: var(--cor-claro);
    padding: 30px 10px;
    width: 100%;
    margin-top: 35px;
}

.sobre .container {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.sobre p span {
    color: var(--cor-amarelo);
    background-color: var(--cor-azul);
    border-radius: 5px;
    padding: 0 5px;
    display: inline-block;
    text-transform: capitalize;
}

.sobre h1 {
    font-size: 2.2em;
    color: var(--cor-azul);
}

.metodo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    width: 100%;
}

.divImgMetodo img {
    width: 380px;
    margin-right: -40px;
}





.grazi {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.divImgGrazi{
    width: 100%;
}

.divImgGrazi img {
    width: 100%;
    border: 4px solid var(--cor-amarelo);
    border-radius: 20px;
}

/*Para quem é esse método*/

.paraQuem {
    /* background: linear-gradient(44.15deg, rgba(21, 129, 191, 0.7) 0%, rgba(0, 138, 153, 0.7) 100%), url(imagens/wallpaper.jpg) no-repeat; */
    background-size: cover;
    width: 100%;
}

.paraQuem .container {
    padding: 50px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 45px;
    max-width: 1200px;
}

.paraQuem h1 {
    font-size: 2.2em;
    color: var(--cor-claro);
}

.paraQuem .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 65px;
    width: 100%;
}

.paraQuem .identifier-card {
    display: flex;
    flex-direction: column !important;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 200px 200px -70px, rgba(0, 0, 0, 0.3) 0px 70px 90px -50px, rgba(10, 37, 64, 0.35) 0px -5px 20px 0px inset;
    padding: 20px;

    transition: all .8s;
}

.identifier-card div {
    display: flex;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.paraQuem .identifier-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 7px solid var(--cor-claro);
    border-radius: 10px;
}

.paraQuem .identifier-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    color: var(--cor-claro);
}

.paraQuem .identifier-card h3 span {
    text-transform: uppercase;
    color: var(--cor-amarelo);
}

.paraQuem a {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px 80px;
    background-color: var(--cor-amarelo);
    text-decoration: none;
    border-radius: 200px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;

    transition: all 0.3s 0.2s;

}

.paraQuem a:hover {
    transform: scale(1.1);
    transition: all 0.3s;
}

.paraQuem a span {
    font-size: 1.6em;
    color: var(--cor-azul);
}




/*Benefícios*/
.beneficios {
    background-color: var(--cor-claro);
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 0 90px 0;

    align-items: center;
    text-align: center;
}

.beneficios h1 {
    width: 80%;
    color: var(--cor-azul);
    font-size: 2.2em;
    margin: 40px 0;
}

.beneficios h1 span {
    background-color: var(--cor-azul);
    color: var(--cor-amarelo);
    padding: 0 10px;
    border-radius: 8px;
}

.corpo-beneficios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1180px;
}

.texto-beneficios {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    gap: 60px;
    color: var(--cor-escuro);
}

.texto-beneficios div {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.texto-beneficios div p span{
    font-weight: 900;
}

.texto-beneficios img {
    width: 50px;
}


.img-beneficios img {
    width: 500px;
    max-width: 100%;
}

.estruturaCurso {
    background-color: var(--cor-claro);
    width: 100%;
    padding: 20px 20px 40px 20px;
}

.estruturaCurso .containerEC {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 50px;
}

.estruturaCurso h1 {
    font-size: 2em;
    color: var(--cor-azul);
}

.modulosEC {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
    text-align: left;
}

.modulosEC details {
    background-color: var(--cor-azul);
    border-radius: 6px;
}

.modulosEC summary {
    font-size: 1.15em;
    font-weight: 600;
    color: white;
    cursor: pointer;
    padding: 14px 20px;
}

.modulosEC details:hover summary {
    color: var(--cor-amarelo);
}

.modulosEC details[open] summary {
    color: var(--cor-amarelo);
    border-bottom: 1px solid rgb(255, 255, 255);
}

.modulosEC details p {
    color: rgb(237, 237, 237);
    padding: 14px 20px;

}



.bonusEC {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
    text-align: right;
}

.bonusEC h1 {
    color: var(--cor-amarelo);
}

.bonusEC ul {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

.bonusEC li {
    list-style: none;
    background-color: var(--cor-amarelo);
    color: var(--cor-azul);
    padding: 14px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    font-weight: 600;

    box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    cursor: pointer;
    transition: all .3s;
}

.bonusEC li:hover {
    transform: scale(1.05);
}

.depoimentos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 50px;
}

.depoimentos h1 {
    font-size: clamp(22px, 50vw, 35px);
    color: var(--cor-amarelo);
}

.depoimentos .interna {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 100px;
}

.depoimentos .interna .card {
    border-radius: 20px;
    background-color: var(--cor-amarelo);
    text-align: center;
    color: var(--cor-azul);
    padding: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.depoimentos .interna .card p {
    margin: 20px 0;
    color: var(--cor-azul);
    font-size: 1.2em;
}

.depoimentos .interna .snippet {
    aspect-ratio: 9/16;
    width: 100%;
    border-radius: inherit;
    border: none;
}

.depoimentos .interna .text {
    grid-column: span 2;
    width: 100%;
}

.depoimentos .interna .text a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: var(--cor-amarelo);
    text-decoration: none;
    border-radius: 200px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: all 0.3s 0.2s;
}

.depoimentos .interna .text a {
    font-size: 1.2em !important;
    color: var(--cor-azul);
    width: 100%;
    margin-top: 15px;
    transition: all .3s;
}

.depoimentos .interna .text p {
    color: white;
}

.depoimentos .interna .text a:hover {
    transform: scale(1.1);
}

.depoimentos video {
    position: absolute;
    inset: 0;
    width: 100%;
    aspect-ratio: 9/16;
}



.final {
    background-color: var(--cor-claro);
    width: 100%;
    padding: 30px 10px;
}

.final .container {
    display: grid;
    grid-template-columns: 60% 35%;
    justify-content: space-between;
    gap: 15px;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all .3s;
}

.faq details {
    background: var(--cor-azul);
    background: linear-gradient(38deg, var(--cor-azul) 8%, var(--cor-azul) 100%);
    /* cursor: pointer; */
    border-radius: 10px;
    color: white;
    box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.faq summary {
    font-size: 1.29em;
    font-weight: 700;
    background: var(--cor-azul);
    background: linear-gradient(38deg, var(--cor-azul) 8%, var(--cor-azul) 100%);
    padding: 20px;
    border-radius: 10px;
    transition: all .3s;
    cursor: pointer;
    box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.faq p {
    margin: 20px 20px 30px 20px;
    color: white;
}

.faq p a {
    background-color: var(--cor-azul);
    color: var(--cor-claro);
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: 700;
    text-decoration: none;
}



.cardContainer .card {
    border: 2px solid var(--cor-amarelo);
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    text-align: left !important;

    display: flex;
    flex-direction: column;

    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px; */
}

.text-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.card img {
    width: 100%;
}

.card h2 {
    font-size: 17px;
    color: var(--cor-amarelo);
    font-weight: 400;
    margin-bottom: -7px;
}

.card h2 span {
    text-decoration: line-through;
    font-size: 1.5em;
    font-weight: bold;
}

.card h1 {
    color: rgb(214, 0, 0);
    font-size: 2.5em !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 8px;
}

.card h1 span {
    font-size: 18px;
    font-weight: 400;
    margin: 10px 0 -14px 0;
}

.card hr {
    margin: 5px 0;
    border-color: var(--cor-azul);
    border-style: solid;
}

.card button {
    background-color: var(--cor-amarelo);
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    transition: all .2s;


    box-shadow: rgba(255, 255, 255, 0.25) 0px 50px 100px -20px, rgba(255, 255, 255, 0.3) 0px 30px 60px -30px, rgba(255, 255, 255, 0.35) 0px -2px 6px 0px inset;
}

.card button:hover {
    transform: scale(1.08);
}

footer {
    background-color: var(--cor-amarelo);
    color: var(--cor-azul);
    width: 100%;
    padding: 14px 0;
    display: flex;
    justify-content: center;
    align-items: center;

}




@media screen and (max-width: 1030px) {
    .home div {
        flex-direction: column;
    }

    .home img {
        margin-right: 0;
        margin-bottom: -5px;
    }

    .home h1 {
        text-align: center;
        width: 90%;
    }


    .corpo-beneficios {
        padding: 0 20px;
    }

    .divImgMetodo img {
        display: none;
    }

    .estruturaCurso .containerEC {
        display: grid;
        grid-template-columns: 100%;
        padding: 10px;
    }

    .bonusEC h1 {
        color: var(--cor-amarelo);
        text-align: center;
    }

    .bonusEC p {
        text-align: justify;
    }

}

@media screen and (max-width: 1000px) {

    .justInMobile {
        display: block;
    }

    .home div {
        flex-direction: column;
    }

    .home img {
        margin-right: 0;
        margin-bottom: -5px;
    }

    .home h1 {
        text-align: center;
        width: 90%;
    }

    .home p {
        width: 80%;
    }



    .corpo-beneficios {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 50px;
    }

    .texto-beneficios div {
        justify-content: normal;
    }

    .img-beneficios {
        display: none;
    }



}

@media screen and (max-width: 830px) {
    h1 {
        font-size: 1.5em !important;
        text-align: center;
    }

    .home h1 {
        font-size: 1.2em;
        line-height: 35px;
        width: 90%;
        color: var(--cor-claro);
    }

    .home img {
        width: 129px;
        margin-bottom: 12px;
    }

    .home a {
        font-size: 0.8em;
        padding: 20px 40px;
    }

    .home p {
        font-size: 0.8em;
    }






    .beneficios h1 {
        font-size: 1.6em;
        width: 90%;
    }

    .beneficios p {
        font-size: 0.9em;
    }

    .bonusEC p {
        text-align: left;
    }





    .sobre {
        padding: 30px 10px 10px 10px;
    }

    .sobre .container {
        gap: 35px;
        max-width: 85vw;
    }

    .sobre p {
        text-align: justify !important;
        font-size: 1em;
        line-height: 180%;
    }

    .sobre h1 {
        text-align: center;
        font-size: 1.5em;
        margin-bottom: 7px;
    }

    .grazi {
        flex-direction: column-reverse;
        gap: 20px;
    }


    .paraQuem {
        text-align: center;
    }

    .paraQuem .cards {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }


    .paraQuem a {
        width: 95%;
        padding: 20px 17px;
        font-size: 0.8em;
    }


    .final .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 45px;
    }


    .depoimentos .interna {
        gap: 30px;
    }

    .depoimentos .interna .text {
        grid-column: span 1;
        width: 100%;
        text-align: center;
    }

}


@media screen and (max-width: 500px) {

    #sabe {
        display: block !important;
    }


    .home a {
        padding: 20px 17px;
        font-size: 0.65em;
    }



    .beneficios h1 {
        font-size: 1.4em;
    }

    .beneficios p {
        font-size: 0.9em;
    }



}