/* 
* Titulo das sessões
**/


div.title h2 {
    background-color: var(--main-color);
    padding: 15px 30px;
    text-align: center;
    color: var(--light-color);
    font-size: 1.4rem;

}

@media (max-width: 550px) {
    div.title h2 {
        font-size: 1.1rem;
    }

}

/* 
* Bloco de texto simples.
*/


div.div-content {
    display: flex;
    justify-content: center;
    padding: 40px 0px;
}

.pt-0 {
    padding-top: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

div.div-content div.div-simple-row {
    width: var(--content-width);
}




@media (max-width: 1200px) {

    div.div-content {
        padding: 30px 20px;
    }

}


@media (max-width: 350px) {

    div.div-content {
        padding: 30px 20px;
    }

}




/* 
* 2 Colunas 
* Imagem a esquerda e texto a direita.
*/

.div-content .div-row-image-text {
    width: var(--content-width);
    display: flex;
    align-items: center;
}

@media (max-width: 1000px) {

    /* div.div-content{
        padding:30px 20px;
    } */

    .div-content .div-row-image-text {
        /* background-color: purple; */
        flex-direction: column;
        justify-content: center;
    }

}


/* 
* 2 Colunas 
* Imagem a direita e texto a esquerda. 
! reverse
*/
.div-row-image-text-reverse {
    flex-direction: row-reverse;
}


/* 
* 1 coluna com imagem centralizada
 */

.div-image-full-width {
    display: flex;
    justify-content: center;
}

.div-image-full-width img {
    width: 100%;

}

@media (max-width: 1000px) {

    .div-image-full-width img {
        width: 80%;
    }
}



/* 
* Tabela full-width
*/




.div-content .div-table {
    /* background-color: palevioletred; */
}

table {
    border-collapse: collapse;
    /* Remove espaçamentos duplos entre bordas */
    width: 100%;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

table th,
table td {
    border: 1px solid #ddd;
    /* Borda de 1px em todas as células */
    padding: 12px 15px;
    /* Espaçamento interno para melhor visual */
    text-align: left;
}

table th {
    background-color: var(--main-color);
    /* Cor de fundo para cabeçalhos */
    color: white;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
    /* Cor de fundo alternada para linhas pares */
}

@media (max-width: 500px) {
    .tiny-mobile {
        font-size: 14px;
    }

    table th,
    table td {
        border: 1px solid #ddd;
        /* Borda de 1px em todas as células */
        padding: 8px 10px;
        /* Espaçamento interno para melhor visual */
        text-align: left;
    }
}

@media (max-width: 320px) {
    .div-table {
        overflow-x: auto;
        /* Permite rolagem horizontal */
    }

    .div-table table {
        min-width: 320px;
        /* Garante que a tabela mantenha sua largura mínima */
        width: 100%;
    }

    /* Opcional: ajuste de fonte ou padding para melhorar a visualização */
    .div-table table th,
    .div-table table td {
        padding: 8px;
        font-size: 12px;
    }
}


/* 
* PRÓS E CONTRAS
* PROS A ESQUERDA E CONTRAS A DIREITA
 */


.div-pros-cons {
    display: flex;
    justify-content: space-between;
}

.div-pros {
    margin-right: 40px;
}


/* Título Prós e Contras */
.div-pros-cons div p {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-family: Font_SemiBold;
}

.div-pros-cons .div-pros p {
    color: green;
    text-align: center;
}

.div-pros-cons .div-cons p {
    color: red;
    text-align: center;
}

.div-pros-cons ul {
    list-style: none;
    line-height: 2.5rem;
}

.div-pros-cons div ul li {
    /* color:red; */
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.div-pros-cons .div-pros ul li svg {
    margin-right: 10px;
    stroke: green;
}

.div-pros-cons .div-cons ul li svg {
    margin-right: 10px;
    fill: red !important;
}


@media (max-width: 1000px) {
    .div-pros-cons {
        flex-direction: column;
    }

    .div-pros {
        margin-bottom: 40px;
        margin-right: 0px;
    }

}

@media (max-width: 500px) {
    .div-pros-cons div ul li {
        font-size: 1.1rem;
    }

}


/* 
* Lista simples
*/

.div-simple-list ul {
    line-height: 2.5rem;
}

.div-simple-list ul li {
    display: flex;
    align-items: center;
    font-size: 1.2rem;

}

.div-simple-list ul li svg {
    margin-right: 10px;
    font-size: 20px;
    fill:var(--main-color);
}

@media (max-width: 1000px) {
    .div-simple-list ul li {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 500px) {

    .div-simple-list ul {
        line-height: 2rem;
    }

    .div-simple-list ul li {
        font-size: 1rem;
        margin-bottom: 20px;
    }

}



/* 
* LISTA SIMPLES E IMAGEM
*/
.div-row-image-list {
    display: flex;
}

@media (max-width: 1000px) {
    .div-row-image-list {
        flex-direction: column-reverse;
    }

    .div-row-image-list .div-img {
        text-align: center;
    }
}



/* 
* Lista de imagens NOT BUY
*/

.not-buy {
    display: flex;
    justify-content: space-evenly
}

.not-buy img {
    width: 180px;
}

@media (max-width: 1000px) {
    .not-buy img {
        width: 120px;
    }
}

@media (max-width: 500px) {
    .not-buy {
        /* flex-direction: column; */
        align-items: center;
    }

    .not-buy img {
        margin-top: 20px;
        width: 90px;
    }
}
@media (max-width: 320px) {
    .not-buy {
        flex-direction: column;
        align-items: center;
    }
    .not-buy img {
        width: 60%;
    }
}
















/* 
* Index do review
*/

#index-of-review li{
    /* color:red!important; */
    margin-left:20px;
}






/* 
* footer
*/

footer {
    border-top: 1px solid var(--main-color);
    width: 100%;
    padding: 30px;
    background-color: #ddd;
    text-align: justify;
    font-size: 0.8rem;
}