html, body {
    font-family: 'Open Sans', sans-serif;
    height: 100%;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    padding-top: 56px;
}

.footer {
    background-color: #000;
    color: #FFF;
    padding: 20px;
    text-align: center;
}

.overlay {
    position: relative;
}

.overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Sobreposição preta com 50% de transparência */
    z-index: 1;
}

.course-info, .course-info-2 {
    background-size: cover; /* A imagem cobre toda a área da seção */
    background-position: center; /* A imagem é centralizada */
    background-attachment: fixed; /* A imagem de fundo fica fixa durante a rolagem */
    background-repeat: no-repeat; /* A imagem não se repete */
    color: white; /* Texto branco para contrastar com a imagem de fundo */
    padding: 4rem 2rem; /* Aumentando o padding para melhor visualização do conteúdo */
}

/* Exemplo de configuração para dispositivos móveis */
@media (max-width: 768px) {
    .course-info, .course-info-2 {
        background-attachment: scroll; /* Para dispositivos móveis, o fundo rola com o conteúdo */
        padding: 2rem 1rem; /* Reduzindo o padding para melhor visualização em telas menores */
    }
}

.section-container {
    background-color: #000;
}

section {
    padding: 2rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Remove a sublinha */
  }
  .whatsapp-button:hover {
    background-color: #20c057;
  }
  .whatsapp-icon {
    font-size: 30px;
  }