/* =========================================== */
/* USU.CSS - Estilos do Sistema MEGA10 */
/* =========================================== */

:root {
    --primary: #27ae60;
    --primary-dark: #219653;
    --primary-light: #d5efdf;
    --secondary: #2c3e50;
    --secondary-light: #3a506b;
    --accent: #3498db;
    --danger: #e74c3c;
    --warning: #f39c12;
    --success: #27ae60;
    --info: #3498db;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #95a5a6;
    --gray-light: #ecf0f1;
    --gray-dark: #7f8c8d;
    
    --border-radius: 10px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    
    /* Novas variáveis para recuperação */
    --recovery-primary: #3498db;
    --recovery-dark: #2980b9;
    --recovery-light: #ebf5fb;
    --modal-overlay: rgba(0,0,0,0.7);
}

/* =========================================== */
/* RESET E BASE */
/* =========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================== */
/* CARD PRINCIPAL */
/* =========================================== */

.card {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    min-height: 600px;
    animation: cardAppear 0.5s ease;
}

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

.card-left {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="white" d="M20,20 Q40,0 60,20 T100,20 V80 Q80,100 60,80 T20,80 Z"/></svg>');
    background-size: 200px;
}

.card-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================================== */
/* LOGO E FEATURES */
/* =========================================== */

.logo-container {
    text-align: center;
    margin-bottom: 40px;
    z-index: 1;
    position: relative;
}

.logo-img {
    max-width: 200px;
    height: auto;
    background: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.logo-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
    font-weight: 300;
}

.features {
    margin-top: 30px;
    z-index: 1;
    position: relative;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-text h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* =========================================== */
/* FORMULÁRIOS */
/* =========================================== */

.form-container {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.tab-container {
    display: flex;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    padding: 5px;
    margin-bottom: 30px;
}

.tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    color: var(--gray-dark);
    transition: var(--transition);
}

.tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-content {
    display: none;
}

.form-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================== */
/* FORM ELEMENTOS */
/* =========================================== */

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    background: white;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-control.error {
    border-color: var(--danger);
    background-color: #fff8f8;
}

.form-control.success {
    border-color: var(--success);
    background-color: #f8fff8;
}

.form-help {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    min-height: 18px;
}

.form-help.error {
    color: var(--danger);
}

.form-help.success {
    color: var(--success);
}

/* =========================================== */
/* BOTÕES */
/* =========================================== */

.btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-warning {
    background: var(--warning);
}

.btn-warning:hover {
    background: #e67e22;
}

.btn-cancelar {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.btn-cancelar:hover {
    background: #e2e6ea;
    color: #495057;
    border-color: #c8ccd0;
    transform: none;
    box-shadow: none;
}

/* =========================================== */
/* ALERTAS */
/* =========================================== */

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* =========================================== */
/* CADASTRO EM STEPS */
/* =========================================== */

.cadastro-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.cadastro-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gray-light);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    position: relative;
    flex: 1;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: var(--transition);
}

.step.active .step-circle {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.step-label {
    font-size: 11px;
    color: var(--gray-dark);
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.cadastro-step {
    display: none;
}

.cadastro-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.btn-step {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.btn-step button {
    flex: 1;
}

/* =========================================== */
/* CHECKBOX E TERMOS */
/* =========================================== */

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    font-weight: normal;
}

.necessario-termos {
    background: #fff3e0;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    margin: 15px 0;
    display: none;
}

.necessario-termos.active {
    display: block;
    animation: slideIn 0.3s ease;
}

.necessario-termos p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

/* =========================================== */
/* FORÇA DA SENHA */
/* =========================================== */

.password-strength {
    margin-top: 10px;
}

.password-strength-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    transition: var(--transition);
}

.password-strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    background: var(--danger);
    transition: var(--transition);
}

/* =========================================== */
/* LINKS E SEPARADORES */
/* =========================================== */

.link-teste {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.link-teste a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.link-teste a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: var(--gray);
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--gray-light);
}

.separator-text {
    padding: 0 15px;
    font-size: 14px;
    color: var(--gray);
}

/* =========================================== */
/* RECUPERAÇÃO DE SENHA */
/* =========================================== */

.recuperar-senha-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.recuperar-senha-link a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.recuperar-senha-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    transform: translateY(-1px);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.form-actions button {
    flex: 1;
    min-width: 120px;
}

.email-oculto {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    text-align: center;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--gray-dark);
    word-break: break-all;
}

/* =========================================== */
/* MODAIS */
/* =========================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--modal-overlay);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 1;
}

.modal-close-btn:hover {
    background: var(--gray-light);
    color: var(--dark);
}

.modal-header {
    margin-bottom: 25px;
    text-align: center;
    padding-right: 30px;
}

.modal-header h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

.modal-body {
    margin-bottom: 20px;
}

.modal-body p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 25px;
}

.modal-actions button {
    min-width: 120px;
}

/* =========================================== */
/* MODAL ESPECÍFICA PARA CPF GOOGLE */
/* =========================================== */

