/* ============================================================
   ASES Web — Home Page (Index) Styles
   Aligned with Gov.br Design System tokens
   ============================================================ */

.modern-container {
    width: 100%;
    margin: 0 auto;
    font-family: 'Rawline', 'Open Sans', sans-serif;
}

.modern-header {
    margin-bottom: 24px;
    color: var(--blue-warm-vivid-80, #0c326f);
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--gray-10, #e0e0e0);
    padding-bottom: 10px;
}

.modern-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.modern-tab-btn {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    background: var(--gray-2, #f8f8f8);
    border: 1px solid var(--gray-10, #e0e0e0);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-warm-vivid-70, #1351b4);
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Rawline', 'Open Sans', sans-serif;
}

.modern-tab-btn:hover {
    background: var(--blue-warm-20, #dfe8f6);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(19, 81, 180, 0.1);
}

.modern-tab-btn.active {
    background: var(--blue-warm-vivid-70, #1351b4);
    color: #fff;
    border-color: var(--blue-warm-vivid-70, #1351b4);
    box-shadow: 0 4px 12px rgba(19, 81, 180, 0.25);
}

.modern-tab-content {
    display: none;
    background: #fff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-10, #e0e0e0);
    animation: fadeIn 0.3s ease forwards;
}

.modern-tab-content.active {
    display: block;
}

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

.modern-form-group {
    margin-bottom: 20px;
}

.modern-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-80, #333);
    font-size: 0.9375rem;
}



.modern-submit {
    margin-top: 20px;
}

.modern-recaptcha-wrapper {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    background: var(--gray-2, #f8f8f8);
    padding: 16px;
    border-radius: 6px;
    border: 1px dashed var(--gray-10, #e0e0e0);
}



.modern-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .modern-container { padding: 0 8px; }
    .modern-tabs { flex-direction: column; }
    .modern-tab-btn { min-width: auto; }
    .modern-tab-content { padding: 20px 16px; }
}
