body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

/* CabeÃ§alho */
header {
    background-color: #8B0000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.botoes-container {
    display: flex;
    justify-content: center;
}

.botao {
    background-color: #fff;
    color: #8B0000;
    padding: 12px 24px;
    border: 2px solid #8B0000;
    border-radius: 10px;
    margin: 10px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.botao:hover {
    background-color: #8B0000;
    color: #fff;
}

.progress-bar-container {
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-dot {
    width: 5px;
    height: 5px;
    background-color: #ccc; /* Cinza */
    border-radius: 50%;
    margin: 0 2px;
    cursor: pointer;
}

.progress-dot.active {
    background-color: #8b0000; /* Vermelho */
}

a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Corpo */
.corpo-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.imagem-link {
    display: block;
    margin-bottom: 20px;
    text-align: center;
    color: #8b0000;
    text-decoration: none;
}

.imagem-link img {
    max-width: 200px;
    max-height: 200px;
    border: 2px solid #8b0000;
    border-radius: 10px;
}

/* Laterais */
.lateral {
    flex: 1;
    text-align: center;
    padding: 50px;
}

.lateral img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 10%;
    margin-bottom: 5px;
}

/* RodapÃŠ */
footer {
    background-color: #8b0000;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.rede-social img {
    max-width: 30px;
    max-height: 30px;
    margin: 10px;
}

.secao-titulo {
    background-color: #8b0000;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 35px;
    letter-spacing: 2px;
}

.content {
    text-align: center;
    margin-bottom: 20px;
}