/* 
* BARRA SUPERIOR DO SITE
* Nome do produto + CTA BUTTON
*/


div.top {
    background-color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 180px;
    flex-wrap: wrap;
    text-align: center;

    font-family: Font_Bold;
}

.product-title h1 {
    color: white;
    font-size: 1.4rem;
}

.cta-button a button {
    background-color: var(--highlight-color);
    padding: 5px 30px;
    font-size: 1.2rem;
    border:1px solid white;
}



@media (max-width: 1200px) {
    div.top {
        justify-content: center;
        flex-direction: column;
        /* background-color: palevioletred; */
        padding: 10px 60px;
    }

    .product-title h1 {
        margin-bottom: 20px;
    }

}

@media (max-width: 550px) {
    div.top {
        justify-content: center;
        /* background-color: red; */
    }

    .product-title h1 {
        margin-bottom: 20px;
    }

}

@media (max-width: 350px) {
    div.top {
        justify-content: center;
        /* background-color: orange; */
        padding: 10px 20px;
    }

    .product-title h1 {
        margin-bottom: 20px;
        font-size: 1rem;
    }

    .cta-button a button {
        font-size: 1rem;
    }

    .hide-mobile {
        display: none;
    }

}


/* 
* INTRODUÇÃO
* Textos a esquerda e video/imagem a direita
*/

.introduction {
    display: flex;
    justify-content: center;

}

.introduction-content {
    display: flex;
    width: var(--content-width);
    margin-top: 30px;
    margin-bottom: 30px;
}



.introduction-content .text-introduction {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin-right: 30px;
}

.introduction-content .text-introduction h2 {
    margin-bottom: 10px;
    font-family: Font_Bold;
    font-size: 1.7rem;
    color: var(--main-color);
}
.introduction-content .text-introduction p {
    /* margin-bottom: 10px; */
    font-size: 1.4rem;
    /* font-family: Font_SemiBold; */
    
}

.date-updated{
    color:red;
}


.introduction-content .video-introduction img {
    width: 200px;
    margin-left: 100px;
    margin-right: 100px;
}
.introduction-content .video-introduction video {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 450px;
}


@media (max-width: 1000px) {


    .introduction-content {
        flex-direction: column;
    }

    .introduction-content .text-introduction {
        margin:0 30px;
    }


    .introduction-content .text-introduction h2 {
        margin-bottom: 30px;
        font-family: Font_SemiBold;
        font-size: 1.2rem;
    }
    .introduction-content .text-introduction p {
        margin-bottom: 20px;
        font-size: 1.1rem;
        
    }

    .introduction-content .video-introduction{
        display: flex;
        justify-content: center;
    }

    .introduction-content .video-introduction img {
        width: 200px;
        margin-left: 50px;
        margin-right: 50px;
    }    
    
}

@media (max-width: 550px) {
    
    .introduction-content .video-introduction video {
        width: 350px;
    }
    .introduction-content .video-introduction img {
        width: 160px;
        margin-left: 50px;
        margin-right: 50px;
    }    
}


@media (max-width: 350px) {

    .introduction-content .video-introduction video {
        width: 80%;
    }

}