.cpf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--modal-overlay);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cpf-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.cpf-modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

.cpf-modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-right: 20px;
}

.cpf-modal-header h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.cpf-modal-header p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

.cpf-modal-body {
    margin-bottom: 25px;
}

.cpf-modal-footer {
    text-align: center;
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* =========================================== */
/* PÁGINA DE REDEFINIÇÃO DE SENHA */
/* =========================================== */

.redefinir-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    animation: cardAppear 0.5s ease;
}

.redefinir-header {
    text-align: center;
    margin-bottom: 30px;
}

.redefinir-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.redefinir-titulo {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.redefinir-subtitulo {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 20px;
}

.redefinir-aviso {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    animation: slideIn 0.3s ease;
}

.redefinir-aviso p {
    margin: 0;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================== */
/* ÍCONES E INDICADORES */
/* =========================================== */

.obrigatorio {
    color: var(--danger);
    font-weight: bold;
}

/* =========================================== */
/* GOOGLE LOGIN */
/* =========================================== */

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 15px;
    text-decoration: none;
    font-family: inherit;
    font-size: 15px;
}

.google-login-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.google-logo {
    width: 20px;
    height: 20px;
}

/* =========================================== */
/* ANIMAÇÕES */
/* =========================================== */

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* =========================================== */
/* RESPONSIVIDADE */
/* =========================================== */

@media (max-width: 992px) {
    .card {
        flex-direction: column;
        min-height: auto;
    }
    
    .card-left, .card-right {
        padding: 30px;
    }
    
    .card-left {
        padding-bottom: 40px;
    }
    
    .features {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .feature {
        flex: 1;
        min-width: 200px;
        margin-bottom: 0;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-right: 12px;
    }
    
    .feature-text h3 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .card-left, .card-right {
        padding: 25px 20px;
    }
    
    .logo-title {
        font-size: 2rem;
    }
    
    .logo-subtitle {
        font-size: 1rem;
    }
    
    .logo-img {
        max-width: 150px;
    }
    
    .features {
        flex-direction: column;
        gap: 12px;
    }
    
    .feature {
        min-width: 100%;
        padding: 12px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .form-container {
        max-width: 100%;
    }
    
    .modal {
        padding: 20px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding-right: 0;
    }
    
    .modal-close-btn {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-actions button {
        width: 100%;
    }
    
    .cpf-modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-step {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-step button {
        width: 100%;
    }
    
    .cadastro-steps::before {
        left: 15%;
        right: 15%;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .redefinir-container {
        margin: 20px auto;
        padding: 25px 20px;
    }
    
    .redefinir-logo {
        font-size: 2rem;
    }
    
    .redefinir-titulo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .card-left, .card-right {
        padding: 20px 15px;
    }
    
    .logo-title {
        font-size: 1.8rem;
    }
    
    .logo-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-img {
        max-width: 120px;
    }
    
    .feature {
        padding: 10px;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-right: 10px;
    }
    
    .feature-text h3 {
        font-size: 0.9rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
    
    .tab {
        padding: 12px 10px;
        font-size: 14px;
    }
    
    .form-control {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .btn {
        padding: 14px;
        font-size: 15px;
    }
    
    .alert {
        padding: 12px;
        font-size: 14px;
    }
    
    .modal {
        padding: 15px;
        border-radius: 12px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .step-circle {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .step-label {
        font-size: 9px;
    }
    
    .google-login-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .recuperar-senha-link a {
        font-size: 13px;
    }
    
    .email-oculto {
        font-size: 12px;
        padding: 10px 12px;
    }
}

@media (max-width: 360px) {
    .logo-title {
        font-size: 1.6rem;
    }
    
    .logo-img {
        max-width: 100px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .tab-container {
        flex-direction: column;
        gap: 5px;
    }
    
    .tab {
        width: 100%;
    }
    
    .cadastro-steps {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cadastro-steps::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }
    
    .step-circle {
        margin-bottom: 0;
    }
    
    .step-label {
        text-align: left;
        font-size: 12px;
    }
}

/* =========================================== */
/* UTILITÁRIOS */
/* =========================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.w-100 { width: 100%; }

/* =========================================== */
/* ESTILOS PARA LOADING STATES */
/* =========================================== */

.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* =========================================== */
/* ESTILOS PARA PÁGINA DE CONFIRMAÇÃO */
/* =========================================== */

.confirmacao-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center;
    animation: cardAppear 0.5s ease;
}

.confirmacao-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary);
}

.confirmacao-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.confirmacao-message {
    color: var(--gray-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* =========================================== */
/* ESTILOS PARA SCROLL PERSONALIZADO */
/* =========================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}