/* Definição geral */
body {
    background-color: #f5f5f5;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Estilo para os títulos */
h1, h2 {
    margin: 20px 0;
    font-weight: bold;
}

h1 {
    font-size: 3.5em;
}

h2 {
    font-size: 2em;
}

/* Contêiner responsivo para o iframe */
.Responsive-iframe-container {
    position: relative;
    width: 100%; /* O contêiner ocupa toda a largura disponível */
    padding-top: 56.25%; /* Proporção 16:9 (altura/largura) */
    overflow: hidden;
}

.Responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Remove borda, se houver */
}

/* Estilo para as seções */
.Primeira-Parte, .Segunda-Parte {
    width: 90%;
    max-width: 1200px;
    margin: 10px auto;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.74);
}

/* Tornando a imagem responsiva */
.Segunda-Parte img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px; /* Opcional: adiciona bordas arredondadas */
}

/* Parágrafos */
.Detalhes-Paragrafo, .Detalhes-paragrafo2, .Explicacao-ParagrafoExplicação, .Finalizacao-Paragrafo {
    margin: 10px 0;
    line-height: 1.6;
    text-align: justify;
}

/* Lista */
.Lista-paragrafo {
    list-style: none;
    padding: 0;
    text-align: left;
}

/* Personalização de cada item */
.Lista-item::before {
    content: '■'; /* Substitui os pontos padrão */
    font-size: 2em; /* Tamanho do ponto */
    vertical-align: auto;
    margin-right: 5px;
}

/* Ajustar cor dos pontos individualmente */
.Lista-item:nth-child(1)::before {
    color: #6B32D9; 
} 

.Lista-item:nth-child(2)::before {
    color: #30B1FE;
} 

.Lista-item:nth-child(3)::before {
    color: #25D498;
} 

.Lista-item:nth-child(4)::before {
    color: #FF8248;
}  
.Lista-item:nth-child(5)::before {
    color: #FC4B7C;
}  


/* Regras responsivas */
@media (max-width: 1200px) {
    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 1.8em;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .Primeira-Parte, .Segunda-Parte {
        padding: 15px;
    }
}

@media (max-width: 768px) { /* Tablets */
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.6em;
    }

    .Primeira-Parte, .Segunda-Parte {
        padding: 10px;
    }
    .Segunda-Parte img {
        max-width: 90%;
    }
}

@media (max-width: 480px) { /* Smartphones */
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.4em;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .Detalhes-Paragrafo, .Detalhes-paragrafo2, .Explicacao-ParagrafoFiltro, .Finalizacao-Paragrafo {
        font-size: 0.9em;
        text-align: justify;
    }

    .Primeira-Parte, .Segunda-Parte {
        padding: 10px;
        width: 95%;
    }
    .Segunda-Parte img {
        max-width: 100%;
    }
}