@import url(./variables.css);

*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.textOrange {
    color: var(--orange);
}

.backgroundOrange {
    background-color: var(--orange) !important;
}

.padding {
    padding: 5rem 0;
}

.zIndex {
    z-index: 100;
}

.bgDark {
    height: 100%;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
}

.alignAbsoluteYItens {
    transform: translateY(-50%) !important;
}

.alignAbsoluteXItens {
    transform: translateX(-50%) !important;
}

.alignAbsoluteItems {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
}

.videoSection, .modules{
    background-image: url(../images/backgroundNietzche.png);
}

.videoSection > .container {
    padding: 3rem 0 !important;
}

.video {
    width: 60% !important;
}

.video video {
    box-shadow: 0 0 15px var(--orange);
}

.controlVideo {
    width: 40%;
    cursor: pointer;
    opacity: 0.8;
    border: 2px solid #fff;
}

.progBar {
    border-radius: 0 !important;
    width: 100%;
    bottom: 2%;
    transition: all 500ms ease;
}

.pause-resume {
    display: none;
    place-items: center;
    background-color: var(--orange);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    cursor: pointer;
}

.ctaButton,
.module,
.bonusItem {
    transition: all 500ms ease;
}

.ctaButton {
    display: block;
}

.ctaButton:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--orange);
}

.module:hover {
    transform: translateY(-1rem);
}

.ebookBrand {
    background-image: url(../images/backgroundTrain.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.ebookBrand .container > a,
.bonus .container > a {
    font-size: 1.3rem;
}

.bonusItem {
    box-shadow: 0 7px 15px #00000046;
}

.bonus .container > a {
    font-size: 1.3rem;
}

.offer .textContent h2{
    font-size: 6rem;
}

.darkBlueBg {
    background-color: var(--darkBlue);
}

.offer .image {
    border: 1px solid var(--orange);
}

.esconder {
    display: none !important;
}

@media(max-width: 600px) {
    .pause-resume {
        width: 75px;
        height: 75px;
    }

    .pause-resume img {
        width: 60%;
    }
}

@media (max-width: 360px) {
    .controlVideo {
        width: 70% !important;
        font-size: 1rem !important;
    }
}

@media(min-width: 600px) and  (max-width: 995px) {
    .bonus .container {
        display: flex;
        gap: 1rem;
    }

    .bonus .bonusItem {
        margin: 0 !important;
    }

    .offer img {
        width: 40% !important;
    }

    .offer .textContent p, .offer .textContent h2{
        margin-bottom: 1rem !important;
    }

    .paymentOptions img {
        width: 20% !important;
    }
    
    .paymentOptions svg {
        width: 15% !important;
    }
}

@media (max-width: 995px) {

    .videoSection .container,
    .ebookBrand .textContent ol,
    .bonusItem, 
    .offer .container,
    .warranty .container {
        flex-direction: column;
    }
    .videoSection .container {
        padding: 1rem 0.5rem !important;
    }

    .videoSection .video,
    .videoSection .textContent,
    .offer .image,
    .offer .textContent,
    .offer .textContent .paymentOptions,
    .warranty .image {
        width: 100% !important;
    }

    .videoSection .textContent .container{
        transform: none;
        top: 0 !important;
        padding-top: 0 !important;
    }

    .ebookBrand .title {
        width: 100% !important;
        padding: 0.7rem;
    }

    .ebookBrand .title h2 {
        font-size: 1.2rem;
    }

    .ebookBrand .image {
        width: 40% !important;
    }
    
    .modules .container {
        width: 90%;
    }

    .modules .container .row {
        flex-direction: column;
    }

    .bonus {
        padding-bottom: 2rem;
    } 

    .bonus .container {
        padding: 0 !important;
    }

    .bonus .container .title,
    .bonus .container .bonusItem {
        width: 85% !important;
    }

    .bonus .container .bonusItem .image,
    .bonus .container .bonusItem .textContent,
    .warranty .textContent {
        width: 100% !important;
        text-align: center;
    }

    .bonus .container .bonusItem svg {
        display: block;
        width: 50% !important;
        margin: 0 auto;
        margin-bottom: 2rem;
    }

    .bonus > a {
        width: 75% !important;
    }

    .offer .image,
    .warranty .image {
        margin-bottom: 1rem;
    }

    .offer .textContent h2 {
        font-size: 4rem;
    }

    .offer .countItem {
        padding: 2rem !important;
    }

    .controlVideo {
        width: 50%;
        font-size: 1rem !important;
    }

    .controlVideo svg {
        width: 25% !important;
    }

}

@media (min-width: 425px) and (max-width: 995px) {

   .offer .textContent .paymentOptions {
    width: 60% !important;
   }
}

