/* ========================================
   DIGIPASS - ESTILOS CENTRALIZADOS
   ======================================== */

/* Variables CSS */
:root {
    --primary-color: #6366f1;
    --secondary-color: #06b6d4;
    --accent-color: #8b5cf6;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #374151;
    --background-white: rgba(255, 255, 255, 0.95);
    --background-light: rgba(255, 255, 255, 0.8);
    --border-color: rgba(99, 102, 241, 0.1);
    --border-focus: rgba(99, 102, 241, 0.2);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(99, 102, 241, 0.3);
    --shadow-heavy: 0 20px 60px rgba(99, 102, 241, 0.1);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
    --gradient-light: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 30%, #e2e8f0 70%, #cbd5e1 100%);
}

/* ========================================
   ESTILOS COMUNES PARA FORMULARIOS
   ======================================== */

/* Reset y estilos base */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
}

/* Contenedores principales */
.login-main-section,
.signup-main-section {
    background: var(--gradient-light);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.login-main-section::before,
.signup-main-section::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"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%236366f1" stroke-width="0.2" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.login-main-container,
.signup-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Layout de dos columnas */
.login-layout,
.signup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Columnas de formulario */
.login-form-column,
.signup-form-column {
    background: var(--background-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.login-form-column::before,
.signup-form-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

/* Headers de formulario */
.form-header {
    margin-bottom: 20px;
    text-align: center;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-shadow: none;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
}

/* Formularios modernos */
.modern-login-form,
.modern-signup-form {
    position: relative;
    z-index: 2;
}

/* Filas de formulario (solo para signup) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Grupos de formulario */
.form-group {
    margin-bottom: 25px;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Wrapper de inputs */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 50px;
}

/* Iconos de inputs */
.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
    font-size: 16px;
    z-index: 1;
    pointer-events: none;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inputs de formulario - Sobrescribir estilos globales */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="username"],
.form-input {
    width: 100% !important;
    height: 50px !important;
    padding: 0 15px 0 45px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    color: #1e293b !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    line-height: 1.5 !important;
    overflow: visible !important;
    text-transform: none !important;
    margin: 0 !important;
    outline: none !important;
}

/* Padding especial para inputs con botón de contraseña */
.modern-login-form .form-group:has(.password-toggle) .form-input,
.modern-signup-form .form-group:has(.password-toggle) .form-input {
    padding-right: 35px !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="username"]:focus,
.form-input:focus {
    outline: none !important;
    border: 2px solid #6366f1 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important;
    transform: none !important;
    color: #1e293b !important;
}

.form-input::placeholder {
    color: rgba(30, 41, 59, 0.6);
}

/* Botón de mostrar/ocultar contraseña */
.password-toggle {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    color: var(--primary-color) !important;
    cursor: pointer !important;
    font-size: 12px !important;
    z-index: 10 !important;
    transition: color 0.3s ease !important;
    padding: 0 !important;
    width: 14px !important;
    height: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 3px !important;
    min-width: 14px !important;
    min-height: 14px !important;
}

.password-toggle:hover {
    color: var(--secondary-color) !important;
}

/* Estilos específicos para inputs de contraseña */
.modern-login-form .form-group:has(.password-toggle) .form-input,
.modern-signup-form .form-group:has(.password-toggle) .form-input {
    border: 2px solid var(--border-color) !important;
}

.modern-login-form .form-group:has(.password-toggle) .form-input:focus,
.modern-signup-form .form-group:has(.password-toggle) .form-input:focus {
    border: 2px solid var(--primary-color) !important;
    outline: none !important;
}

/* Indicador de fortaleza de contraseña (solo signup) */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.strength-text {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Indicador de coincidencia de contraseñas (solo signup) */
.password-match {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.password-match.show {
    opacity: 1;
}

.password-match i {
    font-size: 14px;
}

/* Opciones del formulario */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Checkbox personalizado */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.modern-signup-form .checkbox-label {
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    background: var(--background-light);
}

.modern-signup-form .checkmark {
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    line-height: 1.4;
}

/* Enlaces */
.forgot-link,
.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-link:hover,
.terms-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.terms-link {
    font-weight: 600;
}

/* Acciones del formulario */
.form-actions {
    text-align: center;
    margin: 30px 0 25px 0;
}

.modern-signup-form .form-actions {
    margin-top: 30px;
}

/* Botón de envío */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Divisor */
.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    background: var(--background-white);
    padding: 0 20px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Login social - Sobrescribir estilos globales */
.social-login,
.social-signup,
.modern-login-form .social-login,
.modern-signup-form .social-login,
.modern-login-form .social-signup,
.modern-signup-form .social-signup {
    text-align: center !important;
    margin-bottom: 25px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    position: relative !important;
}

.social-login a,
.social-login .social-btn,
.social-signup a,
.social-signup .social-btn,
.modern-login-form .social-login a,
.modern-signup-form .social-login a,
.modern-login-form .social-signup a,
.modern-signup-form .social-signup a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px 28px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    min-width: 140px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.google-btn,
.social-login a.google-btn,
.social-signup a.google-btn,
.modern-login-form .social-login a.google-btn,
.modern-signup-form .social-login a.google-btn,
.modern-login-form .social-signup a.google-btn,
.modern-signup-form .social-signup a.google-btn {
    background: #ffffff !important;
    color: #374151 !important;
    border: 1px solid #d1d5db !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
}

.google-btn:hover,
.social-login a.google-btn:hover,
.social-signup a.google-btn:hover,
.modern-login-form .social-login a.google-btn:hover,
.modern-signup-form .social-login a.google-btn:hover,
.modern-login-form .social-signup a.google-btn:hover,
.modern-signup-form .social-signup a.google-btn:hover {
    background: #f9fafb !important;
    color: #111827 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border-color: #9ca3af !important;
    text-decoration: none !important;
}

/* Enlaces de registro/login */
.signup-link,
.login-link {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

.signup-link a,
.login-link a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.signup-link a:hover,
.login-link a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* ========================================
   ESTILOS ESPECÍFICOS DE SIGNUP
   ======================================== */

/* Selector de tipo de usuario */
.user-type-selector {
    background: var(--background-white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.user-type-selector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.selector-header {
    text-align: center;
    margin-bottom: 25px;
}

.selector-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.selector-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

.type-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: var(--background-light);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.type-btn:hover {
    background: var(--background-white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.type-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.type-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.type-btn.active .type-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.type-btn:hover .type-icon {
    background: rgba(99, 102, 241, 0.2);
}

.type-btn.active:hover .type-icon {
    background: rgba(255, 255, 255, 0.3);
}

.type-text {
    text-align: center;
    line-height: 1.4;
}

.type-description {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

/* Botones de cambio de tipo */
.switch-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.switch-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--background-light);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--border-focus);
    box-shadow: var(--shadow-light);
}

.switch-btn:hover {
    background: var(--background-white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.switch-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.switch-btn i {
    font-size: 16px;
}

/* ========================================
   ESTILOS ESPECÍFICOS DE SELECCIÓN DE PERFIL
   ======================================== */

/* Header de selección de perfil */
.profile-selection-header-section {
    background: var(--gradient-light);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.profile-selection-header-section::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"><defs><pattern id="profileGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%236366f1" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23profileGrid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.profile-selection-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    text-align: center;
}

.profile-selection-main-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(30, 41, 59, 0.1);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-selection-main-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 0 20px 0;
}

.welcome-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--shadow-medium);
}

.welcome-logo .logo-icon {
    font-size: 20px;
}

/* Sección principal de selección de perfil */
.profile-selection-main-section {
    background: var(--gradient-light);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.profile-selection-main-section::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"><defs><pattern id="profileMainGrid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%236366f1" stroke-width="0.2" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23profileMainGrid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.profile-selection-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.profile-selection-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contenedor de opciones de perfil */
.profile-options-container {
    background: var(--background-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.profile-options-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.profile-options-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-options-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(30, 41, 59, 0.1);
}

.profile-options-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

/* Tarjetas de perfil */
.profile-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-card {
    background: var(--background-light);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card:hover {
    background: var(--background-white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.profile-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.profile-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    box-shadow: var(--shadow-medium);
}

.client-icon {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
}

.organizer-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
}

.profile-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.profile-card-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Características del perfil */
.profile-features {
    margin-bottom: 25px;
}

.profile-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.profile-features .feature-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 12px;
}

/* Botones de perfil */
.profile-card-footer {
    text-align: center;
}

.profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.client-btn {
    background: var(--gradient-primary);
    color: white;
}

.organizer-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
}

.profile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.profile-btn:hover::before {
    left: 100%;
}

.profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

/* Footer de selección de perfil */
.profile-selection-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.profile-selection-note {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.profile-selection-note i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Columna de información */
.profile-info-column {
    background: var(--background-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.profile-info-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-medium);
}

.info-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.info-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

.info-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.15);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.benefit-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.15);
}

.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive para selección de perfil */
@media (max-width: 992px) {
    .profile-selection-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-selection-main-container {
        padding: 0 20px;
    }

    .profile-options-container,
    .profile-info-column {
        padding: 30px;
    }

    .info-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .profile-selection-main-section {
        padding: 40px 0;
    }

    .profile-selection-main-container {
        padding: 0 15px;
    }

    .profile-options-container,
    .profile-info-column {
        padding: 25px;
        border-radius: 16px;
    }

    .profile-selection-main-title {
        font-size: 32px;
    }

    .profile-selection-main-subtitle {
        font-size: 16px;
    }

    .profile-card {
        padding: 25px;
    }

    .profile-card-title {
        font-size: 20px;
    }

    .profile-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .profile-options-container,
    .profile-info-column {
        padding: 20px;
        border-radius: 12px;
    }

    .profile-selection-main-title {
        font-size: 28px;
    }

    .profile-selection-main-subtitle {
        font-size: 15px;
    }

    .profile-card {
        padding: 20px;
    }

    .profile-card-title {
        font-size: 18px;
    }

    .profile-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .benefit-item {
        padding: 12px;
        gap: 12px;
    }

    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .benefit-title {
        font-size: 15px;
    }

    .benefit-description {
        font-size: 13px;
    }
}

/* ========================================
   ESTILOS ESPECÍFICOS DE LOGIN Y SIGNUP
   ======================================== */

/* Logo para login y signup */
.login-logo,
.signup-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--shadow-medium);
}

.login-logo .logo-icon,
.signup-logo .logo-icon {
    font-size: 20px;
}

/* ========================================
   ESTILOS ESPECÍFICOS DE LOGIN Y SIGNUP
   ======================================== */

/* Títulos principales */
.login-main-title,
.signup-main-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 12px !important;
    text-shadow: none !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.login-main-subtitle,
.signup-main-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* ========================================
   ESTILOS ESPECÍFICOS DE LOGIN
   ======================================== */

/* Columna de información */
.login-info-column {
    background: var(--background-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.login-info-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-medium);
}

.info-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.info-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

.info-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.15);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
    display: block !important;
    visibility: visible !important;
}

.benefit-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin: 0 0 4px 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.benefit-description {
    font-size: 14px !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Testimonial */
.info-testimonial {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

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

.testimonial-text {
    font-size: 14px;
    color: #374151;
    font-style: italic;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.author-role {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.15);
}

.stat-number {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #6366f1 !important;
    margin-bottom: 4px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.stat-label {
    font-size: 12px !important;
    color: #64748b !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ========================================
   RESPONSIVE DESIGN PARA LOGIN Y SIGNUP
   ======================================== */

@media (max-width: 992px) {
    .login-layout,
    .signup-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .login-info-column,
    .signup-info-column {
        padding: 30px;
    }

    .info-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .login-main-title,
    .signup-main-title {
        font-size: 20px !important;
    }

    .login-main-subtitle,
    .signup-main-subtitle {
        font-size: 14px;
    }

    .login-info-column,
    .signup-info-column {
        padding: 25px;
        border-radius: 16px;
    }

    .info-title {
        font-size: 20px;
    }

    .info-subtitle {
        font-size: 14px;
    }

    .feature-item {
        padding: 12px;
        gap: 12px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .login-main-title,
    .signup-main-title {
        font-size: 18px !important;
    }

    .login-main-subtitle,
    .signup-main-subtitle {
        font-size: 13px;
    }

    .login-info-column,
    .signup-info-column {
        padding: 20px;
        border-radius: 12px;
    }

    .info-title {
        font-size: 18px;
    }

    .info-subtitle {
        font-size: 13px;
    }

    .feature-item {
        padding: 10px;
        gap: 10px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-description {
        font-size: 12px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .login-layout,
    .signup-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .login-main-container,
    .signup-main-container {
        padding: 0 20px;
    }

    .login-form-column,
    .signup-form-column,
    .login-info-column,
    .user-type-selector {
        padding: 25px;
    }

    .form-title {
        font-size: 24px;
    }

    .form-input {
        height: 45px !important;
        padding: 0 12px 0 40px !important;
        font-size: 15px !important;
    }

    .input-wrapper {
        min-height: 45px;
    }

    .modern-login-form .form-group:has(.password-toggle) .form-input,
    .modern-signup-form .form-group:has(.password-toggle) .form-input {
        padding-right: 35px !important;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .type-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .switch-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Móvil */
@media (max-width: 768px) {
    .login-main-section,
    .signup-main-section {
        padding: 20px 0;
    }

    .login-main-container,
    .signup-main-container {
        padding: 0 15px;
    }

    .login-form-column,
    .signup-form-column,
    .login-info-column,
    .user-type-selector {
        padding: 20px;
        border-radius: 16px;
    }

    .form-title {
        font-size: 22px;
    }

    .form-input {
        height: 42px !important;
        padding: 0 10px 0 35px !important;
        font-size: 14px !important;
    }

    .input-wrapper {
        min-height: 42px;
    }

    .modern-login-form .form-group:has(.password-toggle) .form-input,
    .modern-signup-form .form-group:has(.password-toggle) .form-input {
        padding-right: 30px !important;
    }

    .submit-btn {
        padding: 15px 30px;
        font-size: 15px;
    }

    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .info-features li {
        padding: 12px 0;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .login-form-column,
    .signup-form-column,
    .login-info-column,
    .user-type-selector {
        padding: 15px;
        border-radius: 12px;
    }

    .form-title {
        font-size: 20px;
    }

    .form-input {
        height: 40px !important;
        padding: 0 8px 0 30px !important;
        font-size: 13px !important;
    }

    .input-wrapper {
        min-height: 40px;
    }

    .modern-login-form .form-group:has(.password-toggle) .form-input,
    .modern-signup-form .form-group:has(.password-toggle) .form-input {
        padding-right: 25px !important;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .type-btn {
        padding: 20px 15px;
    }

    .type-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ========================================
   ANIMACIONES Y TRANSICIONES
   ======================================== */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Aplicar animaciones */
.login-form-column,
.signup-form-column {
    animation: fadeInLeft 0.6s ease-out;
}

.login-info-column,
.user-type-selector {
    animation: fadeInRight 0.6s ease-out;
}

.form-group {
    animation: fadeInUp 0.4s ease-out;
}

/* Animación de hover para botones */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

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

/* ========================================
   ESTADOS DE VALIDACIÓN
   ======================================== */

/* Estados de error */
.form-input.error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

.form-input.error:focus {
    border-color: #ef4444 !important;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2) !important;
}

/* Estados de éxito */
.form-input.success {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.05) !important;
}

.form-input.success:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2) !important;
}

/* Mensajes de error */
.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

/* Mensajes de éxito */
.success-message {
    color: #10b981;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

/* ========================================
   ACCESIBILIDAD
   ======================================== */

/* Focus visible para navegación por teclado */
.form-input:focus-visible,
.submit-btn:focus-visible,
.password-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reducir movimiento para usuarios que lo prefieren */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Alto contraste */
@media (prefers-contrast: high) {
    .form-input {
        border-width: 3px !important;
    }
    
    .submit-btn {
        border: 2px solid var(--text-primary);
    }
}

/* ========================================
   SOBRESCRIBIR ESTILOS GLOBALES DE MAIN.CSS
   ======================================== */

/* Sobrescribir TODOS los estilos globales de inputs de main.css */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="username"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
.modern-login-form input,
.modern-signup-form input,
.account-area input,
.form-group input,
.modern-login-form .form-group input,
.modern-signup-form .form-group input,
.account-area .account-form .form-group input,
.ticket-search-form .form-group input,
.checkout-widget.checkout-card .payment-card-form .form-group input,
.checkout-contact-form .form-group input,
.contact-form .form-group input,
.blog-form .form-group input {
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 0 15px 0 45px !important;
    height: 50px !important;
    color: #1e293b !important;
    font-size: 16px !important;
    font-family: inherit !important;
    line-height: 1.5 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
    outline: none !important;
    overflow: visible !important;
    text-transform: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Excluir el newsletter del footer de los estilos globales */
.newsletter-input {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 14px 22px !important;
    height: auto !important;
    color: white !important;
    font-size: 15px !important;
    box-shadow: none !important;
    margin: 0 !important;
    outline: none !important;
    overflow: visible !important;
    text-transform: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="username"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
.modern-login-form input:focus,
.modern-signup-form input:focus,
.account-area input:focus,
.form-group input:focus,
.modern-login-form .form-group input:focus,
.modern-signup-form .form-group input:focus,
.account-area .account-form .form-group input:focus,
.ticket-search-form .form-group input:focus,
.checkout-widget.checkout-card .payment-card-form .form-group input:focus,
.checkout-contact-form .form-group input:focus,
.contact-form .form-group input:focus,
.blog-form .form-group input:focus {
    border: 2px solid #6366f1 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important;
    color: #1e293b !important;
    outline: none !important;
}

/* Sobrescribir placeholders de main.css */
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="username"]::-webkit-input-placeholder,
.modern-login-form input::-webkit-input-placeholder,
.modern-signup-form input::-webkit-input-placeholder,
.account-area input::-webkit-input-placeholder,
.form-group input::-webkit-input-placeholder {
    color: rgba(30, 41, 59, 0.6) !important;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="username"]::placeholder,
.modern-login-form input::placeholder,
.modern-signup-form input::placeholder,
.account-area input::placeholder,
.form-group input::placeholder {
    color: rgba(30, 41, 59, 0.6) !important;
}

/* Estilos específicos para el newsletter del footer */
.newsletter-input:focus {
    outline: none !important;
    border: none !important;
    background: transparent !important;
    color: white !important;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Sobrescribir TODOS los estilos de botones de main.css */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.modern-login-form button,
.modern-signup-form button,
.submit-btn,
.account-area .account-form .form-group input[type="submit"],
.checkout-widget.checkout-card .payment-card-form .form-group input[type="submit"],
.checkout-contact-form .form-group input[type="submit"],
.contact-form .form-group input[type="submit"],
.blog-form .form-group input[type="submit"] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 16px 32px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-width: 160px !important;
    margin: 0 auto !important;
    text-transform: none !important;
    font-family: inherit !important;
    line-height: 1.5 !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
}

/* Excluir el botón del newsletter del footer de los estilos globales */
.newsletter-btn {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%) !important;
    border: none !important;
    padding: 14px 22px !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-transform: none !important;
    font-family: inherit !important;
    line-height: 1.5 !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Sobrescribir hover de botones */
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.modern-login-form button:hover,
.modern-signup-form button:hover,
.submit-btn:hover,
.account-area .account-form .form-group input[type="submit"]:hover,
.checkout-widget.checkout-card .payment-card-form .form-group input[type="submit"]:hover,
.checkout-contact-form .form-group input[type="submit"]:hover,
.contact-form .form-group input[type="submit"]:hover,
.blog-form .form-group input[type="submit"]:hover {
    background: linear-gradient(135deg, #5b5cf0 0%, #7c3aed 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4) !important;
    text-decoration: none !important;
}

/* Hover específico para el botón del newsletter */
.newsletter-btn:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%) !important;
    transform: scale(1.05) !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* Sobrescribir específicamente el botón de contraseña */
.modern-login-form .password-toggle,
.modern-signup-form .password-toggle,
.password-toggle {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    color: var(--primary-color) !important;
    cursor: pointer !important;
    font-size: 12px !important;
    z-index: 10 !important;
    transition: color 0.3s ease !important;
    padding: 0 !important;
    width: 14px !important;
    height: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 3px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    overflow: hidden !important;
}

/* Asegurar centrado del botón Google en login y signup */
.modern-login-form .social-login,
.modern-signup-form .social-login,
.modern-login-form .social-signup,
.modern-signup-form .social-signup {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
}

.modern-login-form .social-login a,
.modern-signup-form .social-login a,
.modern-login-form .social-signup a,
.modern-signup-form .social-signup a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
}

/* ========================================
   SOBRESCRIBIR ESTILOS DE FORMULARIOS DE MAIN.CSS
   ======================================== */

/* Sobrescribir estilos de account-area de main.css */
.account-area {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: auto !important;
}

.account-area .account-form .form-group {
    margin-bottom: 20px !important;
}

.account-area .account-form .form-group label {
    margin-bottom: 8px !important;
    text-transform: none !important;
    color: #374151 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

/* Sobrescribir estilos de form-group de main.css */
.form-group {
    margin-bottom: 20px !important;
}

.form-group label {
    margin-bottom: 8px !important;
    text-transform: none !important;
    color: #374151 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: block !important;
}

/* Sobrescribir estilos de social-icons de main.css */
.social-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.social-icons li {
    margin: 0 !important;
    padding: 0 !important;
}

.social-icons li a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #f8fafc !important;
    color: #6b7280 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e5e7eb !important;
}

.social-icons li a:hover {
    background: #6366f1 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important;
}

/* Sobrescribir estilos de or/divider de main.css */
.or,
.divider {
    text-align: center !important;
    margin: 25px 0 !important;
    position: relative !important;
    color: #6b7280 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.or span,
.divider span {
    background: white !important;
    padding: 0 15px !important;
    position: relative !important;
    z-index: 2 !important;
}

.or::before,
.divider::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: #e5e7eb !important;
    z-index: 1 !important;
}

/* ========================================
   ESTILOS ESPECÍFICOS PARA BOTONES GOOGLE
   ======================================== */

/* Asegurar que los botones Google estén perfectamente centrados */
.social-login,
.social-signup {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
    margin: 25px 0 !important;
}

.social-login a,
.social-signup a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px 28px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    min-width: 140px !important;
    background: #ffffff !important;
    color: #374151 !important;
    border: 1px solid #d1d5db !important;
    margin: 0 auto !important;
}

.social-login a:hover,
.social-signup a:hover {
    background: #f9fafb !important;
    color: #111827 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border-color: #9ca3af !important;
    text-decoration: none !important;
}

/* Estilos específicos para iconos de Google */
.social-login a i,
.social-signup a i {
    font-size: 16px !important;
    color: #4285f4 !important;
}

.social-login a span,
.social-signup a span {
    font-weight: 600 !important;
    color: inherit !important;
}

/* ==========PRELOADER STYLES========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f172a 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.preloader-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 50%, rgba(139, 92, 246, 0.1) 100%);
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.preloader-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 60px 60px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 20px;
}

.preloader-logo {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.preloader-logo .logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    animation: logoPulse 2s ease-in-out infinite;
}

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

.preloader-logo .logo-text {
    color: #6366f1;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.preloader-spinner {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.spinner-ring {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6366f1;
    animation: spinnerBounce 1.4s ease-in-out infinite both;
}

.spinner-ring:nth-child(1) { animation-delay: -0.32s; }
.spinner-ring:nth-child(2) { animation-delay: -0.16s; }
.spinner-ring:nth-child(3) { animation-delay: 0s; }

@keyframes spinnerBounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.preloader-text {
    margin-bottom: 30px;
}

.loading-text {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6366f1;
    animation: dotsPulse 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotsPulse {
    0%, 60%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.preloader-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #06b6d4 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Responsive Preloader */
@media (max-width: 768px) {
    .preloader-content {
        max-width: 300px;
        padding: 15px;
    }
    
    .preloader-logo .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .preloader-logo .logo-text {
        font-size: 24px;
    }
    
    .loading-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .preloader-content {
        max-width: 250px;
        padding: 10px;
    }
    
    .preloader-logo .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .preloader-logo .logo-text {
        font-size: 20px;
    }
}

/* ==========ESTILOS EXTRAÍDOS DE BASE.HTML========== */
/* Body y Main Content - Ancho amplio */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    padding-top: 90px; /* Compensar header fijo (8px padding + 72px logo + 10px margen) */
}

/* Ajuste para páginas que no son home */
body:not(.home-page) {
    padding-top: 90px;
}

/* Ajuste específico para home (sin padding-top) */
body.home-page {
    padding-top: 0;
}

/* Responsive padding-top para header */
@media (max-width: 768px) {
    body:not(.home-page) {
        padding-top: 70px; /* 6px padding + 60px logo + 4px margen */
    }
}

@media (max-width: 480px) {
    body:not(.home-page) {
        padding-top: 60px; /* 5px padding + 50px logo + 5px margen */
    }
}

/* Contenedor principal para el contenido del body */
main, .main-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

/* Contenedor para secciones que necesitan ancho completo */
.full-width-section {
    width: 100%;
    padding: 0;
}

.full-width-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Contenedores principales de las secciones */
.hero-slider-section .container,
.quick-search-section .container,
.featured-events-section .container,
.categories-section .container,
.organizer-cta-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Para otras páginas y contenido general */
.content-section .container,
.page-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Responsive para ancho amplio */
@media (max-width: 1440px) {
    main, .main-content,
    .hero-slider-section .container,
    .quick-search-section .container,
    .featured-events-section .container,
    .categories-section .container,
    .organizer-cta-section .container,
    .content-section .container,
    .page-content .container,
    .full-width-section .container,
    .footer-content,
    .footer-bottom-content,
    .search-container,
    .cta-container {
        padding: 0 25px;
    }
}

@media (max-width: 768px) {
    main, .main-content,
    .hero-slider-section .container,
    .quick-search-section .container,
    .featured-events-section .container,
    .categories-section .container,
    .organizer-cta-section .container,
    .content-section .container,
    .page-content .container,
    .full-width-section .container,
    .footer-content,
    .footer-bottom-content,
    .search-container,
    .cta-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    main, .main-content,
    .hero-slider-section .container,
    .quick-search-section .container,
    .featured-events-section .container,
    .categories-section .container,
    .organizer-cta-section .container,
    .content-section .container,
    .page-content .container,
    .full-width-section .container,
    .footer-content,
    .footer-bottom-content,
    .search-container,
    .cta-container {
        padding: 0 15px;
    }
}

/* Header único para Digipass */
.header-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f172a 100%);
    box-shadow: 0 4px 30px rgba(99, 102, 241, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(20px);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 25px;
    position: relative;
}

/* Logo único Digipass */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.header-section .logo {
    width: auto !important;
    max-width: none !important;
}

.header-section .logo a {
    display: flex !important;
}

.header-section .logo a img {
    max-width: none !important;
    width: auto !important;
}

.logo-image {
    height: 144px !important;
    width: auto !important;
    max-width: 540px !important;
    object-fit: contain;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: logoShine 3s infinite;
}

@keyframes logoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.logo-text {
    color: #6366f1;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #06b6d4, transparent);
    border-radius: 1px;
}

/* Barra de búsqueda única */
.search-section {
    flex: 1;
    max-width: 550px;
    margin: 0 25px;
    position: relative;
}

.search-form {
    width: 100%;
    position: relative;
}

.header-section .search-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px !important;
    border: 2px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-section .search-input-container:hover {
    border-color: #6366f1;
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.3), 0 0 50px rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 55px !important;
}

.header-section .search-input-container:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4), 0 0 60px rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 60px !important;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: #6366f1;
    font-size: 18px;
    z-index: 2;
    transition: all 0.3s ease;
}

.search-input-container:focus-within .search-icon {
    color: #06b6d4;
    transform: scale(1.1);
}

.header-section .search-input {
    width: 100%;
    padding: 15px 20px 15px 55px;
    background: transparent;
    border: none;
    border-radius: 50px !important;
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.search-input:focus {
    outline: none;
}

/* Filtros únicos con estilo Digipass */
.filters-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-item:hover::before {
    left: 100%;
}

.filter-item:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.2);
}

.filter-item i {
    color: #6366f1;
    font-size: 20px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.filter-item:hover i {
    color: #06b6d4;
    transform: scale(1.1);
}

.filter-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Área de usuario única */
.user-area {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 3px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-signup {
    background: rgba(255, 255, 255, 0.05);
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid #6366f1;
    transition: all 0.3s ease;
    font-size: 14px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-signup:hover::before {
    width: 100%;
}

.btn-signup:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

/* Menú móvil */
.header-bar {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.header-bar span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 20px 30px;
}

.mobile-menu.active {
    display: block;
}

.mobile-search {
    margin-bottom: 20px;
}

.mobile-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #31d7a9;
    padding-left: 10px;
}

.mobile-nav-link i {
    width: 20px;
    font-size: 16px;
}

/* Panel de filtros sutil */
.filters-panel {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f172a 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 999;
    min-width: 300px;
    max-width: 400px;
    backdrop-filter: blur(20px);
    margin-top: 10px;
}

.filters-panel.active {
    display: block;
    animation: filterSlideIn 0.3s ease-out;
}

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

.filters-content {
    padding: 20px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section h4 {
    color: #6366f1;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filtro de precio compacto */
.price-range {
    position: relative;
}

.price-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
}

/* Filtro de categorías compacto */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.category-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.category-item input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #6366f1;
}

.category-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
}

/* Filtro de ciudades compacto */
.city-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.city-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.city-item input[type="checkbox"] {
    width: 12px;
    height: 12px;
    accent-color: #6366f1;
}

.city-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 500;
}

/* Filtro de fechas compacto */
.date-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.date-item:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.date-item input[type="radio"] {
    width: 12px;
    height: 12px;
    accent-color: #6366f1;
}

.date-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 500;
}

/* Acciones de filtros compactas */
.filter-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(49, 215, 169, 0.2);
}

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

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
    color: white;
}

/* Efectos únicos para Digipass */
.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6366f1, #06b6d4, #8b5cf6, transparent);
    animation: headerGlow 3s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.5; }
}

