﻿/* Style padrão do modal dos vídeos */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    color: #045127;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 1080px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.modal-header {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: red;
    background: none;
    border: none;
}

    .modal-close:hover {
        color: darkred;
    }

.modal-body .Titulo {
    text-align: center;
    width: 100%;
}

video {
    width: 100%;
    border-radius: 8px;
}

.video-details {
    margin-top: 10px;
    font-size: 14px;
    color: black;
}

.modal-label {
    display: block;
    margin-top: 5px;
}

.hoverTutorial:hover {
    transform: scale(1.1);
    cursor: pointer;
}




/*Estilos para o passo a passo dos vídeos*/
.PassoPassoSub {
    text-align: left;
    color: #48A638;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    padding-bottom: 4px;
}

/* parte de dentro do card (cinza)*/
#passoApasso {
    background-color: rgb(223, 223, 223);
    border-radius: 20px;
    padding: 24px;
    padding-top: 1px;
    width: 1040px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: black;
    font-style: unset;
}

.img01 img,
.img02 img,
.img03 img,
.img04 img {
    width: 100%;
    max-width: 750px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 20px auto 0 auto;
    justify-content: center;
}

.clearfix {
    clear: both;
}

.info {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

/* Nova classe para texto ao lado da imagem */
.img-text-row {
    display: flex; /* Faz a div ser um flex container */
    align-items: flex-start; /* Alinha o texto e a imagem ao topo */
    gap: 20px; /* Espaço entre texto e imagem */
    margin-bottom: 32px; /* Espaço abaixo da linha para separar dos próximos elementos */
}

    .img-text-row p {
        flex: 1; /* Faz o texto ocupar todo o espaço disponível*/
        font-size: 16px;
        line-height: 1.6;
        color: black;
        margin: 0; /* Remove margens padrão do parágrafo para não atrapalhar o alinhamento */
    }

    .img-text-row img {
        max-width: 450px;
        height: auto;
        flex-shrink: 0; /* Impede a imagem de encolher */
        border-radius: 10px;
        display: block; /* Remove espaçamento extra ao redor da imagem */
    }

ul {
    margin-left: 0;
    padding-left: 0;
    list-style-position: inside;
}
