 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #d4c1f3;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

h1 {
    color: #5a3ea0;
    text-align: center;
    margin-bottom: 20px;
}

nav a:hover {
    color: #5a3ea0;
}

/* Seções do conteúdo */
main {
    padding: 40px;
    background-color: white;
}

.detalhes-curso, .curso-info, .profissional-info {
    background-color: #f5f5ff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #5a3ea0;
    margin-bottom: 20px;
}

p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content {
    display: flex;
    justify-content: space-between;
}

.content p {
    width: 48%;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .content p {
        width: 100%;
    }
}

 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #d4c1f3;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #5a3ea0;
}

/* Seção do conteúdo */
main {
    padding: 100px;
}

.content {
    display: flex;
    align-items: flex-start; /* Alinha o conteúdo da imagem e texto no topo */
    gap: 20px; /* Espaço entre a imagem e o texto */
}

.curso-info {
    background-color: #f5f5ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #5a3ea0;
    margin-bottom: 20px;
}

p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.curso-info {
    background-color: #f5f5ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1; /* Permite que o texto ocupe mais espaço */
}

h2 {
    color: #5a3ea0;
    margin-bottom: 20px;
}

p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Estilo da imagem */
.image-container {
    flex-shrink: 0; /* Impede que a imagem seja redimensionada */
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagem {
    width: 400px; /* Aumenta o tamanho da imagem */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve ao redor da imagem */
    border: 5px solid #d4c1f3;
}

/* Responsividade */
@media (max-width: 768px) {
    .content {
        flex-direction: column; /* Empilha a imagem abaixo do texto em telas pequenas */
        align-items: center;
    }

    .imagem {
        width: 300px; /* Tamanho ajustado para telas menores */
    }
}

h1 {
    color: #5a3ea0;
    margin-bottom: 20px;
}

h1 {
    text-align: center;
    color: #6A5ACD; /* Cor roxa */
}