.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
    color: #eee;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.section-titulo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 40px 0 16px;
    color: #f0f0f0;
    font-size: 0.95em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.section-titulo i {
    color: #e91e63;
}

.section-titulo::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #e91e6344, transparent);
}

.section-titulo:first-child {
    margin-top: 8px;
}

/* CTA buttons (homepage) */
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-cta {
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95em;
    transition: opacity 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.btn-feminino { background: #e91e63; color: #fff; }
.btn-masculino { background: #8e24aa; color: #fff; }

@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-cta {
        justify-content: center;
    }
}
