/* ====================================
   VARIABLES GLOBALES
   ==================================== */
:root {
    --color-primary: #0066cc;
    --color-secondary: #28a745;
    --color-accent: #F26430;
    --color-seguridad: #E53E3E;
    --color-accidente: #9F7AEA;
    --color-alumbrado: #FBBF24;
    --color-inundacion: #3182CE;
    --color-animales: #2F855A;
    --color-arboles: #9AE6B4;
    --color-calle-rota: #2D3748;
    --color-intransitable: #8B5A2B;
    --color-obstruccion: #9CA3AF;
    
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    height: 100vh;
    overflow: hidden;
    background: var(--gray-100);
}

/* ====================================
   SPLASH SCREEN
   ==================================== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), #1A4B6D);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    color: white;
}

.logo-infovecino {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-infovecino i {
    font-size: 4rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.logo-infovecino h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.slogan {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

.loader {
    margin-top: 2rem;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-left: auto;
    margin-right: auto;
}

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

/* ====================================
   APP PRINCIPAL
   ==================================== */
.app {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ====================================
   HEADER
   ==================================== */
.header {
    background-color: white;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
}

.badge-accent {
    background-color: var(--color-accent);
    color: white;
}

/* ====================================
   PAGE CONTAINER
   ==================================== */
.page-container {
    flex: 1;
    overflow-y: auto;
    background: var(--gray-100);
    position: relative;
}

/* ====================================
   NAVEGACIÓN INFERIOR
   ==================================== */
.bottom-nav {
    background-color: white;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.nav-item {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray-500);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.nav-item i {
    font-size: 1.25rem;
}

.nav-item.active {
    color: var(--color-primary);
}

/* ====================================
   HOME PAGE
   ==================================== */
.home-page {
    padding: 1rem;
    padding-bottom: 1rem;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 1rem 0.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.quick-report-card {
    background: linear-gradient(135deg, var(--color-primary), #1A4B6D);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
}

.quick-report-btn {
    background: white;
    color: var(--color-primary);
    border: none;
    border-radius: 30px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.quick-report-btn:active {
    transform: scale(0.95);
}

.recent-reports-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.recent-report-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.recent-report-item:last-child {
    border-bottom: none;
}

.report-color {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.report-info {
    flex: 1;
}

.report-title {
    font-weight: 500;
    color: var(--gray-800);
}

.report-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.report-time {
    font-size: 0.75rem;
    color: var(--gray-500);
    white-space: nowrap;
}

.mini-map-preview {
    border-radius: 16px;
    height: 120px;
    position: relative;
    overflow: hidden;
    background-image: url('https://tile.openstreetmap.org/14/8557/6357.png');
    background-size: cover;
    background-position: center;
    margin-top: 1rem;
    cursor: pointer;
}

.mini-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 0.5rem;
}

/* ====================================
   REPORTAR PAGE
   ==================================== */
.report-page {
    padding: 1rem;
}

.incident-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.incident-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
    background: var(--gray-100);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.incident-type-item.selected {
    border-color: var(--color-primary);
    background: white;
}

.type-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.photo-upload-area {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
}

.photo-upload-area i {
    font-size: 2.5rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.location-picker {
    background: var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
}

.current-location {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--gray-300);
    cursor: pointer;
}

.current-location i {
    color: var(--color-primary);
}

.manual-address {
    padding: 1rem;
}

.location-preview {
    height: 100px;
    background: var(--gray-200);
    cursor: pointer;
}

.preview-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    gap: 0.25rem;
}

.submit-report-btn {
    width: 100%;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
}

.submit-report-btn:active {
    background: #e09d1f;
}

/* ====================================
   MIS REPORTES PAGE
   ==================================== */
.mis-reportes-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.map-container-inline {
    height: 40vh;
    min-height: 250px;
    width: 100%;
    transition: height 0.3s ease;
    border-bottom: 2px solid var(--gray-200);
}

.map-container-inline.expanded {
    height: 60vh;
}

.map-inline {
    width: 100%;
    height: 100%;
}

.map-toggle-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
}

.my-reports-list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: var(--gray-100);
}

.my-report-card {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-200);
}

.my-report-color {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.my-report-info {
    flex: 1;
}

.my-report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.my-report-title {
    font-weight: 600;
    color: var(--gray-800);
}

.status-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-weight: 500;
}

.status-nuevo {
    background: rgba(49, 130, 206, 0.1);
    color: #3182CE;
}

.status-proceso {
    background: rgba(246, 174, 45, 0.1);
    color: #F6AE2D;
}

.status-resuelto {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

/* ====================================
   PERFIL PAGE
   ==================================== */
.perfil-page {
    padding: 0;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.profile-avatar i {
    font-size: 4rem;
    color: var(--color-primary);
}

.profile-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.profile-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.profile-stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.profile-menu {
    padding: 1rem 0;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
}

.profile-menu-item i:first-child {
    width: 20px;
    color: var(--color-primary);
}

.profile-menu-item span {
    flex: 1;
}

.profile-menu-item i:last-child {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.profile-footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* ====================================
   OFFLINE TOAST
   ==================================== */
.offline-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-800);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 10000;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ====================================
   UTILIDADES
   ==================================== */
.bg-accent {
    background-color: var(--color-accent) !important;
}

.text-primary-custom {
    color: var(--color-primary) !important;
}

/* ====================================
   PERFIL - ESTILOS ESPECÍFICOS
   ==================================== */

.perfil-page {
    background: var(--gray-100);
    min-height: 100%;
    padding-bottom: 20px;
}

.profile-header {
    border-bottom: 1px solid var(--gray-200);
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #1A4B6D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.avatar-placeholder span {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.btn-change-photo {
    width: 36px;
    height: 36px;
    border: none;
    transition: all 0.2s;
}

.btn-change-photo:active {
    transform: scale(0.95);
}

/* Tarjetas de sección */
.section-card {
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border: 1px solid var(--gray-200);
}

.info-row {
    align-items: center;
}

.info-label {
    font-size: 0.9rem;
}

.info-value {
    font-size: 0.95rem;
}

/* Direcciones */
.direccion-item {
    transition: background 0.2s;
}

.direccion-item:hover {
    background: var(--gray-100);
}

.direccion-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estadísticas circulares */
.stat-circle {
    background: var(--gray-100);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Botones de acción */
.btn-outline-danger {
    border-color: var(--gray-300);
    color: #dc3545;
}

.btn-outline-danger:hover {
    background: #dc3545;
    color: white;
}

/* Formulario de edición */
.edit-mode {
    animation: slideIn 0.3s ease;
}

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

/* Responsive */
@media (min-width: 768px) {
    .section-card {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ====================================
   FIX PARA CELULARES REALES
   ==================================== */

/* Asegurar que el html y body ocupen todo el alto */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Contenedor principal */
.app {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

/* Contenedor de páginas */
.page-container {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: calc(100vh - 120px); /* Altura total menos header y nav */
}

/* Header fijo */
.header {
    flex-shrink: 0;
    height: 60px;
    background: white;
    z-index: 10;
}

/* Menú inferior FIJO */
.bottom-nav {
    flex-shrink: 0;
    display: flex !important;
    background: white;
    border-top: 1px solid #dee2e6;
    height: 70px;
    padding: 8px 0;
    width: 100%;
    position: relative;
    bottom: 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

/* Botones del menú */
.nav-item {
    flex: 1;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #6c757d;
    font-size: 12px;
    padding: 5px 0;
    margin: 0;
    cursor: pointer;
}

.nav-item i {
    font-size: 22px;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 11px;
}

.nav-item.active {
    color: var(--color-primary, #2E86AB) !important;
}

/* Fix para iOS */
@supports (-webkit-touch-callout: none) {
    .app {
        height: -webkit-fill-available;
    }
    
    .bottom-nav {
        padding-bottom: constant(safe-area-inset-bottom);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Fix para navegadores móviles */
@media (max-width: 768px) {
    .bottom-nav {
        height: 65px;
    }
    
    .page-container {
        height: calc(100vh - 125px); /* 60px header + 65px nav */
    }
}

/* Agregar a styles.css */
.login-page {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), #1A4B6D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.emergency-banner {
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ====================================
   ESTILOS PARA SALUDO DINÁMICO
   ==================================== */

.welcome-header {
    transition: all 0.5s ease;
    color: white;
    padding: 20px !important;
    border-radius: 20px !important;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.welcome-header .text-secondary {
    color: rgba(255,255,255,0.9) !important;
}

.welcome-header .weather-widget {
    background: rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(10px);
    color: white !important;
    border: 1px solid rgba(255,255,255,0.3);
}

.welcome-header .weather-widget i {
    color: white !important;
}

.welcome-header .weather-widget span {
    color: white !important;
    font-weight: 600;
}

/* Animación para el cambio de saludo */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-header {
    animation: fadeIn 0.5s ease;
}
/* ====================================
   ESTILOS PARA CLIMA
   ==================================== */

.weather-widget {
    transition: all 0.5s ease;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    cursor: help;
}

.weather-widget i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.weather-widget span {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Skeleton loading animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* Tooltip personalizado */
.weather-widget:hover {
    transform: scale(1.05);
}

/* Estilos para diferentes rangos de temperatura */
.temp-extreme {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.temp-hot {
    background: linear-gradient(135deg, #d35400, #e67e22);
}

.temp-warm {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

.temp-mild {
    background: linear-gradient(135deg, #27ae60, #87e2a8);
}

.temp-cool {
    background: linear-gradient(135deg, #3498db, #a7c5eb);
}

.temp-cold {
    background: linear-gradient(135deg, #2980b9, #6dd5fa);
}

.temp-freezing {
    background: linear-gradient(135deg, #2c3e50, #3498db);
}
/* ====================================
   ESTILOS PARA LOGIN CON HUELLA
   ==================================== */

#seccionHuella {
    animation: slideDown 0.5s ease;
    margin-bottom: 20px;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #1A4B6D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.avatar-circle:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.avatar-circle span {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

#btnLoginHuella {
    background: linear-gradient(135deg, var(--color-primary), #1A4B6D);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px;
    transition: all 0.3s;
}

#btnLoginHuella:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 134, 171, 0.3);
}

#btnLoginHuella i {
    font-size: 1.2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Asegurar que el menú oculto no afecte el layout */
.bottom-nav.d-none {
    display: none !important;
}

/* Cuando el menú está oculto, el contenido ocupa toda la pantalla */
.bottom-nav.d-none + .page-container {
    height: 100vh;
}
/* ====================================
   ANIMACIÓN SECCIÓN HUELLA
   ==================================== */
#seccionHuella {
    /* Inicialmente oculto pero sin interferir con JavaScript */
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(-10px);
    position: relative;
    z-index: 1000;
}

#seccionHuella.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Permitir que JavaScript controle la visibilidad */
#seccionHuella[style*="display: block"] {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

/* Animación de pulso para el ícono */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

#seccionHuella.mostrar .fa-fingerprint {
    animation: pulse 2s infinite;
}

/* ====================================
   PÁGINA DE REPORTES - FOTOS
   ==================================== */
.photo-upload-area {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-upload-area:hover {
    border-color: var(--color-primary);
    background: rgba(0, 102, 204, 0.05);
    color: var(--color-primary);
}

.photo-preview {
    margin-top: 1rem;
}

.preview-container {
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
}

.preview-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.validation-status {
    padding: 0.75rem;
    background: var(--gray-50);
    font-size: 0.875rem;
}

.validation-status.valid {
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-secondary);
}

.validation-status.invalid {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.validation-status.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.photo-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Estados de validación */
.face-detected {
    border-color: #ffc107 !important;
    background: rgba(255, 193, 7, 0.1) !important;
}

.inappropriate-content {
    border-color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.1) !important;
}

.validation-approved {
    border-color: #28a745 !important;
    background: rgba(40, 167, 69, 0.1) !important;
}

/* Spinner personalizado */
.validation-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-top: 2px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}