/* Partículas flotantes en el header */
.header-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 60px 60px;
    animation: particles 20s linear infinite;
    pointer-events: none;
}

@keyframes particles {
}

/* Efecto de neón en el logo */
.logo-text {
    text-shadow: 
        0 0 5px rgba(99, 102, 241, 0.5),
        0 0 10px rgba(99, 102, 241, 0.3),
        0 0 15px rgba(99, 102, 241, 0.2);
}

/* Efecto de pulso en los filtros activos */
.filter-item.active {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
    animation: filterPulse 2s ease-in-out infinite;
}

@keyframes filterPulse {
}

/* Footer único para Digipass */
.footer-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 -4px 30px rgba(99, 102, 241, 0.1);
}

/* .footer-section::before eliminado - causaba franja visible */
/* @keyframes footerGlow eliminado - ya no se usa */

.footer-main {
    padding: 40px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 202px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.02);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.footer-logo .logo-text {
    color: #6366f1;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-stats {
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.stat-item {
    text-align: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 15px 12px;
    min-width: 80px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #06b6d4, #8b5cf6);
    opacity: 0.8;
}

.stat-item:hover {
    transform: translateY(-2px);
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.stat-number {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* Footer Links */
.footer-links h4 {
    color: #6366f1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 1px;
    background: #6366f1;
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.footer-links a:hover {
    color: #06b6d4;
    padding-left: 15px;
}

.footer-links a:hover::before {
    width: 8px;
}

/* Newsletter */
.footer-newsletter h4 {
    color: #6366f1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.input-group:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input {
    flex: 1;
    padding: 14px 22px;
    background: transparent;
    border: none;
    color: white;
    font-size: 15px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    border: none;
    padding: 14px 22px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    transform: scale(1.05);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: white !important;
    transform: scale(1.1);
}

.social-link i {
    color: #ffffff !important;
    font-size: 18px;
}

.social-link.facebook,
.social-link.twitter,
.social-link.instagram,
.social-link.linkedin,
.social-link.youtube {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.social-link.facebook i,
.social-link.twitter i,
.social-link.instagram i,
.social-link.linkedin i,
.social-link.youtube i {
    color: #ffffff !important;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.made-with {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-top: 5px;
}

.made-with i {
    color: #e74c3c;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
}

.footer-badges {
    display: flex;
    gap: 25px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge:hover {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.2);
}

.badge i {
    color: #06b6d4;
    font-size: 16px;
}

/* Efectos de fondo */
.footer-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    animation: footerParticles 25s linear infinite;
}

@keyframes footerParticles {
}

/* .footer-glow eliminado - causaba franja visible */

/* @keyframes footerGlowPulse eliminado - ya no se usa */

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: none;
    }
    
    .footer-logo-image {
        height: 43px;
        max-width: 173px;
        margin: 0 auto;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-logo-image {
        height: 36px;
        max-width: 144px;
    }
    
    .footer-stats {
        gap: 15px;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-badges {
        gap: 10px;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Responsive */
@media (max-width: 1199px) and (min-width: 992px) {
    .header-section .logo {
        width: auto !important;
        max-width: none !important;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        padding: 6px 15px;
        gap: 15px;
    }
    
    .search-section {
        display: none;
    }
    
    .filters-section {
        display: none;
    }
    
    .header-bar {
        display: flex;
    }
    
    .header-section .logo {
        width: auto !important;
        max-width: none !important;
    }
    
    .logo-image {
        height: 60px !important;
        max-width: 225px !important;
    }
    
    .auth-buttons {
        gap: 8px;
    }
    
    .btn-login, .btn-signup {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 5px 10px;
    }
    
    .header-section .logo {
        width: auto !important;
        max-width: none !important;
    }
    
    .logo-image {
        height: 50px !important;
        max-width: 198px !important;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-login, .btn-signup {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Avatar y menú de usuario único */
.user-menu-item {
    position: relative;
    z-index: 10000;
}

.user-avatar-dropdown {
    position: relative;
    z-index: 10000;
}

.user-avatar {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.user-avatar .user-name {
    color: white !important;
}

/* Asegurar que el texto del usuario sea blanco en el header */
.header-section .user-avatar .user-name {
    color: white !important;
}

.user-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.user-avatar:hover::before {
    left: 100%;
}

.user-avatar:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.2);
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-right: 12px;
    box-shadow: 0 3px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.avatar-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: avatarShine 2s infinite;
}

@keyframes avatarShine {
}

.avatar-circle.large {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-right: 20px;
}

.user-name {
    color: white !important;
    font-weight: 600;
    margin-right: 10px;
    font-size: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.dropdown-arrow {
    color: #6366f1;
    font-size: 14px;
    transition: all 0.3s ease;
}

.user-avatar.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #06b6d4;
}

.user-dropdown-menu {
    position: fixed;
    top: 80px;
    right: 30px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f172a 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    min-width: 320px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(99, 102, 241, 0.3);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    padding: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
    color: white;
}

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

.user-details {
    flex: 1;
}

.user-fullname {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.user-email {
    font-size: 13px;
    opacity: 0.9;
}

.dropdown-divider {
    height: 1px;
    background: rgba(99, 102, 241, 0.3);
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 6px 15px;
    color: #dbe2fb;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

.dropdown-item i {
    width: 20px;
    margin-right: 12px;
    font-size: 14px;
}

.dropdown-item.logout {
    color: #ff6b6b;
}

.dropdown-item.logout:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff5252;
}

/* Responsive */
@media (max-width: 991px) {
    .header-wrapper {
        padding: 0 20px;
    }
    
    .main-nav {
        display: none;
    }
    
    .user-dropdown-menu {
        right: 20px !important;
        min-width: 250px;
    }
    
    .user-name {
        display: none;
    }
    
    .user-avatar {
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        padding: 0 15px;
    }
    
    .header-section {
        padding: 10px 0;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-login, .btn-signup {
        padding: 8px 16px;
        font-size: 14px;
    }
}
    
/* ==========HEADER UNIFICADO========== */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    padding: 8px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 15px;
    position: relative;
}

/* ==========LOGO UNIFICADO========== */
.header-section .logo {
    width: auto !important;
    max-width: none !important;
}

.header-section .logo a {
    display: flex !important;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.header-section .logo a img {
    max-width: none !important;
    width: auto !important;
}

.logo-image {
    height: 72px !important;
    width: auto !important;
    max-width: 270px !important;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

/* ==========BÚSQUEDA UNIFICADA========== */
.search-section {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-form {
    width: 100%;
    position: relative;
}

.search-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px !important;
    border: 2px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input-container:hover {
    border-color: #6366f1;
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.3), 0 0 50px rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 55px !important;
}

.search-input-container:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4), 0 0 60px rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 60px !important;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: #6366f1;
    font-size: 18px;
    z-index: 2;
    transition: all 0.3s ease;
}


.search-input {
    width: 100%;
    padding: 15px 20px 15px 55px;
    background: transparent;
    border: none;
    border-radius: 50px !important;
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}



/* ==========FILTROS UNIFICADOS========== */
.filters-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}


.filter-item i {
    font-size: 16px;
}

/* ==========AUTENTICACIÓN UNIFICADA========== */
.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login, .btn-signup {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(99, 102, 241, 0.2);
}


.btn-signup {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
    color: white;
    border-color: transparent;
}


/* ==========RESPONSIVE HEADER========== */
@media (max-width: 1199px) and (min-width: 992px) {
    .header-section .logo {
        width: auto !important;
        max-width: none !important;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        padding: 6px 15px;
        gap: 15px;
    }
    
    .search-section {
        display: none;
    }
    
    .filters-section {
        display: none;
    }
    
    .header-bar {
        display: flex;
    }
    
    .header-section .logo {
        width: auto !important;
        max-width: none !important;
    }
    
    .logo-image {
        height: 60px !important;
        max-width: 225px !important;
    }
    
    .auth-buttons {
        gap: 8px;
    }
    
    .btn-login, .btn-signup {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 5px 10px;
    }
    
    .header-section .logo {
        width: auto !important;
        max-width: none !important;
    }
    
    .logo-image {
        height: 50px !important;
        max-width: 198px !important;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-login, .btn-signup {
        padding: 8px 16px;
        font-size: 13px;
    }
}
    


/* ==========CABECERAS MODERNAS PARA PANELES========== */

/* Profile Selection Header */
.profile-selection-header-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.profile-selection-header-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.profile-selection-header-content {
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1e293b;
    height: 40px;
}

.welcome-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.2);
}

/* .logo-text eliminado */

.welcome-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.profile-selection-main-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.welcome-greeting {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.user-name {
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.profile-selection-main-subtitle {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.header-decoration {
    display: none;
}

/* Background elements removed for minimalism */

/* Post-Login Header Section - Reutilizable para todas las páginas post-login */
.post-login-header-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.post-login-header-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.post-login-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1e293b;
    height: 80px;
    width: 100%;
}

.post-login-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    flex-shrink: 0;
}

.post-login-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin: 0;
    flex: 1;
    margin-left: 20px;
}

.post-login-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin: 0;
    flex-shrink: 0;
}

.post-login-main-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #1e293b;
}

.post-login-main-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}


/* Modern Page Header (Panel Usuario y Organizador) */
.modern-page-header {
    background: #ffffff;
    border-radius: 8px;
    padding: 0 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
    height: 40px;
    display: flex;
    align-items: center;
}

.modern-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #06b6d4 100%);
    border-radius: 8px 8px 0 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 40px;
}

.header-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.2);
    flex-shrink: 0;
}

.header-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-category {
    display: inline-block;
    background: #f1f5f9;
    color: #6366f1;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    border: 1px solid #e2e8f0;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1;
    color: #1e293b;
}

.welcome-text {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.user-name, .highlight-text {
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.header-subtitle {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-stats {
    display: flex;
    gap: 6px;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    background: #f8fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.quick-stat:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.quick-stat i {
    color: #6366f1;
    font-size: 10px;
}

.quick-stat span {
    font-weight: 600;
    color: #1e293b;
    font-size: 10px;
}

.header-decoration {
    display: none;
}

/* Animaciones removidas para minimalismo */

/* Responsive Design */
@media (max-width: 768px) {
    .profile-selection-header-section {
        height: 40px;
        padding: 0;
    }
    
    .profile-selection-header-container {
        padding: 0 15px;
    }
    
    .profile-selection-main-title {
        font-size: 12px;
    }
    
    /* .logo-text eliminado */
    
    .header-content {
        gap: 8px;
    }
    
    .header-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .header-title {
        font-size: 12px;
    }
    
    .quick-stats {
        gap: 4px;
    }
    
    .modern-page-header {
        padding: 0 15px;
        height: 40px;
    }
    
    .post-login-header-section {
        height: 80px;
        padding: 0;
    }
    
    .post-login-header-container {
        padding: 0 15px;
    }
    
    .post-login-main-title {
        font-size: 20px;
    }
    
    .post-login-main-subtitle {
        font-size: 12px;
    }
    
    .post-login-text {
        margin-left: 15px;
    }
    
    .post-login-right {
        align-items: flex-end;
    }
}

@media (max-width: 480px) {
    .profile-selection-main-title {
        font-size: 11px;
    }
    
    /* .logo-text eliminado */
    
    .header-title {
        font-size: 11px;
    }
    
    .modern-page-header {
        padding: 0 12px;
        height: 40px;
    }
    
    .post-login-header-section {
        height: 80px;
        padding: 0;
    }
    
    .post-login-header-container {
        padding: 0 12px;
    }
    
    .post-login-main-title {
        font-size: 18px;
    }
    
    .post-login-main-subtitle {
        font-size: 11px;
    }
    
    .post-login-text {
        margin-left: 10px;
    }
    
    .post-login-right {
        align-items: flex-end;
    }
}

/* ==========FOOTER UNIFICADO========== */
.footer-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 30px rgba(99, 102, 241, 0.1);
}


@keyframes footerGlow {
}

.footer-main {
    padding: 40px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 20px;
}


.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-stats {
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    min-width: 80px;
    transition: all 0.3s ease;
}


.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links h4 {
    color: #6366f1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}




.footer-newsletter h4 {
    color: #6366f1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}


.newsletter-btn {
    padding: 6px 15px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


.footer-bottom {
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.made-with {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 5px;
}

.footer-badges {
    display: flex;
    gap: 25px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    transition: all 0.3s ease;
}


/* ==========RESPONSIVE FOOTER========== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: none;
    }
    
    .footer-logo-image {
        height: 43px;
        max-width: 173px;
        margin: 0 auto;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-logo-image {
        height: 36px;
        max-width: 144px;
    }
    
    .footer-stats {
        gap: 15px;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}
    


/* ==========HERO SLIDER STYLES========== */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f172a 100%);
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(22, 33, 62, 0.8) 100%);
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 50%, rgba(139, 92, 246, 0.1) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: white;
    padding: 0 20px;
}

.slide-badge {
    margin-bottom: 20px;
}

.badge-text {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #6366f1 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.slide-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

.meta-item i {
    color: #6366f1;
    font-size: 18px;
}

.slide-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}


.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}


/* Controles del slider */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 4;
    pointer-events: none;
}

.hero-slider-section .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-size: 16px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    text-align: center !important;
    vertical-align: middle !important;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-btn:hover {
    background: rgba(99, 102, 241, 0.3);
    border-color: #6366f1;
    transform: translateY(-50%) scale(1.1);
}

/* Indicadores del slider */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 4;
    align-items: center;
    justify-content: center;
}

.indicator {
    width: 6px;
    height: 6px;
    border-radius: 2px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 3px;
    display: inline-block;
    flex-shrink: 0;
    opacity: 0.6;
}

.indicator.active {
    background: #6366f1 !important;
    border-color: #6366f1 !important;
    transform: scale(1.0);
    box-shadow: 0 0 4px rgba(99, 102, 241, 0.3);
    opacity: 1;
}

.indicator:hover {
    background: rgba(99, 102, 241, 0.4) !important;
    border-color: rgba(99, 102, 241, 0.6) !important;
    transform: scale(1.0);
    opacity: 0.8;
}

/* Barra de progreso */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 4;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #06b6d4 100%);
    width: 0%;
    transition: width 0.1s ease;
}

