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

body {
    font-family: 'Alan Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    background-color: #91A8D0;
    line-height: 1.6;
    min-height: 100vh;
    font-size: 0.8em;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Header mejorado */
.header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
    border-radius: 0 0 10px 10px;
    margin-bottom: 30px;
}

.header h1 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info span {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.logout-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Formularios mejorados */
.filter-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inputs mejorados */
input[type="text"], 
input[type="email"], 
input[type="tel"], 
input[type="password"], 
input[type="date"], 
input[type="number"],
textarea, 
select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85em;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="tel"]:focus, 
input[type="password"]:focus, 
input[type="date"]:focus, 
input[type="number"]:focus,
textarea:focus, 
select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.input-text, .input-password {
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Botones mejorados */
button[type="submit"], 
.export-button, 
.login-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 20px;
}

button[type="submit"]:hover, 
.export-button:hover, 
.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background-color: #0056b3;
}

.export-button {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.export-button:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.export-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.excel-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.excel-btn:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.pdf-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.pdf-btn:hover {
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Tabla mejorada */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-weight: 700;
    color: #495057;
    text-transform: uppercase;
    font-size: 0.75em;
    letter-spacing: 0.5px;
}

tr:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

tr:nth-child(even) {
    background: rgba(0, 123, 255, 0.02);
}

/* Dashboard mejorado */
.dashboard-container {
    width: 100%;
    max-width: 1000px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px auto;
}

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

.card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card h2 {
    margin: 0 0 20px 0;
    font-size: 1.1em;
    color: #007bff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card p {
    font-size: 2.8em;
    font-weight: 800;
    color: #333;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.dashboard-buttons a {
    padding: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-buttons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
}

/* Login mejorado */
.login-container {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    margin: 100px auto;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-container h1 {
    color: #007bff;
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.login-header p {
    color: #6c757d;
    margin-top: 10px;
    font-size: 1.1em;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #495057;
    font-size: 1em;
}

.form-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
}

.error-message {
    color: #dc3545;
    margin-bottom: 20px;
    font-weight: 700;
    background: rgba(220, 53, 69, 0.1);
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.success-icon {
    font-size: 1.2em;
}

.error-icon {
    font-size: 1.2em;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.toggle-password:hover {
    background: rgba(0, 123, 255, 0.1);
}

.field-error {
    color: #dc3545;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
    font-weight: 600;
}

.form-options {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #495057;
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.login-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

.btn-loading {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Estilos para el formulario de reclamaciones */
.header-reclamacion {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.header-reclamacion img {
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.header-reclamacion h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #007bff;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-reclamacion h2 {
    font-size: 1.5em;
    margin: 0 0 20px 0;
    color: #495057;
    font-weight: 600;
}

.header-reclamacion p {
    margin: 8px 0;
    color: #6c757d;
    font-size: 1.1em;
    font-weight: 500;
}

.form-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 30px auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 0;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 123, 255, 0.05);
}

.radio-group label:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.radio-group input[type="radio"] {
    width: auto;
    margin: 0;
}

#campo_padre_madre {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

/* Página de información */
.info-page {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-page h1 {
    color: #007bff;
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-page h2 {
    color: #495057;
    font-size: 1.5em;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.info-page p {
    text-align: justify;
    margin-bottom: 30px;
    color: #6c757d;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Página de éxito */
.success-container {
    max-width: 800px;
    margin: 50px auto;
    background: linear-gradient(135deg, #fff 0%, #f7921e 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.success-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.success-subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.success-content {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
}

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

.info-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    color: #495057;
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
}

.success-actions {
    text-align: center;
    margin-top: 30px;
}

.success-actions a {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 10px;
}

.success-actions a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
}

.company-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.company-info h3 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 700;
}

.company-info p {
    color: #495057;
    margin: 5px 0;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(108, 117, 125, 0.4);
}

.success-footer {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
    color: #6c757d;
    margin-top: 30px;
}

.success-footer p {
    margin: 5px 0;
}

.powered-by {
    font-weight: 600;
    color: #007bff;
}

/* Estilos para reportes PDF */
.reporte-pdf {
    font-family: Arial, sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 20px;
}

.reporte-pdf .header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 20px;
}

.reporte-pdf .header h1 {
    color: #007bff;
    margin: 0;
    font-size: 24px;
}

.reporte-pdf .header h2 {
    color: #333;
    margin: 10px 0;
    font-size: 18px;
}

.reporte-pdf .info {
    margin-bottom: 20px;
}

.reporte-pdf .info p {
    margin: 5px 0;
}

.reporte-pdf table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.reporte-pdf th, 
.reporte-pdf td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.reporte-pdf th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.reporte-pdf tr:nth-child(even) {
    background-color: #f9f9f9;
}

.reporte-pdf .footer {
    margin-top: 30px;
    text-align: center;
    font-size: 10px;
    color: #666;
}

.reporte-pdf .no-data {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Responsive design mejorado */
@media screen and (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 20px;
        border-radius: 10px;
    }
    
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
    
    .user-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .filter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dashboard-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .login-container {
        margin: 50px 20px;
        padding: 30px 20px;
    }
    
    .header-reclamacion {
        padding: 30px 20px;
    }
    
    .header-reclamacion h1 {
        font-size: 1.7em;
    }
    
    .form-section {
        padding: 30px 20px;
        margin: 20px 10px;
    }
    
    .info-page {
        margin: 30px 20px;
        padding: 30px 20px;
    }
    
    .info-page h1 {
        font-size: 1.8em;
    }
    
    .success-container {
        margin: 30px 20px;
    }
    
    .success-header {
        padding: 30px 20px;
    }
    
    .success-content {
        padding: 30px 20px;
    }
    
    .success-title {
        font-size: 1.7em;
    }
    
    .success-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .success-actions a {
        display: block;
        margin: 10px 0;
    }
    
    .company-details {
        flex-direction: column;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hide-on-mobile {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .header h1 {
        font-size: 1.2em;
    }
    
    .card h2 {
        font-size: 0.95em;
    }
    
    .card p {
        font-size: 2em;
    }
    
    .login-container h1 {
        font-size: 1.5em;
    }
    
    .header-reclamacion h1 {
        font-size: 1.5em;
    }
    
    .info-page h1 {
        font-size: 1.5em;
    }
    
    .success-title {
        font-size: 1.5em;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container, .login-container, .info-page, .success-container {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}
