body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.bg-header {
    background: #2a1f5c ;
}

.bg-header .logo {
    max-width: 360px;
}

.bg-header p {
    font-size: 18px;
    color: #e5e7eb;
    max-width: 460px;
}

.bg-header a {
    margin-top: 48px;
    border: 1px solid #ffffff;
    font-size: 16px;
    letter-spacing: 0.04em;
}

.bg-header a:hover {
    background-color: #2a1f5c ;
    border-color: #2a1f5c ;
}

.atividade {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    background-color: #ffffff;
    text-align: center;
}

.atividades-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.atividade-icon {
    width: 64px;
    margin: 0 auto 16px auto;
    display: block;
}

.atividade .titulo {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.atividade-descricao {
    font-size: 15px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .bg-header p {
        font-size: 16px;
    }

    .atividades-container {
        flex-direction: column;
    }
}

[data-fade] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-fade].ativo {
    opacity: 1;
    transform: translateY(0);
}

.titulo-secao{
    text-transform: uppercase;
    color: #2a1f5c;
}

.modulo-card {
    background-color: #ffffff;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.modulo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: #2a1f5c ;
}

.modulo-item.active {
    border-color: #2a1f5c ;
    background-color: #ddddff;
    color: #544791;
    font-weight: 600;
}

.modulo-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.py-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .py-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }
}

.mobile-module-content {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}