.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: white;
    border-radius: var(--radius);
    margin-bottom: 40px;
}

.hero h1 { font-size: 2.5rem; margin-bottom: 12px; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 8px; }
.hero-desc { font-size: 1rem; opacity: 0.8; max-width: 600px; margin: 0 auto 30px; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-primary { background: var(--accent); color: var(--primary-dark); }
.hero-actions .btn-primary:hover { background: var(--accent-light); }
.hero-actions .btn-secondary { background: rgba(255, 255, 255, 0.2); color: white; border: 2px solid rgba(255, 255, 255, 0.4); }
.hero-actions .btn-secondary:hover { background: rgba(255, 255, 255, 0.3); }

.stats-section { text-align: center; margin-bottom: 40px; }
.stats-section h2 { margin-bottom: 20px; color: var(--primary); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}

.stat-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card-success { border-bottom: 4px solid var(--success); }
.stat-number { display: block; font-size: 2.2rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.stat-label { display: block; color: var(--text-light); font-size: 0.9rem; margin-top: 4px; }

.how-it-works { text-align: center; }
.how-it-works h2 { margin-bottom: 24px; color: var(--primary); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.step-card h3 { margin-bottom: 8px; color: var(--primary); }
.step-card p { font-size: 0.9rem; color: var(--text-light); }

.auth-container { max-width: 500px; margin: 40px auto; text-align: center; }
.auth-container h1 { color: var(--primary); margin-bottom: 8px; }
.auth-subtitle { color: var(--text-light); margin-bottom: 24px; }
.auth-container .form-card { text-align: left; margin: 0 auto; }
.auth-link { margin-top: 16px; font-size: 0.95rem; }

.dashboard-greeting { font-size: 1.1rem; color: var(--text-light); margin-bottom: 24px; }
.dashboard-actions { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.dashboard-section { margin-bottom: 30px; }
.dashboard-section h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}

.section-desc { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }

.detail-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-header h1 { font-size: 1.5rem; color: white; }
.detail-header .card-status { font-size: 0.9rem; padding: 6px 16px; }

.detail-image { max-height: 400px; overflow: hidden; }
.detail-image img { width: 100%; height: 400px; object-fit: cover; }
.detail-body { padding: 30px; }

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.detail-info { font-size: 0.95rem; }
.detail-info strong {
    color: var(--text-light);
    font-weight: 500;
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.detail-description { margin-top: 16px; }
.detail-description h2 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }

.detail-actions {
    padding: 20px 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.resposta-admin {
    margin-top: 20px;
    padding: 16px;
    background: var(--info-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--info);
}

.section-correspondencias { margin-top: 30px; }
.section-correspondencias h2 { margin-bottom: 8px; color: var(--primary); }
.section-correspondencias p { color: var(--text-light); margin-bottom: 16px; }

.confirm-delete {
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.confirm-delete h1 { color: var(--danger); margin-bottom: 16px; }
.warning-text { color: var(--danger); font-weight: 600; margin: 12px 0 24px; }
.confirm-delete .form-actions { justify-content: center; }

.profile-info {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.danger-zone {
    margin-top: 30px;
    padding: 24px;
    background: var(--danger-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--danger);
}

.danger-zone h2 { color: var(--danger); margin-bottom: 8px; font-size: 1.1rem; }
.danger-zone p { margin-bottom: 16px; color: #922b21; font-size: 0.9rem; }

@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-header { padding: 20px; }
    .detail-body { padding: 20px; }
    .detail-actions { padding: 16px 20px; }
    .detail-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
}