/* ==========QUICK SEARCH SECTION========== */
.quick-search-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.quick-search-section::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%236366f1" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.search-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-header {
    text-align: center;
    margin-bottom: 50px;
}

.search-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.modern-search-form {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.search-input-group {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 140px;
    gap: 20px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.search-field-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon, .filter-icon, .location-icon {
    position: absolute;
    left: 15px;
    color: #6366f1;
    font-size: 18px;
    z-index: 2;
}

.search-input, .search-select {
    width: 100%;
    height: 52px;
    padding: 0 15px 0 45px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #1e293b;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-input:focus, .search-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}


.search-btn-wrapper {
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.search-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.search-btn:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

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

/* Categorías rápidas */
.quick-categories {
    text-align: center;
}

.categories-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-name {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
}

/* Versión original con cuadros centrados */

/* ==========FEATURED EVENTS SECTION========== */
.featured-events-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.event-badge .badge-text {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.date-day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 102, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.overlay-content i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}

.event-content {
    padding: 25px;
}

.event-title {
    margin-bottom: 15px;
}

.event-title a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-title a:hover {
    color: #6366f1;
}

.event-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.event-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
}

.event-meta .meta-item i {
    color: #6366f1;
    width: 16px;
}

.event-actions {
    display: flex;
    gap: 15px;
}

.btn-details, .btn-buy {
    flex: 1;
    padding: 6px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-details {
    background: #f1f5f9;
    color: #6366f1;
    border: 2px solid #e2e8f0;
}

.btn-details:hover {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.btn-buy {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    transform: translateY(-2px);
}

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

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

/* ==========CATEGORIES SECTION========== */
.categories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.category-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.category-header .category-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.category-description {
    color: #64748b;
    font-size: 14px;
}

.category-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #06b6d4;
    transform: translateX(5px);
}

.category-events {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mini-event-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.mini-event-card:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.mini-event-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-event-title {
    margin-bottom: 8px;
}

.mini-event-title a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mini-event-title a:hover {
    color: #6366f1;
}

.mini-event-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #64748b;
}

.mini-event-date {
    font-weight: 600;
}

.no-events {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}

.no-events a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

/* ==========ORGANIZER CTA SECTION========== */
.organizer-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.organizer-cta-section::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%236366f1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

/* ==========RESPONSIVE DESIGN========== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-actions {
        flex-direction: column;
    }
    
    .hero-slider-section .slider-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        font-size: 14px !important;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .slider-indicators {
        bottom: 20px;
        gap: 3px;
    }
    
    .indicator {
        width: 5px;
        height: 5px;
        margin: 0 2px;
        border-radius: 1px !important;
    }
    
    .search-input-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .search-input, .search-select, .search-btn {
        height: 48px;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .search-title {
        font-size: 2.2rem;
    }
    
    .modern-search-form {
        padding: 25px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .search-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}