/* ==============================================================
   ESTILOS PARA PÁGINAS ESTÁTICAS (About, Privacy, Terms, Contact)
   ============================================================== */

.page-header {
    margin-top: 2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary, #0066cc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Base styles for section-card (light theme default) */
.section-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--card-bg, #ffffff) !important;
    color: var(--text-light, #1a1a1a) !important;
    border: 1px solid var(--border-color, #e9ecef) !important;
}

/* Force Light Theme Colors - Specifity overkill to win any conflict */
body.theme-light .section-card,
[data-theme="light"] .section-card,
body.theme-light section.section-card {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    border-color: #e9ecef !important;
}

/* Force Dark Theme Colors */
body.theme-dark .section-card,
[data-theme="dark"] .section-card,
body.theme-dark section.section-card {
    background-color: var(--card-bg) !important;
    color: var(--text-light) !important;
    border-color: var(--border-color) !important;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
