/* NaviPort RD - Estilos principales basados en el prototipo HTML */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('/media/Ship.jpeg') center center / cover no-repeat fixed;
    min-height: 100vh;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

/* === NAVEGACIÓN === */
.navbar {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.navbar-brand .logo {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.navbar-menu li {
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s;
}

.navbar-menu li:hover,
.navbar-menu li.active {
    background: rgba(255,255,255,0.1);
}

.navbar-menu a {
    color: white;
    text-decoration: none;
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.user-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    padding: 10px 0;
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    pointer-events: none;
}

.navbar-user:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    right: 0;
    left: 0;
    height: 12px;
}

.user-dropdown::after {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    transform: translateY(-8px);
}

.logout-link {
    display: block;
    padding: 12px 20px;
    color: #e74c3c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 4px;
    margin: 0 5px;
    white-space: nowrap;
}

.logout-link:hover {
    background: #f8f9fa;
    color: #c0392b;
    transform: translateX(2px);
}

/* === LAYOUT === */
.content-area {
    padding: 30px;
    min-height: calc(100vh - 200px);
}

.layout-with-sidebar {
    display: flex;
    min-height: calc(100vh - 80px);
}

.sidebar {
    width: 250px;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    padding: 20px 0;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu li {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-menu li:hover,
.sidebar-menu li.active {
    background: #e3f2fd;
    border-right: 3px solid #2196f3;
}

.sidebar-menu a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.main-content {
    flex: 1;
    padding: 30px;
}

/* === TARJETAS DASHBOARD === */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    color: white;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.card-subtitle {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

/* === FORMULARIOS === */
.form-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* === ESTILOS PARA GESTIÓN DE EMPRESAS === */
.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.status-vigente {
    background: #27ae60;
    color: white;
}

.badge.status-proxima {
    background: #f39c12;
    color: white;
}

.badge.status-vencida {
    background: #e74c3c;
    color: white;
}

.badge.status-sin-licencia {
    background: #95a5a6;
    color: white;
}


/* Botones pequeños para acciones */
.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-sm:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* Filtros de búsqueda */
.search-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
}

.search-filters form {
    display: flex;
    gap: 15px;
    align-items: end;
    flex-wrap: wrap;
}

.search-filters .form-group {
    flex: 1;
    min-width: 200px;
}

.search-filters label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #495057;
    font-size: 14px;
}

.search-filters input,
.search-filters select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.search-filters input:focus,
.search-filters select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Paginación mejorada */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.pagination a {
    padding: 8px 12px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    color: #495057;
    transition: all 0.2s;
}

.pagination a:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.pagination .current {
    padding: 8px 12px;
    background: #3498db;
    color: white;
    border-radius: 4px;
}

/* Estados de licencia con colores */
.licencia-vigente {
    color: #27ae60;
    font-weight: 600;
}

.licencia-proxima {
    color: #f39c12;
    font-weight: 600;
}

.licencia-vencida {
    color: #e74c3c;
    font-weight: 600;
}

.licencia-sin {
    color: #95a5a6;
    font-weight: 600;
}

/* Alertas y notificaciones */
.alert {
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    border-color: #27ae60;
    color: #155724;
}

.alert-warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.alert-danger {
    background: #f8d7da;
    border-color: #e74c3c;
    color: #721c24;
}

.alert-info {
    background: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

/* Formularios mejorados */
.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.form-section h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    color: #2c3e50;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-group .form-text {
    margin-top: 5px;
    font-size: 12px;
    color: #6c757d;
}

.form-group .error {
    margin-top: 5px;
    font-size: 12px;
    color: #e74c3c;
}

/* Checkbox y radio personalizados */
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

/* === BOTONES === */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

/* === TABLAS === */
.data-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.table-header {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.table-content {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

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

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

td {
    font-size: 14px;
    color: #495057;
}

/* Estilo específico para tablas con clase .table (como en solicitudes) */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background: #2c3e50;
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    border-bottom: none;
}

.table td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
    font-size: 14px;
    color: #495057;
}

.table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.table tr:hover {
    background: #e9ecef !important;
}

/* Mantener estilos por defecto para tablas sin clase .table */
tbody tr:nth-child(even):not(.table tbody tr:nth-child(even)) {
    background: #f8f9fa;
}

tr:hover:not(.table tr:hover) {
    background: #e9ecef !important;
}

/* === BADGES DE ESTADO === */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-pending { 
    background: #fff3cd; 
    color: #856404; 
}

.status-approved { 
    background: #d4edda; 
    color: #155724; 
}

.status-rejected { 
    background: #f8d7da; 
    color: #721c24; 
}

.status-review { 
    background: #cce5ff; 
    color: #0056b3; 
}

/* === BARRAS DE PROGRESO === */
.progress-container {
    background: #e9ecef;
    border-radius: 10px;
    height: 38px;
    overflow: hidden;
    margin: 8px 0;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-bar.blue { 
    background: linear-gradient(90deg, #3498db, #2980b9); 
}

.progress-bar.green { 
    background: linear-gradient(90deg, #27ae60, #229954); 
}

.progress-bar.orange { 
    background: linear-gradient(90deg, #f39c12, #e67e22); 
}

/* === NOTIFICACIONES === */
.notification-bar {
    background: #e8f4fd;
    border-left: 4px solid #3498db;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    border-left: 4px solid #27ae60;
    color: #155724;
}

.alert-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
}

.alert-danger {
    background: #f8d7da;
    border-left: 4px solid #e74c3c;
    color: #721c24;
}

.alert-info {
    background: #cce5ff;
    border-left: 4px solid #3498db;
    color: #0056b3;
}

/* === LOGIN PAGE === */
.login-container {
    display: flex;
    min-height: 100vh;
}

.login-left {
    flex: 1;
    background: url('/media/Ship.jpeg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 50px;
    position: relative;
}

.login-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.7);
}

.login-brand {
    text-align: center;
    position: relative;
    z-index: 1;
}

.login-brand .logo-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    display: block;
    object-fit: contain;
    font-weight: bold;
}

.login-right {
    flex: 1;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.login-form {
    width: 100%;
    max-width: 400px;
}

/* === STATS GRID === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .content-area {
        padding: 15px;
    }
    
    .layout-with-sidebar {
        flex-direction: column;
        height: auto;
    }
    
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .table-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    th, td {
        padding: 10px 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .login-container {
        flex-direction: column;
    }
    
    .login-left {
        min-height: 40vh;
        padding: 30px;
    }
    
    .login-right {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 18px;
    }
    
    .navbar-brand .logo {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        font-size: 14px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ESTILOS WIZARD - MODERNOS Y PROFESIONALES
   ======================================== */

/* === HEADER DEL FORMULARIO WIZARD === */
.wizard-form-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.wizard-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.wizard-form-title i {
    color: #667eea;
    font-size: 1.8rem;
}

.wizard-form-subtitle {
    font-size: 1.15rem;
    color: #718096;
    margin: 0;
}

/* === SECCIONES DEL FORMULARIO === */
.wizard-form-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.wizard-form-section:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.wizard-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wizard-section-title i {
    color: #667eea;
    font-size: 1.3rem;
}

/* === GRUPOS DE FORMULARIO === */
.wizard-form-group {
    margin-bottom: 20px;
}

.wizard-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.wizard-label i {
    color: #667eea;
    font-size: 1.1rem;
}

.wizard-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.15rem;
    color: #2d3748;
    background: white;
    transition: all 0.3s ease;
    min-height: 60px;
}

.wizard-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.wizard-input::placeholder {
    color: #a0aec0;
}

.wizard-help-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 1rem;
    color: #718096;
}

.wizard-help-text i {
    color: #f59e0b;
    font-size: 1rem;
}

/* === BOTONES DEL WIZARD === */
.wizard-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    min-height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wizard-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.wizard-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.wizard-btn-secondary {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
}

.wizard-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
}

.wizard-btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.wizard-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.wizard-btn-ghost {
    background: white;
    color: #e74c3c;
    border: 3px solid #e74c3c;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.wizard-btn-ghost:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* === ACCIONES DEL FORMULARIO === */
.wizard-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
}

/* === VALIDACIÓN VISUAL === */
.wizard-input.is-valid {
    border-color: #10b981;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.wizard-input.is-invalid {
    border-color: #ef4444;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

/* === ANIMACIONES === */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-form-section {
    animation: slideInUp 0.4s ease-out;
}

/* === RESPONSIVE WIZARD === */
@media (max-width: 768px) {
    .wizard-form-header {
        margin-bottom: 25px;
    }

    .wizard-form-title {
        font-size: 1.5rem;
    }

    .wizard-form-section {
        padding: 20px 15px;
    }

    .wizard-form-actions {
        flex-direction: column-reverse;
    }

    .wizard-btn {
        width: 100%;
        justify-content: center;
    }

    .wizard-section-title {
        font-size: 1rem;
    }
}