/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Cabeçalho */
header {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    position: relative;
}

header h1 {
    color: #00bfff;
    margin: 0;
}

/* Banner */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 300px; /* Ajuste conforme necessário */
    background-color: #0B1A22;
    padding: 20px;
}

.banner img {
    width: 100%; /* Ajuste o tamanho das imagens */
    max-width: 693px; /* Ajuste o tamanho das imagens */
    height: auto;
    padding: 0px 100px 0px 100px;
}



/* Biografia */
.bio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    max-width: 80%;
    margin: 20px auto;
}

.bio-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
}

.bio-text {
    max-width: 60%;
}

/* Conteúdo Principal */
.content {
    display: flex;
    width: 80%;
    margin: 20px auto;
    gap: 20px;
}

.modules-list {
    width: 30%;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
}

.modules-list h3 {
    text-align: left;
    color: #00bfff;
}

.modules-list ul {
    list-style-type: none;
    padding: 0;
}

.modules-list li {
    background-color: #2a2a2a;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modules-list li:hover {
    background-color: #3a3a3a;
}

#module-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px; /* Define um limite para melhor visualização */
    margin: 0 auto; /* Centraliza horizontalmente */
    padding: 20px;
}

video {
    width: 100%; /* Faz o vídeo ocupar toda a largura do container */
    max-width: 500px; /* Define um tamanho máximo */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #0056b3;
}




/* Botão */
.button {
    padding: 10px 20px;
    background-color: #00bfff;
    color: #fff;
    border: none;
    cursor: pointer;
    margin: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    background-color: #009fdf;
}

/* Seção do Chatbot */
.chatbot-section {
    width: 80%;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
}

.columnleft {
    width: 40%;
}

.columnright {
    width: 60%;
}

iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
}

/* Efeito Parallax */
.parallax {
    background: url('parallax-image.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    height: 400px;
    position: relative;
}

.parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Rodapé */
footer {
    background-color: #1a1a1a;
    padding: 10px;
    text-align: center;
    color: #e0e0e0;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .bio {
        flex-direction: column;
        text-align: center;
    }

    .bio-text {
        max-width: 100%;
    }

    .content {
        flex-direction: column;
        width: 100%;
    }

    .modules-list,
    .module-details {
        width: 100%;
    }

    .chatbot-section {
        flex-direction: column;
    }

    .columnleft, .columnright {
        width: 100%;
    }
    .banner img {
        width: 100%; /* Ajuste o tamanho das imagens */
        max-width: 200px; /* Ajuste o tamanho das imagens */
        height: auto;
        padding: 0px 0px 0px 0px;
    }
    .banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100px; /* Ajuste conforme necessário */
        background-color: #0B1A22;
        padding: 0px;
    }
}
