/* _content/GestionInternos/Components/CardViews/Empleado_CardView.razor.rz.scp.css */
/* ========================================
   EMPLEADO CARD VIEW - DISEÑO DE PLANTILLA
   ======================================== */

.employee-card[b-xb2sqn12bj] {
    width: 100%; /* ocupar el ancho de la columna */
    max-width: 100%;
    height: auto; /* altura automática según contenido */
    min-height: 150px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    margin: 0; /* Sin márgenes entre cards */
    transition: all 0.3s ease;
    margin: 2px 0; /* Reducir espacio vertical entre cards */
}

/* ========================================
   TARJETA DE CUMPLEAÑOS - DISEÑO ESPECIAL
   ======================================== */

.employee-card.birthday-card[b-xb2sqn12bj] {
    border: 3px solid #ff4757;
    box-shadow: 0 8px 32px rgba(255, 71, 87, 0.3), 0 0 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: visible;
}

.employee-card.birthday-card[b-xb2sqn12bj]::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    z-index: -1;
}


/* ========================================
   TARJETA DE LICENCIA - DISEÑO ESPECIAL
   ======================================== */

.employee-card.license-card[b-xb2sqn12bj] {
    /* background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid #fbbf24;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.2), 0 0 20px rgba(251, 191, 36, 0.3); */
    position: relative;
    overflow: visible;
}

.employee-card.license-card[b-xb2sqn12bj]::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    z-index: -1;
}


.employee-card:hover[b-xb2sqn12bj] {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.employee-card.flipped[b-xb2sqn12bj] {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.card-inner[b-xb2sqn12bj] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
}

.employee-card.flipped .card-inner[b-xb2sqn12bj] {
    transform: rotateY(180deg);
}


/* ========================================
   ELEMENTOS DE CELEBRACIÓN DE CUMPLEAÑOS
   ======================================== */

/* Decoración de confetti */
.birthday-decoration[b-xb2sqn12bj] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.confetti[b-xb2sqn12bj] {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    animation: confettiFall-b-xb2sqn12bj 3s linear infinite;
}

.confetti-1[b-xb2sqn12bj] {
    left: 10%;
    animation-delay: 0s;
    background: var(--primary);
}

.confetti-2[b-xb2sqn12bj] {
    left: 30%;
    animation-delay: 0.5s;
    background: #ffd93d;
}

.confetti-3[b-xb2sqn12bj] {
    left: 50%;
    animation-delay: 1s;
    background: #6bcf7f;
}

.confetti-4[b-xb2sqn12bj] {
    left: 70%;
    animation-delay: 1.5s;
    background: #4ecdc4;
}

.confetti-5[b-xb2sqn12bj] {
    left: 90%;
    animation-delay: 2s;
    background: #ff9ff3;
}

@keyframes confettiFall-b-xb2sqn12bj {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(200px) rotate(360deg);
        opacity: 0;
    }
}

/* Corona de cumpleaños */
.birthday-crown[b-xb2sqn12bj] {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 15;
    animation: crownBounce-b-xb2sqn12bj 1.5s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

@keyframes crownBounce-b-xb2sqn12bj {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.1);
    }
}

/* Foto de cumpleaños */
.employee-photo.birthday-photo[b-xb2sqn12bj] {
    border: 2px solid #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}


/* Badge de cumpleaños */
.birthday-badge[b-xb2sqn12bj] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(15, 25, 132, 0.4);
}

.birthday-badge i[b-xb2sqn12bj] {
    font-size: 0.8rem;
    animation: cakeBounce-b-xb2sqn12bj 1s ease-in-out infinite;
}


@keyframes cakeBounce-b-xb2sqn12bj {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* ========================================
   ELEMENTOS DE LICENCIA
   ======================================== */

/* Decoración de licencia */
.license-decoration[b-xb2sqn12bj] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.license-icon[b-xb2sqn12bj] {
    font-size: 3rem;
    color: #fbbf24;
    opacity: 0.1;
    animation: licenseIconFloat-b-xb2sqn12bj 3s ease-in-out infinite;
}

@keyframes licenseIconFloat-b-xb2sqn12bj {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.2;
    }
}

/* Badge de licencia */
.license-badge[b-xb2sqn12bj] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fbbf24;
    color: #1f2937;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.license-badge i[b-xb2sqn12bj] {
    font-size: 0.8rem;
    animation: clockTick-b-xb2sqn12bj 1s ease-in-out infinite;
}


@keyframes clockTick-b-xb2sqn12bj {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

/* ========================================
   TARJETA COMBINADA - CUMPLEAÑOS + LICENCIA
   ======================================== */

.employee-card.birthday-license-card[b-xb2sqn12bj] {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}



/* ========================================
   ELEMENTOS COMBINADOS - CUMPLEAÑOS + LICENCIA
   ======================================== */

/* Decoración combinada */
.birthday-license-decoration[b-xb2sqn12bj] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.birthday-license-icon[b-xb2sqn12bj] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.1;
    display: flex;
    gap: 10px;
}

.birthday-license-icon i:first-child[b-xb2sqn12bj] {
    color: var(--primary);
    animation: cakeBounce-b-xb2sqn12bj 1.5s ease-in-out infinite;
}

.birthday-license-icon i:last-child[b-xb2sqn12bj] {
    color: #fbbf24;
    animation: clockTick-b-xb2sqn12bj 1s ease-in-out infinite;
}


/* Contenedor de badges duales */
.dual-badges-container[b-xb2sqn12bj] {
    display: flex;
    gap: 6px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.dual-badges-container .birthday-badge[b-xb2sqn12bj] {
    flex: 1;
    min-width: 0;
    margin-top: 0;
}

.dual-badges-container .license-badge[b-xb2sqn12bj] {
    flex: 1;
    min-width: 0;
    margin-top: 0;
}

/* Badge combinado (mantener para compatibilidad) */
.birthday-license-badge[b-xb2sqn12bj] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(45deg, var(--primary), #fbbf24);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.birthday-license-badge i:first-child[b-xb2sqn12bj] {
    font-size: 0.8rem;
    animation: cakeBounce-b-xb2sqn12bj 1s ease-in-out infinite;
}

.birthday-license-badge i:last-child[b-xb2sqn12bj] {
    font-size: 0.8rem;
    animation: clockTick-b-xb2sqn12bj 1s ease-in-out infinite;
}


.card-front[b-xb2sqn12bj], .card-back[b-xb2sqn12bj] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-front[b-xb2sqn12bj] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
    transform: rotateY(0deg);
    backface-visibility: hidden;
}

.card-front[b-xb2sqn12bj]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    z-index: 1;
}

.card-back[b-xb2sqn12bj] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--color3) 100%);
    color: var(--white);
    padding: 12px; /* equilibrio visual */
    transform: rotateY(180deg);
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ========================================
   CARD FRONT - DISEÑO DE PLANTILLA
   ======================================== */

.card-front-body[b-xb2sqn12bj] {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 12px; /* equilibrio visual */
    gap: 12px;
}

.employee-photo[b-xb2sqn12bj] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gray-500);
    font-weight: 300;
}

.employee-photo img[b-xb2sqn12bj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Fallback para cuando no hay imagen */
.employee-initials[b-xb2sqn12bj] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--color3));
    color: var(--white);
    font-weight: 600;
    font-size: inherit;
    border-radius: 50%;
    text-align: center;
}

/* Estilos para manejo de errores de imagen */
.employee-photo img[src=""][b-xb2sqn12bj],
.employee-photo img:not([src])[b-xb2sqn12bj] {
    display: none;
}

.employee-photo img[src=""] + .employee-initials[b-xb2sqn12bj],
.employee-photo img:not([src]) + .employee-initials[b-xb2sqn12bj] {
    display: flex;
}

/* Asegurar que las imágenes se carguen correctamente */
.employee-photo[b-xb2sqn12bj] {
    position: relative;
    overflow: hidden;
}

.employee-photo img[b-xb2sqn12bj] {
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
}

/* Estilos adicionales para mejorar la carga de imágenes */
.employee-photo img[b-xb2sqn12bj] {
    background-color: var(--gray-100);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f3f4f6"/><text x="50" y="50" text-anchor="middle" dy=".3em" fill="%236b7280" font-family="Arial, sans-serif" font-size="12">Cargando...</text></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60% 60%;
}

.employee-photo img[src]:not([src=""])[b-xb2sqn12bj] {
    background-image: none;
}

.employee-info[b-xb2sqn12bj] {
    flex: 1;
    color: #1a202c;
}

.employee-name-front[b-xb2sqn12bj] {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 700;
    margin-bottom: 4px;
    color: #2d3748;
    line-height: 1.2;
}

.employee-internal-front[b-xb2sqn12bj] {
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.employee-role-front[b-xb2sqn12bj] {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    color: #718096;
    font-weight: 500;
    line-height: 1.3;
}

/* Estilos especiales para texto en tarjetas de cumpleaños */
.birthday-card .employee-name-front[b-xb2sqn12bj] {
    color: #2d3748;
    /* text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); */
    font-weight: 800;
}

.birthday-card .employee-internal-front[b-xb2sqn12bj] {
    color: #ff4757;
    font-weight: 700;
    /* text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6); */
}

.birthday-card .employee-role-front[b-xb2sqn12bj] {
    color: #2d3748;
    font-weight: 600;
    /* text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6); */
}

/* Estilos especiales para texto en tarjetas de licencia */
.license-card .employee-name-front[b-xb2sqn12bj] {
    color: #2d3748;
    font-weight: 700;
}

.license-card .employee-internal-front[b-xb2sqn12bj] {
    color: var(--primary);
    font-weight: 600;
}

.license-card .employee-role-front[b-xb2sqn12bj] {
    color: #718096;
    font-weight: 500;
}

/* Estilos especiales para texto en tarjetas combinadas */
.birthday-license-card .employee-name-front[b-xb2sqn12bj] {
    color: #2d3748;
    /* text-shadow: 1px 1px 2px rgba(255, 107, 107, 0.3); */
    font-weight: 800;
}

.birthday-license-card .employee-internal-front[b-xb2sqn12bj] {
    color: var(--primary);
    font-weight: 700;
    /* text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6); */
}

.birthday-license-card .employee-role-front[b-xb2sqn12bj] {
    color: #374151;
    font-weight: 600;
    /* text-shadow: 1px 1px 2px rgba(251, 191, 36, 0.3); */
}

/* ========================================
   CARD BACK - DISEÑO DE PLANTILLA
   ======================================== */

.card-back-body[b-xb2sqn12bj] {
    height: auto;
    padding: 0;
    width: 100%;
}

.employee-details[b-xb2sqn12bj] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.detail-item[b-xb2sqn12bj] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    padding: 4px 0;
}

.detail-item i[b-xb2sqn12bj] {
    color: var(--white);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.detail-value[b-xb2sqn12bj] {
    color: var(--white);
    font-weight: 500;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    text-align: center;
    word-break: break-word;
}

.card-back-actions[b-xb2sqn12bj] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-info-modal[b-xb2sqn12bj] {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.btn-info-modal:hover[b-xb2sqn12bj] {
    background: var(--color3);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.btn-info-modal i[b-xb2sqn12bj] {
    font-size: 0.9rem;
}

/* ========================================
   ANIMACIONES Y EFECTOS - SOLO PARA CARDS
   ======================================== */

/* Animación mantenida solo para las tarjetas de empleados */
.employee-card[b-xb2sqn12bj] {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Pantallas grandes (desktop) */
@media (min-width: 1200px) {
    .employee-card[b-xb2sqn12bj] {
        width: 100%;
        min-height: 180px;
    }
    
    .employee-name-front[b-xb2sqn12bj] {
        font-size: 1.08rem; /* -10% */
    }
    
    .employee-internal-front[b-xb2sqn12bj] {
        font-size: 1rem;
    }
    
    .employee-role-front[b-xb2sqn12bj] {
        font-size: 0.855rem; /* -10% */
    }
}

/* Pantallas medianas (tablet landscape) */
@media (max-width: 1199px) and (min-width: 992px) {
    .employee-card[b-xb2sqn12bj] {
        width: 100%;
        min-height: 170px;
    }
}

/* Tablets */
@media (max-width: 991px) and (min-width: 769px) {
    .employee-card[b-xb2sqn12bj] {
        width: 100%;
        min-height: 160px;
    }
    
    .employee-photo[b-xb2sqn12bj] {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .employee-name-front[b-xb2sqn12bj] {
        font-size: 0.9rem; /* -10% */
    }
    
    .employee-internal-front[b-xb2sqn12bj] {
        font-size: 0.9rem;
    }
    
    .employee-role-front[b-xb2sqn12bj] {
        font-size: 0.765rem; /* -10% */
    }
    
    .detail-item[b-xb2sqn12bj] {
        font-size: 0.75rem;
    }
    
    .detail-value[b-xb2sqn12bj] {
        font-size: 0.75rem;
    }
}

/* Móviles grandes */
@media (max-width: 768px) and (min-width: 577px) {
    .employee-card[b-xb2sqn12bj] {
        width: 100%;
        min-height: 150px;
    }
    
    .card-front-body[b-xb2sqn12bj] {
        padding: 12px;
        gap: 12px;
    }
    
    .employee-photo[b-xb2sqn12bj] {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }
    
    .employee-name-front[b-xb2sqn12bj] {
        font-size: 0.855rem; /* -10% */
    }
    
    .employee-internal-front[b-xb2sqn12bj] {
        font-size: 0.85rem;
    }
    
    .employee-role-front[b-xb2sqn12bj] {
        font-size: 0.72rem; /* -10% */
    }
    
    .detail-item[b-xb2sqn12bj] {
        font-size: 0.7rem;
        gap: 6px;
    }
    
    .detail-value[b-xb2sqn12bj] {
        font-size: 0.7rem;
    }
    
    .btn-info-modal[b-xb2sqn12bj] {
        width: 28px;
        height: 28px;
    }
    
    .btn-info-modal i[b-xb2sqn12bj] {
        font-size: 0.8rem;
    }
}

/* Móviles medianos */
@media (max-width: 576px) and (min-width: 481px) {
    .employee-card[b-xb2sqn12bj] {
        width: 100%;
        min-height: 145px;
    }
    
    .card-front-body[b-xb2sqn12bj] {
        padding: 10px;
        gap: 10px;
    }
    
    .employee-photo[b-xb2sqn12bj] {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .employee-name-front[b-xb2sqn12bj] {
        font-size: 0.81rem; /* -10% */
    }
    
    .employee-internal-front[b-xb2sqn12bj] {
        font-size: 0.8rem;
    }
    
    .employee-role-front[b-xb2sqn12bj] {
        font-size: 0.675rem; /* -10% */
    }
    
    .detail-item[b-xb2sqn12bj] {
        font-size: 0.65rem;
        gap: 5px;
    }
    
    .detail-value[b-xb2sqn12bj] {
        font-size: 0.65rem;
    }
    
    .btn-info-modal[b-xb2sqn12bj] {
        width: 26px;
        height: 26px;
    }
    
    .btn-info-modal i[b-xb2sqn12bj] {
        font-size: 0.75rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .employee-card[b-xb2sqn12bj] {
        width: 100%;
        min-height: 136px;
    }
    
    .card-front-body[b-xb2sqn12bj] {
        padding: 8px;
        gap: 8px;
    }
    
    .employee-photo[b-xb2sqn12bj] {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .employee-name-front[b-xb2sqn12bj] {
        font-size: 0.765rem; /* -10% */
    }
    
    .employee-internal-front[b-xb2sqn12bj] {
        font-size: 0.75rem;
    }
    
    .employee-role-front[b-xb2sqn12bj] {
        font-size: 0.63rem; /* -10% */
    }
    
    .detail-item[b-xb2sqn12bj] {
        font-size: 0.6rem;
        gap: 4px;
    }
    
    .detail-value[b-xb2sqn12bj] {
        font-size: 0.6rem;
    }
    
    .btn-info-modal[b-xb2sqn12bj] {
        width: 24px;
        height: 24px;
    }
    
    .btn-info-modal i[b-xb2sqn12bj] {
        font-size: 0.7rem;
    }
    
    /* Ajustes responsivos para elementos de cumpleaños */
    .birthday-crown[b-xb2sqn12bj] {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
    
    .birthday-badge[b-xb2sqn12bj] {
        font-size: 0.6rem;
        padding: 3px 6px;
        gap: 4px;
    }
    
    .birthday-badge i[b-xb2sqn12bj] {
        font-size: 0.7rem;
    }
    
    .confetti[b-xb2sqn12bj] {
        width: 6px;
        height: 6px;
    }
    
    /* Ajustes responsivos para elementos de licencia */
    .license-icon[b-xb2sqn12bj] {
        font-size: 2rem;
    }
    
    .license-badge[b-xb2sqn12bj] {
        font-size: 0.6rem;
        padding: 3px 6px;
        gap: 4px;
    }
    
    .license-badge i[b-xb2sqn12bj] {
        font-size: 0.7rem;
    }
    
    /* Ajustes responsivos para elementos combinados */
    .birthday-license-icon[b-xb2sqn12bj] {
        font-size: 2rem;
        gap: 8px;
    }
    
    .birthday-license-badge[b-xb2sqn12bj] {
        font-size: 0.6rem;
        padding: 3px 6px;
        gap: 4px;
    }
    
    .birthday-license-badge i[b-xb2sqn12bj] {
        font-size: 0.7rem;
    }
    
    /* Ajustes responsivos para contenedor de badges duales */
    .dual-badges-container[b-xb2sqn12bj] {
        gap: 4px;
    }
    
    .dual-badges-container .birthday-badge[b-xb2sqn12bj],
    .dual-badges-container .license-badge[b-xb2sqn12bj] {
        font-size: 0.6rem;
        padding: 3px 6px;
        gap: 4px;
    }
    
    .dual-badges-container .birthday-badge i[b-xb2sqn12bj],
    .dual-badges-container .license-badge i[b-xb2sqn12bj] {
        font-size: 0.7rem;
    }
}

/* ========================================
   ESTADOS ESPECIALES
   ======================================== */

.employee-card:focus[b-xb2sqn12bj] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(159, 17, 27, 0.3);
}

.employee-card:focus-visible[b-xb2sqn12bj] {
    outline: 2px solid #9f111b;
    outline-offset: 2px;
}

/* Efecto de carga */
.employee-card.loading[b-xb2sqn12bj] {
    opacity: 0.6;
    pointer-events: none;
}

.employee-card.loading[b-xb2sqn12bj]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #9f111b;
    border-radius: 50%;
    animation: spin-b-xb2sqn12bj 1s linear infinite;
}

@keyframes spin-b-xb2sqn12bj {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   ACCESIBILIDAD
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .employee-card[b-xb2sqn12bj],
    .card-inner[b-xb2sqn12bj],
    .employee-photo img[b-xb2sqn12bj],
    .btn-info-modal[b-xb2sqn12bj],
    .detail-item[b-xb2sqn12bj] {
        transition: none;
        animation: none;
    }
    
    .employee-card:hover .card-inner[b-xb2sqn12bj] {
        transform: none;
    }
    
    .employee-card:hover[b-xb2sqn12bj] {
        transform: none;
        animation: none;
    }
    
    /* Desactivar animaciones de cumpleaños para usuarios que prefieren movimiento reducido */
    .birthday-card[b-xb2sqn12bj],
    .birthday-crown[b-xb2sqn12bj],
    .birthday-photo[b-xb2sqn12bj],
    .birthday-badge[b-xb2sqn12bj],
    .confetti[b-xb2sqn12bj],
    .birthday-decoration[b-xb2sqn12bj] {
        animation: none;
    }
    
    .birthday-card[b-xb2sqn12bj]::before {
        animation: none;
    }
    
    /* Desactivar animaciones de licencia para usuarios que prefieren movimiento reducido */
    .license-card[b-xb2sqn12bj],
    .license-icon[b-xb2sqn12bj],
    .license-badge[b-xb2sqn12bj] {
        animation: none;
    }
    
    .license-card[b-xb2sqn12bj]::before {
        animation: none;
    }
    
    /* Desactivar animaciones combinadas para usuarios que prefieren movimiento reducido */
    .birthday-license-card[b-xb2sqn12bj],
    .birthday-license-icon[b-xb2sqn12bj],
    .birthday-license-badge[b-xb2sqn12bj] {
        animation: none;
    }
    
    .birthday-license-card[b-xb2sqn12bj]::before {
        animation: none;
    }
}

/* ========================================
   MODO OSCURO (OPCIONAL)
   ======================================== */

@media (prefers-color-scheme: dark) {
    .card-back[b-xb2sqn12bj] {
        background: linear-gradient(135deg, #334155 0%, #475569 100%);
    }
    
    .employee-role-front[b-xb2sqn12bj] {
        color: #94a3b8;
    }
    
    .detail-item[b-xb2sqn12bj] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .detail-value[b-xb2sqn12bj] {
        color: #e2e8f0;
    }
    
    /* Ajustes para modo oscuro en tarjetas de cumpleaños */
    .birthday-card[b-xb2sqn12bj] {
        background: #dc2626;
        border-color: #ef4444;
    }
    
    .birthday-card .employee-name-front[b-xb2sqn12bj] {
        color: #f8fafc;
        /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); */
    }
    
    .birthday-card .employee-internal-front[b-xb2sqn12bj] {
        color: #fbbf24;
        /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); */
    }
    
    .birthday-card .employee-role-front[b-xb2sqn12bj] {
        color: #f8fafc;
        /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); */
    }
    
    .birthday-badge[b-xb2sqn12bj] {
        background: #0a7d84;
        color: #ffffff;
        box-shadow: #0a7d84;
    }
    
    .birthday-crown[b-xb2sqn12bj] {
        background: #fbbf24;
        color: #dc2626;
        box-shadow: 0 2px 8px rgba(251, 191, 36, 0.6);
    }
    
    /* Ajustes para modo oscuro en tarjetas de licencia */
    .license-card[b-xb2sqn12bj] {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        /* border-color: #f59e0b; */
    }
    
    .license-card .employee-name-front[b-xb2sqn12bj] {
        color: #2d3748;
    }
    
    .license-card .employee-internal-front[b-xb2sqn12bj] {
        color: var(--primary);
    }
    
    .license-card .employee-role-front[b-xb2sqn12bj] {
        color: #718096;
    }
    
    .license-badge[b-xb2sqn12bj] {
        background: #f59e0b;
        color: #1f2937;
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    }
    
    .license-icon[b-xb2sqn12bj] {
        color: #f59e0b;
    }
    
    /* Ajustes para modo oscuro en tarjetas combinadas */
    .birthday-license-card[b-xb2sqn12bj] {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-color: var(--primary);
    }
    
    .birthday-license-card .employee-name-front[b-xb2sqn12bj] {
        color: #2d3748;
        /* text-shadow: 1px 1px 2px rgba(255, 107, 107, 0.4); */
    }
    
    .birthday-license-card .employee-internal-front[b-xb2sqn12bj] {
        color: var(--primary);
        /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); */
    }
    
    .birthday-license-card .employee-role-front[b-xb2sqn12bj] {
        color: #374151;
        /* text-shadow: 1px 1px 2px rgba(245, 158, 11, 0.4); */
    }
    
    .birthday-license-badge[b-xb2sqn12bj] {
        background: linear-gradient(45deg, #dc2626, #f59e0b);
        color: #f8fafc;
        box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
    }
    
    .birthday-license-icon i:first-child[b-xb2sqn12bj] {
        color: #dc2626;
    }
    
    .birthday-license-icon i:last-child[b-xb2sqn12bj] {
        color: #f59e0b;
    }
}
/* _content/GestionInternos/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-3gbxot6wbx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-3gbxot6wbx] {
    flex: 1;
}

.sidebar[b-3gbxot6wbx] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-3gbxot6wbx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-3gbxot6wbx]  a, .top-row[b-3gbxot6wbx]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-3gbxot6wbx]  a:hover, .top-row[b-3gbxot6wbx]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-3gbxot6wbx]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-3gbxot6wbx] {
        justify-content: space-between;
    }

    .top-row[b-3gbxot6wbx]  a, .top-row[b-3gbxot6wbx]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-3gbxot6wbx] {
        flex-direction: row;
    }

    .sidebar[b-3gbxot6wbx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-3gbxot6wbx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-3gbxot6wbx]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

}

#blazor-error-ui[b-3gbxot6wbx] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-3gbxot6wbx] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/GestionInternos/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ak7ic3glc2] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-ak7ic3glc2] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-ak7ic3glc2] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ak7ic3glc2] {
    font-size: 1.1rem;
}

.bi[b-ak7ic3glc2] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ak7ic3glc2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ak7ic3glc2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ak7ic3glc2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ak7ic3glc2] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ak7ic3glc2] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ak7ic3glc2] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ak7ic3glc2]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-ak7ic3glc2]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ak7ic3glc2]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-ak7ic3glc2] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ak7ic3glc2] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ak7ic3glc2] {
        display: none;
    }

    .nav-scrollable[b-ak7ic3glc2] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/GestionInternos/Components/Modals/Cumpleanos_Modal.razor.rz.scp.css */
/* ========================================
   ESTILOS PARA MODAL DE CUMPLEAÑEROS
   ======================================== */

/* Modal de Cumpleañeros */
.cumpleanos-modal-overlay[b-wfuk8n1peb] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cumpleanos-modal-overlay.show[b-wfuk8n1peb] {
    opacity: 1;
    visibility: visible;
}

.cumpleanos-modal-container[b-wfuk8n1peb] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%), 
                url('images/Birthday_Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    width: 700px;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    transform: scale(1) translateY(0);
    transition: opacity 0.3s ease;
}

.cumpleanos-modal-overlay.show .cumpleanos-modal-container[b-wfuk8n1peb] {
    transform: scale(1) translateY(0);
}

.cumpleanos-modal-header[b-wfuk8n1peb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(135deg, var(--primary), #c53030);
    color: #FFFFFF;
}

.cumpleanos-modal-header h3[b-wfuk8n1peb] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #FFFFFF;
}

.cumpleanos-modal-header i[b-wfuk8n1peb] {
    font-size: 1.3rem;
}

.cumpleanos-modal-close[b-wfuk8n1peb] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cumpleanos-modal-close:hover[b-wfuk8n1peb] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.cumpleanos-modal-body[b-wfuk8n1peb] {
    padding: var(--spacing-xl);
    max-height: 60vh;
    overflow-y: auto;
}

.cumpleanos-employees-grid[b-wfuk8n1peb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.cumpleanos-employee-card[b-wfuk8n1peb] {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    border: 2px solid rgba(159, 17, 27, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cumpleanos-employee-card:hover[b-wfuk8n1peb] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(159, 17, 27, 0.2);
    border-color: rgba(159, 17, 27, 0.3);
}

.cumpleanos-employee-card .cumpleanos-icon[b-wfuk8n1peb] {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.cumpleanos-employee-card .cumpleanos-photo-container[b-wfuk8n1peb] {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.cumpleanos-employee-card .cumpleanos-employee-photo[b-wfuk8n1peb],
.cumpleanos-employee-card .cumpleanos-employee-initials[b-wfuk8n1peb] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid rgba(159, 17, 27, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), #c53030);
    color: var(--white);
}

.cumpleanos-employee-card .cumpleanos-employee-photo:hover[b-wfuk8n1peb],
.cumpleanos-employee-card .cumpleanos-employee-initials:hover[b-wfuk8n1peb] {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(159, 17, 27, 0.25);
    border-color: rgba(159, 17, 27, 0.4);
}

.cumpleanos-employee-card .cumpleanos-greeting[b-wfuk8n1peb] {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cumpleanos-employee-card .cumpleanos-name[b-wfuk8n1peb] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
    line-height: 1.3;
}

/* Confetti para el modal - Sin animaciones */
.cumpleanos-confetti[b-wfuk8n1peb] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.cumpleanos-confetti .confetti[b-wfuk8n1peb] {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.3;
}

.confetti-1[b-wfuk8n1peb] {
    left: 15%;
    top: 20%;
    background: var(--primary);
}

.confetti-2[b-wfuk8n1peb] {
    left: 35%;
    top: 30%;
    background: #e53e3e;
}

.confetti-3[b-wfuk8n1peb] {
    left: 55%;
    top: 25%;
    background: #3182ce;
}

.confetti-4[b-wfuk8n1peb] {
    left: 75%;
    top: 35%;
    background: #38a169;
}

.confetti-5[b-wfuk8n1peb] {
    left: 85%;
    top: 20%;
    background: #d69e2e;
}

/* Estado vacío */
.cumpleanos-empty-state[b-wfuk8n1peb] {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--gray-500);
}

.cumpleanos-empty-state i[b-wfuk8n1peb] {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.5;
    color: var(--primary);
}

.cumpleanos-empty-state h3[b-wfuk8n1peb] {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--gray-600);
}

.cumpleanos-empty-state p[b-wfuk8n1peb] {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer del modal */
.cumpleanos-modal-footer[b-wfuk8n1peb] {
    padding: var(--spacing-lg) var(--spacing-xl);
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
    text-align: center;
}

.cumpleanos-close-btn[b-wfuk8n1peb] {
    background: linear-gradient(135deg, var(--primary), #c53030);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: 0 4px 15px rgba(159, 17, 27, 0.3);
}

.cumpleanos-close-btn:hover[b-wfuk8n1peb] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(159, 17, 27, 0.4);
}

.cumpleanos-close-btn:active[b-wfuk8n1peb] {
    transform: translateY(0);
}

/* Responsive para el modal de cumpleañeros */
@media (max-width: 768px) {
    .cumpleanos-modal-container[b-wfuk8n1peb] {
        width: 95%;
        max-height: 90vh;
    }
    
    .cumpleanos-modal-header[b-wfuk8n1peb] {
        padding: var(--spacing-lg);
    }
    
    .cumpleanos-modal-header h3[b-wfuk8n1peb] {
        font-size: 1.3rem;
    }
    
    .cumpleanos-modal-body[b-wfuk8n1peb] {
        padding: var(--spacing-lg);
    }
    
    .cumpleanos-employees-grid[b-wfuk8n1peb] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-md);
    }
    
    .cumpleanos-employee-card[b-wfuk8n1peb] {
        padding: var(--spacing-md);
    }
    
    .cumpleanos-employee-card .cumpleanos-employee-photo[b-wfuk8n1peb],
    .cumpleanos-employee-card .cumpleanos-employee-initials[b-wfuk8n1peb] {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .cumpleanos-employee-card .cumpleanos-name[b-wfuk8n1peb] {
        font-size: 0.9rem;
    }
    
    .cumpleanos-employee-card .cumpleanos-greeting[b-wfuk8n1peb] {
        font-size: 0.8rem;
    }
    
    .cumpleanos-modal-footer[b-wfuk8n1peb] {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .cumpleanos-close-btn[b-wfuk8n1peb] {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cumpleanos-modal-container[b-wfuk8n1peb] {
        width: 98%;
        max-height: 95vh;
    }
    
    .cumpleanos-employees-grid[b-wfuk8n1peb] {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .cumpleanos-employee-card[b-wfuk8n1peb] {
        padding: var(--spacing-sm);
    }
    
    .cumpleanos-employee-card .cumpleanos-employee-photo[b-wfuk8n1peb],
    .cumpleanos-employee-card .cumpleanos-employee-initials[b-wfuk8n1peb] {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .cumpleanos-employee-card .cumpleanos-name[b-wfuk8n1peb] {
        font-size: 0.8rem;
    }
    
    .cumpleanos-employee-card .cumpleanos-greeting[b-wfuk8n1peb] {
        font-size: 0.7rem;
    }
    
    .cumpleanos-empty-state i[b-wfuk8n1peb] {
        font-size: 3rem;
    }
    
    .cumpleanos-empty-state h3[b-wfuk8n1peb] {
        font-size: 1.3rem;
    }
    
    .cumpleanos-empty-state p[b-wfuk8n1peb] {
        font-size: 1rem;
    }
}


/* Mejoras de accesibilidad */
.cumpleanos-modal-close:focus[b-wfuk8n1peb],
.cumpleanos-close-btn:focus[b-wfuk8n1peb] {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Respeto a usuarios con preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .cumpleanos-modal-overlay[b-wfuk8n1peb],
    .cumpleanos-modal-container[b-wfuk8n1peb],
    .cumpleanos-employee-card[b-wfuk8n1peb] {
        transition: none !important;
    }
}
/* _content/GestionInternos/Components/Modals/Empleado_Modal.razor.rz.scp.css */
/* ========================================
   ESTILOS PARA MODAL DE EMPLEADO
   ======================================== */

/* Las variables CSS están ahora centralizadas en app.css */

/* Los estilos base de modal están ahora en app.css */
/* Solo estilos específicos para el modal de empleado */

/* Modal Container específico para empleado */
.modal-container[b-3tobbohsxb] {
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Modal Header específico para empleado */
.modal-header[b-3tobbohsxb] {
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
    border-bottom: none;
    background: transparent;
}

.modal-header h3[b-3tobbohsxb] {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.modal-close[b-3tobbohsxb] {
    background: var(--gray-100);
    border: none;
    color: var(--gray-600);
    font-size: 1.2rem;
    cursor: pointer;
    padding: var(--spacing-md);
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover[b-3tobbohsxb] {
    background: var(--gray-200);
    color: var(--gray-800);
    transform: scale(1.05);
}

/* Modal Body específico para empleado */
.modal-body[b-3tobbohsxb] {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    flex: 1;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-empleado-info[b-3tobbohsxb] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.modal-empleado-foto[b-3tobbohsxb] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex: 1;
}

.modal-avatar[b-3tobbohsxb] {
    /* Tamaño será establecido dinámicamente por JavaScript */
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    /* Proporción 5:7 será mantenida por JavaScript */
    aspect-ratio: 5/7;
}

.modal-avatar:hover[b-3tobbohsxb] {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.modal-avatar img[b-3tobbohsxb] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* Mejorar el fallback del avatar */
.avatar-fallback[b-3tobbohsxb] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--color3));
    color: var(--white);
    font-weight: bold;
    text-align: center;
    border-radius: 16px;
    font-size: inherit;
    transition: all 0.3s ease;
}

/* Estilos para manejo de errores de imagen en el modal */
.modal-avatar img[src=""][b-3tobbohsxb],
.modal-avatar img:not([src])[b-3tobbohsxb] {
    display: none;
}

.modal-avatar img[src=""] + .avatar-fallback[b-3tobbohsxb],
.modal-avatar img:not([src]) + .avatar-fallback[b-3tobbohsxb] {
    display: flex;
}

/* Asegurar que las imágenes se carguen correctamente en el modal */
.modal-avatar[b-3tobbohsxb] {
    position: relative;
    overflow: hidden;
}

.modal-avatar img[b-3tobbohsxb] {
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
}

/* Estilos adicionales para mejorar la carga de imágenes en el modal */
.modal-avatar img[b-3tobbohsxb] {
    background-color: var(--gray-100);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f3f4f6"/><text x="50" y="50" text-anchor="middle" dy=".3em" fill="%236b7280" font-family="Arial, sans-serif" font-size="12">Cargando...</text></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60% 60%;
}

.modal-avatar img[src]:not([src=""])[b-3tobbohsxb] {
    background-image: none;
}

.modal-foto-overlay[b-3tobbohsxb] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    color: var(--white);
    font-size: 1.5rem;
}

.modal-avatar:hover .modal-foto-overlay[b-3tobbohsxb] {
    opacity: 1;
}

.modal-foto-actions[b-3tobbohsxb] {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-empleado-foto:hover .modal-foto-actions[b-3tobbohsxb] {
    opacity: 1;
}

.btn-foto-action[b-3tobbohsxb] {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
}
.btn-foto-action i[b-3tobbohsxb] {
    color: var(--white);
}
.btn-foto-action:hover[b-3tobbohsxb] {
    background: var(--color3);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-foto-action:active[b-3tobbohsxb] {
    transform: scale(0.95);
}

.modal-empleado-datos[b-3tobbohsxb] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    width: 100%;
    max-width: 100%;
    flex: 1;
    height: 100%;
    align-content: center;
}

.modal-dato[b-3tobbohsxb] {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 60px;
}

.modal-dato:hover[b-3tobbohsxb] {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.modal-dato i[b-3tobbohsxb] {
    color: var(--primary);
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.modal-dato-content[b-3tobbohsxb] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.modal-label[b-3tobbohsxb] {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-value[b-3tobbohsxb] {
    font-size: 0.95rem;
    color: var(--gray-900);
    font-weight: 500;
    word-break: break-word;
    line-height: 1.3;
}

.modal-copy-btn[b-3tobbohsxb] {
    background: var(--gray-200);
    border: none;
    color: var(--gray-600);
    font-size: 0.9rem;
    padding: var(--spacing-sm);
    border-radius: 6px;
    transition: all 0.2s ease;
    opacity: 0;
    transform: scale(0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Eliminado comportamiento de copia */

/* Estilos para el modal de imagen alternativa */
#modalImagen[b-3tobbohsxb] {
    /* Animación eliminada para mejor rendimiento */
}

/* Estilos para las notificaciones toast */
#toast-notification[b-3tobbohsxb] {
    /* Animación eliminada para mejor rendimiento */
}

/* Layout horizontal para pantallas grandes (laptop/tablet) */
@media (min-width: 769px) {
    .modal-empleado-info[b-3tobbohsxb] {
        flex-direction: row;
        align-items: stretch;
        gap: var(--spacing-xxl);
        height: 100%;
        min-height: 100%;
    }
    
    .modal-empleado-foto[b-3tobbohsxb] {
        flex: 0 0 300px;
        justify-content: center;
        align-items: center;
        width: auto;
        height: 100%;
        min-height: 100%;
    }
    
    .modal-empleado-datos[b-3tobbohsxb] {
        flex: 1;
        width: auto;
        height: 100%;
        min-height: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        align-content: center;
        padding: 0 var(--spacing-xl);
    }
    
    /* El tamaño del avatar será establecido dinámicamente por JavaScript */
    
    .modal-dato[b-3tobbohsxb] {
        padding: var(--spacing-sm);
        min-height: 50px;
    }
    
    .modal-dato i[b-3tobbohsxb] {
        font-size: 0.9rem;
        min-width: 18px;
    }
    
    .modal-label[b-3tobbohsxb] {
        font-size: 0.7rem;
    }
    
    .modal-value[b-3tobbohsxb] {
        font-size: 0.85rem;
    }
}

/* Modal Responsive - Pantallas medianas */
@media (max-width: 992px) and (min-width: 769px) {
    .modal-container[b-3tobbohsxb] {
        width: 90%;
        max-width: 900px;
    }
}

/* Modal Responsive - Pantallas pequeñas */
@media (max-width: 768px) {
    .modal-container[b-3tobbohsxb] {
        width: 95%;
        max-width: 500px;
        max-height: 95vh;
    }
    
    .modal-empleado-info[b-3tobbohsxb] {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .modal-empleado-foto[b-3tobbohsxb] {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        min-height: 200px;
    }
    
    .modal-empleado-datos[b-3tobbohsxb] {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        flex: 1;
        height: auto;
    }
    
    .modal-dato[b-3tobbohsxb] {
        padding: var(--spacing-sm);
        min-height: 50px;
    }
    
    .modal-dato i[b-3tobbohsxb] {
        font-size: 0.9rem;
        min-width: 18px;
    }
    
    .modal-label[b-3tobbohsxb] {
        font-size: 0.7rem;
    }
    
    .modal-value[b-3tobbohsxb] {
        font-size: 0.85rem;
    }
}

/* Modal Responsive - Pantallas muy pequeñas */
@media (max-width: 480px) {
    .modal-container[b-3tobbohsxb] {
        width: 98%;
        max-height: 98vh;
        margin: 1vh auto;
    }
    
    .modal-header[b-3tobbohsxb] {
        padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
    }
    
    .modal-header h3[b-3tobbohsxb] {
        font-size: 1.25rem;
    }
    
    .modal-body[b-3tobbohsxb] {
        padding: 0 var(--spacing-lg) var(--spacing-md);
    }
    
    .modal-empleado-foto[b-3tobbohsxb] {
        min-height: 150px;
    }
    
    .modal-dato[b-3tobbohsxb] {
        padding: var(--spacing-xs) var(--spacing-sm);
        min-height: 45px;
    }
    
    .modal-dato i[b-3tobbohsxb] {
        font-size: 0.8rem;
        min-width: 16px;
    }
    
    .modal-label[b-3tobbohsxb] {
        font-size: 0.65rem;
    }
    
    .modal-value[b-3tobbohsxb] {
        font-size: 0.8rem;
    }
}

/* Animaciones de datos del modal eliminadas para mejor rendimiento */

/* Efectos de hover mejorados */
.modal-dato:hover i[b-3tobbohsxb] {
    color: var(--color3);
    transform: scale(1.1);
}

.modal-dato:hover .modal-value[b-3tobbohsxb] {
    color: var(--primary);
    font-weight: 600;
}

/* Estilos para el estado de carga */
.modal-loading[b-3tobbohsxb] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--gray-500);
}

.modal-loading i[b-3tobbohsxb] {
    font-size: 2rem;
    /* Animación eliminada para mejor rendimiento */
}

/* Mejoras de accesibilidad */
.modal-close:focus[b-3tobbohsxb],
.btn-foto-action:focus[b-3tobbohsxb],
.modal-dato:focus[b-3tobbohsxb] {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.modal-dato:focus-within[b-3tobbohsxb] {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Estilos para modo oscuro (opcional) */
@media (prefers-color-scheme: dark) {
    .modal-container[b-3tobbohsxb] { 
        color: var(--black);
    }
    
    .modal-header h3[b-3tobbohsxb] {
        color: var(--black);
    }
    
    .modal-dato[b-3tobbohsxb] {
        background: var(--gray-50);
        border-color: 1px solid var(--gray-200);
    }
    
    .modal-dato:hover[b-3tobbohsxb] {
        background: var(--gray-50);
    }
    
    .modal-value[b-3tobbohsxb] {
        color: var(--black);
    }
    
    .modal-label[b-3tobbohsxb] {
        color: var(--gray-400);
    }
}
/* _content/GestionInternos/Components/Pages/EnConstruccion.razor.rz.scp.css */
/* ========================================
   ESTILOS ESPECÍFICOS PARA PÁGINA EN CONSTRUCCIÓN
   ======================================== */

/* ========================================
   LAYOUT PRINCIPAL - ESPECÍFICO PARA EN CONSTRUCCIÓN
   ======================================== */

/* Los estilos de .container, .main-content y .page-content 
   están ahora en app.css para reutilización */

/* ========================================
   HERO SECTION - ESPECÍFICO PARA EN CONSTRUCCIÓN
   ======================================== */

/* Los estilos base de .hero-section están ahora en app.css */

/* Estilos específicos para EnConstruccion */
.hero-title i[b-bh51n9adgw] {
    margin-right: var(--spacing-md);
    color: var(--white);
    /* Animación eliminada para mejor rendimiento */
}

/* ========================================
   CONSTRUCTION CONTENT
   ======================================== */

.construction-content[b-bh51n9adgw] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.construction-card[b-bh51n9adgw] {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.construction-card[b-bh51n9adgw]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);

}

.construction-icon[b-bh51n9adgw] {
    margin-bottom: var(--spacing-xl);
}

.construction-icon i[b-bh51n9adgw] {
    font-size: 4rem;
    color: var(--primary);
    /* Animación eliminada para mejor rendimiento */
}

.construction-title[b-bh51n9adgw] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
}

.construction-description[b-bh51n9adgw] {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   CONSTRUCTION FEATURES
   ======================================== */

.construction-features[b-bh51n9adgw] {
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.construction-features h3[b-bh51n9adgw] {
    color: var(--gray-800);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.features-grid[b-bh51n9adgw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-item[b-bh51n9adgw] {
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.feature-item:hover[b-bh51n9adgw] {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-item i[b-bh51n9adgw] {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    display: block;
}

.feature-item h4[b-bh51n9adgw] {
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.feature-item p[b-bh51n9adgw] {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   CONSTRUCTION PROGRESS
   ======================================== */

.construction-progress[b-bh51n9adgw] {
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.construction-progress h3[b-bh51n9adgw] {
    color: var(--gray-800);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.progress-container[b-bh51n9adgw] {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.progress-bar[b-bh51n9adgw] {
    flex: 1;
    min-width: 200px;
    height: 12px;
    background: var(--gray-200);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
}

.progress-fill[b-bh51n9adgw] {
    height: 100%;
    background: var(--primary);
    border-radius: var(--border-radius-sm);
    position: relative;
    width: 75%; /* Valor fijo sin animación */
}

.progress-fill[b-bh51n9adgw]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    /* Animación shimmer eliminada para mejor rendimiento */
}

.progress-text[b-bh51n9adgw] {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ========================================
   CONSTRUCTION ACTIONS
   ======================================== */

.construction-actions[b-bh51n9adgw] {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.construction-actions .btn[b-bh51n9adgw] {
    min-width: 180px;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 600;
}

.construction-actions .btn i[b-bh51n9adgw] {
    margin-right: var(--spacing-sm);
}

/* ========================================
   CONSTRUCTION INFO
   ======================================== */

.construction-info[b-bh51n9adgw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.info-card[b-bh51n9adgw], .newsletter-card[b-bh51n9adgw] {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.info-card h3[b-bh51n9adgw], .newsletter-card h3[b-bh51n9adgw] {
    color: var(--gray-800);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.info-card h3 i[b-bh51n9adgw], .newsletter-card h3 i[b-bh51n9adgw] {
    color: var(--info);
}

.info-content[b-bh51n9adgw] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-item[b-bh51n9adgw] {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-200);
}

.info-item i[b-bh51n9adgw] {
    color: var(--info);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.info-detail[b-bh51n9adgw] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.info-label[b-bh51n9adgw] {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value[b-bh51n9adgw] {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 500;
}

.newsletter-card p[b-bh51n9adgw] {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.newsletter-form[b-bh51n9adgw] {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.newsletter-form .form-control[b-bh51n9adgw] {
    flex: 1;
    min-width: 200px;
}

.newsletter-form .btn[b-bh51n9adgw] {
    white-space: nowrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .hero-section[b-bh51n9adgw] {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title[b-bh51n9adgw] {
        font-size: 2rem;
    }
    
    .hero-subtitle[b-bh51n9adgw] {
        font-size: 1.1rem;
    }
    
    .construction-card[b-bh51n9adgw] {
        padding: var(--spacing-xl);
    }
    
    .construction-title[b-bh51n9adgw] {
        font-size: 1.75rem;
    }
    
    .construction-description[b-bh51n9adgw] {
        font-size: 1rem;
    }
    
    .features-grid[b-bh51n9adgw] {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .construction-actions[b-bh51n9adgw] {
        flex-direction: column;
        align-items: center;
    }
    
    .construction-actions .btn[b-bh51n9adgw] {
        width: 100%;
        max-width: 300px;
    }
    
    .page-content[b-bh51n9adgw] {
        padding: 0 var(--spacing-sm);
    }
    
    .construction-info[b-bh51n9adgw] {
        grid-template-columns: 1fr;
    }
    
    .progress-container[b-bh51n9adgw] {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .progress-bar[b-bh51n9adgw] {
        min-width: 100%;
    }
    
    .newsletter-form[b-bh51n9adgw] {
        flex-direction: column;
    }
    
    .newsletter-form .form-control[b-bh51n9adgw] {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title[b-bh51n9adgw] {
        font-size: 1.75rem;
    }
    
    .hero-subtitle[b-bh51n9adgw] {
        font-size: 1rem;
    }
    
    .construction-card[b-bh51n9adgw] {
        padding: var(--spacing-lg);
    }
    
    .construction-title[b-bh51n9adgw] {
        font-size: 1.5rem;
    }
    
    .construction-icon i[b-bh51n9adgw] {
        font-size: 3rem;
    }
    
    .feature-item[b-bh51n9adgw] {
        padding: var(--spacing-md);
    }
    
    .feature-item i[b-bh51n9adgw] {
        font-size: 2rem;
    }
    
    .page-content[b-bh51n9adgw] {
        padding: 0 var(--spacing-xs);
    }
    
    .info-card[b-bh51n9adgw], .newsletter-card[b-bh51n9adgw] {
        padding: var(--spacing-lg);
    }
}

/* ========================================
   ANIMACIONES ESPECÍFICAS
   ======================================== */

/* Animaciones eliminadas para mejor rendimiento */

/* ========================================
   UTILIDADES ESPECÍFICAS
   ======================================== */

/* Las utilidades comunes están ahora en app.css */
/* _content/GestionInternos/Components/Pages/Error.razor.rz.scp.css */
/* ========================================
   ESTILOS ESPECÍFICOS PARA PÁGINA DE ERROR
   ======================================== */

/* ========================================
   LAYOUT PRINCIPAL
   ======================================== */

.container[b-oiyxoxw410] {
    display: flex;
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.main-content[b-oiyxoxw410] {
    flex: 1;
    background: var(--gray-50);
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
}

.page-content[b-oiyxoxw410] {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--spacing-lg);
    box-sizing: border-box;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section[b-oiyxoxw410] {
    background: linear-gradient(135deg, var(--error) 0%, #dc2626 100%);
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
}

.hero-section[b-oiyxoxw410]::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="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content[b-oiyxoxw410] {
    position: relative;
    z-index: 2;
    margin: 20px auto;
    padding: 0 var(--spacing-lg);
}

.hero-title[b-oiyxoxw410] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title i[b-oiyxoxw410] {
    margin-right: var(--spacing-md);
    color: var(--white);
}

.hero-subtitle[b-oiyxoxw410] {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.6;
}

/* ========================================
   ERROR CONTENT
   ======================================== */

.error-content[b-oiyxoxw410] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.error-card[b-oiyxoxw410] {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.error-card[b-oiyxoxw410]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--error) 0%, #dc2626 100%);
}

.error-icon[b-oiyxoxw410] {
    margin-bottom: var(--spacing-xl);
}

.error-icon i[b-oiyxoxw410] {
    font-size: 4rem;
    color: var(--error);
    /* Animación eliminada para mejor rendimiento */
}

.error-title[b-oiyxoxw410] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
}

.error-description[b-oiyxoxw410] {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   ERROR DETAILS
   ======================================== */

.error-details[b-oiyxoxw410] {
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.error-details h3[b-oiyxoxw410] {
    color: var(--gray-800);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.error-details h3 i[b-oiyxoxw410] {
    color: var(--error);
}

.error-detail-item[b-oiyxoxw410] {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-200);
}

.error-detail-item i[b-oiyxoxw410] {
    color: var(--error);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.error-detail-content[b-oiyxoxw410] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.error-label[b-oiyxoxw410] {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.error-value[b-oiyxoxw410] {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 500;
    font-family: 'Courier New', monospace;
    background: var(--gray-100);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-300);
}

/* ========================================
   ERROR ACTIONS
   ======================================== */

.error-actions[b-oiyxoxw410] {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.error-actions .btn[b-oiyxoxw410] {
    min-width: 180px;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 600;
}

.error-actions .btn i[b-oiyxoxw410] {
    margin-right: var(--spacing-sm);
}

/* ========================================
   DEVELOPMENT INFO
   ======================================== */

.development-info[b-oiyxoxw410] {
    background: var(--warning-light);
    border: 1px solid var(--warning);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.development-info h3[b-oiyxoxw410] {
    color: var(--warning-dark);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.development-info h3 i[b-oiyxoxw410] {
    color: var(--warning);
}

.development-info p[b-oiyxoxw410] {
    color: var(--warning-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.warning-box[b-oiyxoxw410] {
    background: var(--white);
    border: 1px solid var(--warning);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.warning-box i[b-oiyxoxw410] {
    color: var(--warning);
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.warning-box p[b-oiyxoxw410] {
    margin: 0;
    color: var(--warning-dark);
    font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .hero-section[b-oiyxoxw410] {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title[b-oiyxoxw410] {
        font-size: 2rem;
    }
    
    .hero-subtitle[b-oiyxoxw410] {
        font-size: 1.1rem;
    }
    
    .error-card[b-oiyxoxw410] {
        padding: var(--spacing-xl);
    }
    
    .error-title[b-oiyxoxw410] {
        font-size: 1.75rem;
    }
    
    .error-description[b-oiyxoxw410] {
        font-size: 1rem;
    }
    
    .error-actions[b-oiyxoxw410] {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn[b-oiyxoxw410] {
        width: 100%;
        max-width: 300px;
    }
    
    .page-content[b-oiyxoxw410] {
        padding: 0 var(--spacing-sm);
    }
    
    .development-info[b-oiyxoxw410] {
        padding: var(--spacing-lg);
    }
    
    .warning-box[b-oiyxoxw410] {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title[b-oiyxoxw410] {
        font-size: 1.75rem;
    }
    
    .hero-subtitle[b-oiyxoxw410] {
        font-size: 1rem;
    }
    
    .error-card[b-oiyxoxw410] {
        padding: var(--spacing-lg);
    }
    
    .error-title[b-oiyxoxw410] {
        font-size: 1.5rem;
    }
    
    .error-icon i[b-oiyxoxw410] {
        font-size: 3rem;
    }
    
    .error-detail-item[b-oiyxoxw410] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .error-value[b-oiyxoxw410] {
        word-break: break-all;
    }
    
    .page-content[b-oiyxoxw410] {
        padding: 0 var(--spacing-xs);
    }
}

/* ========================================
   ANIMACIONES
   ======================================== */

/* Animaciones eliminadas para mejor rendimiento */

/* ========================================
   UTILIDADES
   ======================================== */

.text-center[b-oiyxoxw410] {
    text-align: center;
}

.mb-0[b-oiyxoxw410] { margin-bottom: 0; }
.mb-1[b-oiyxoxw410] { margin-bottom: var(--spacing-xs); }
.mb-2[b-oiyxoxw410] { margin-bottom: var(--spacing-sm); }
.mb-3[b-oiyxoxw410] { margin-bottom: var(--spacing-md); }
.mb-4[b-oiyxoxw410] { margin-bottom: var(--spacing-lg); }
.mb-5[b-oiyxoxw410] { margin-bottom: var(--spacing-xl); }

.mt-0[b-oiyxoxw410] { margin-top: 0; }
.mt-1[b-oiyxoxw410] { margin-top: var(--spacing-xs); }
.mt-2[b-oiyxoxw410] { margin-top: var(--spacing-sm); }
.mt-3[b-oiyxoxw410] { margin-top: var(--spacing-md); }
.mt-4[b-oiyxoxw410] { margin-top: var(--spacing-lg); }
.mt-5[b-oiyxoxw410] { margin-top: var(--spacing-xl); }
/* _content/GestionInternos/Components/Pages/ListaDeInternos.razor.rz.scp.css */
/* ========================================
   ESTILOS ESPECÍFICOS PARA LISTA DE INTERNOS
   ======================================== */

/* ========================================
   LAYOUT PRINCIPAL - ESPECÍFICO PARA LISTA DE INTERNOS
   ======================================== */

/* Los estilos de .container, .main-content y .page-content 
   están ahora en app.css para reutilización */

/* ========================================
   HERO SECTION - ESPECÍFICO PARA LISTA DE INTERNOS
   ======================================== */

/* Los estilos base de .hero-section, .hero-navigation y .nav-icon 
   están ahora en app.css para reutilización */

/* Layout de 3 columnas para Hero Section */
.hero-container[b-7jxubphv8u] {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
    box-sizing: border-box;
}

/* Altura fija para hero-section en todas las pantallas */
.hero-section[b-7jxubphv8u] {
    min-height: 250px; /* Altura mínima fija */
    overflow: hidden; /* Evitar desbordamiento */
}

/* Ocultar botones de control en pantallas grandes */
.hero-controls[b-7jxubphv8u] {
    display: none;
}

/* Columna Izquierda - Logo (20%) */
.hero-left[b-7jxubphv8u] {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-logo[b-7jxubphv8u] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.estrella-imagen[b-7jxubphv8u] {
    max-width: 100%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Columna Centro - Contenido (60%) */
.hero-center[b-7jxubphv8u] {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 var(--spacing-lg);
    box-sizing: border-box;
}

.hero-center .hero-content[b-7jxubphv8u] {
    text-align: center;
    width: 100%;
}

/* Columna Derecha - Botón de Cumpleañeros (20%) */
.hero-right[b-7jxubphv8u] {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Sección de cumpleañeros en la columna derecha */
.hero-birthday-section[b-7jxubphv8u] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.hero-birthday-btn[b-7jxubphv8u] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(159, 17, 27, 0.15);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 120px;
    height: 100%;
    min-height: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.hero-birthday-btn:hover[b-7jxubphv8u] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(159, 17, 27, 0.15);
    border-color: rgba(159, 17, 27, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.hero-birthday-btn:active[b-7jxubphv8u] {
    transform: translateY(0);
}

.birthday-btn-icon[b-7jxubphv8u] {
    margin-bottom: var(--spacing-xs);
    position: relative;
}

.birthday-btn-icon i[b-7jxubphv8u] {
    font-size: 1.5rem;
    color: var(--primary);
    animation: gentlePulse-b-7jxubphv8u 2s ease-in-out infinite;
}

@keyframes gentlePulse-b-7jxubphv8u {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

.birthday-btn-content[b-7jxubphv8u] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.birthday-btn-title[b-7jxubphv8u] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.1;
}

.birthday-btn-count[b-7jxubphv8u] {
    font-size: 0.65rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.2;
}

/* Efectos decorativos para el botón */
.hero-birthday-btn[b-7jxubphv8u]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(159, 17, 27, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-birthday-btn:hover[b-7jxubphv8u]::before {
    opacity: 1;
}

/* Contenedor del carrusel con controles */
.carousel-container[b-7jxubphv8u] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px; /* Altura mínima fija para el carrusel */
    max-height: 250px; /* Altura máxima para evitar desbordamiento */
}

/* Controles del carrusel */
.carousel-controls[b-7jxubphv8u] {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-controls.show[b-7jxubphv8u] {
    opacity: 1;
    visibility: visible;
}

.carousel-btn[b-7jxubphv8u] {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 14px;
}

.carousel-btn:hover[b-7jxubphv8u] {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active[b-7jxubphv8u] {
    transform: scale(0.95);
}

/* Indicadores del carrusel */
.carousel-indicators[b-7jxubphv8u] {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-indicators.show[b-7jxubphv8u] {
    opacity: 1;
    visibility: visible;
}

.indicator[b-7jxubphv8u] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover[b-7jxubphv8u] {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
}

.indicator.active[b-7jxubphv8u] {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* ========================================
   CARRUSEL DE CUMPLEAÑOS
   ======================================== */

.carousel-logo-slide[b-7jxubphv8u] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    min-height: 200px; /* Altura mínima consistente */
    max-height: 250px; /* Altura máxima consistente */
}

.carousel-birthday-slide[b-7jxubphv8u] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-md);
    min-height: 200px; /* Altura mínima consistente */
    max-height: 250px; /* Altura máxima consistente */
}

.birthday-celebration[b-7jxubphv8u] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.70) 0%, rgba(248, 250, 252, 0.70) 100%), 
                url('images/Birthday_Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(159, 17, 27, 0.1);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 260px;
    min-height: 180px; /* Altura mínima fija */
    max-height: 220px; /* Altura máxima fija */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    animation: subtleGlow-b-7jxubphv8u 3s ease-in-out infinite alternate;
}

@keyframes subtleGlow-b-7jxubphv8u {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(159, 17, 27, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(159, 17, 27, 0.2);
    }
}

.birthday-photo-container[b-7jxubphv8u] {
    position: relative;
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.birthday-employee-photo[b-7jxubphv8u] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(159, 17, 27, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.birthday-employee-photo:hover[b-7jxubphv8u] {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(159, 17, 27, 0.15);
    border-color: rgba(159, 17, 27, 0.3);
}

.birthday-employee-initials[b-7jxubphv8u] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #c53030);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    border: 2px solid rgba(159, 17, 27, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.birthday-message[b-7jxubphv8u] {
    margin-bottom: var(--spacing-lg);
}

.birthday-icon[b-7jxubphv8u] {
    font-size: 1.5rem;
    color: #9f111b;
    margin-bottom: var(--spacing-sm);
    animation: gentleBounce-b-7jxubphv8u 2s ease-in-out infinite;
    opacity: 0.9;
}

@keyframes gentleBounce-b-7jxubphv8u {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.birthday-text[b-7jxubphv8u] {
    color: var(--gray-800);
}

.birthday-greeting[b-7jxubphv8u] {
    /*texto con bold */
    font-weight: bold;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9f111b;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.birthday-name[b-7jxubphv8u] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.4;
    margin-top: var(--spacing-xs);
}

.confetti-container[b-7jxubphv8u] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 16px;
}

.confetti[b-7jxubphv8u] {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    animation: elegantConfetti-b-7jxubphv8u 4s linear infinite;
    border-radius: 2px;
}

.confetti-1[b-7jxubphv8u] {
    left: 15%;
    animation-delay: 0s;
    background: var(--primary-color);
}

.confetti-2[b-7jxubphv8u] {
    left: 35%;
    animation-delay: 0.8s;
    background: #e53e3e;
}

.confetti-3[b-7jxubphv8u] {
    left: 55%;
    animation-delay: 1.6s;
    background: #3182ce;
}

.confetti-4[b-7jxubphv8u] {
    left: 75%;
    animation-delay: 2.4s;
    background: #38a169;
}

.confetti-5[b-7jxubphv8u] {
    left: 85%;
    animation-delay: 3.2s;
    background: #d69e2e;
}

@keyframes elegantConfetti-b-7jxubphv8u {
    0% {
        transform: translateY(-60px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(180px) rotate(180deg);
        opacity: 0;
    }
}

/* Estilos específicos para ListaDeInternos */
.show-desktop[b-7jxubphv8u] { display: inline-flex; }
.hide-desktop[b-7jxubphv8u] { display: none; }

.filters-toggle-btn[b-7jxubphv8u] {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-left: var(--spacing-sm);
    cursor: pointer;
}

.filters-toggle-btn:hover[b-7jxubphv8u] {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.filters-collapsible.closed[b-7jxubphv8u] { display: block; }
.filters-collapsible.open[b-7jxubphv8u] { display: block; }

/* Ocultar filtros por defecto en tablet/móvil y mostrar botón */
@media (max-width: 991px) {
    .show-desktop[b-7jxubphv8u] { display: none !important; }
    .hide-desktop[b-7jxubphv8u] { display: inline-flex !important; }
    .search-filters-section.filters-collapsible[b-7jxubphv8u] { display: none; }
    .search-filters-section.filters-collapsible.open[b-7jxubphv8u] { display: block; }
}

/* Estilos específicos para iconos y texto del nav */
.nav-icon i[b-7jxubphv8u] {
    font-size: 1.1rem;
}

.nav-icon span[b-7jxubphv8u] {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Estilos específicos para el contenido del hero */
.hero-title i[b-7jxubphv8u] {
    margin-right: var(--spacing-md);
    color: var(--white);
}

/* Search Hero */
.search-hero[b-7jxubphv8u] {
    margin-top: var(--spacing-xl);
}

.search-box-hero[b-7jxubphv8u] {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    margin: 0 auto;
}

.search-box-hero i[b-7jxubphv8u] {
    color: var(--gray-500);
    margin-right: var(--spacing-md);
    font-size: 1.2rem;
}

.search-box-hero input[b-7jxubphv8u] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: var(--spacing-sm);
    background: transparent;
}

.search-box-hero input[b-7jxubphv8u]::placeholder {
    color: var(--gray-400);
}

/* ========================================
   SEARCH FILTERS SECTION
   ======================================== */

.search-filters-section[b-7jxubphv8u] {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.filters-container[b-7jxubphv8u] {
    display: flex;
    gap: var(--spacing-lg);
    align-items: end;
    flex-wrap: wrap;
}

.filter-group[b-7jxubphv8u] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    min-width: 200px;
}

.filter-group label[b-7jxubphv8u] {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select[b-7jxubphv8u] {
    padding: var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    background: var(--white);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.filter-group select:focus[b-7jxubphv8u] {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(159, 17, 27, 0.25);
}

.filter-group select:hover[b-7jxubphv8u] {
    border-color: var(--gray-300);
}


/* ========================================
   RESULTS SECTION
   ======================================== */

.results-section[b-7jxubphv8u] {
    margin-bottom: var(--spacing-xl);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.results-header[b-7jxubphv8u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--gray-200);
}

.results-header h2[b-7jxubphv8u] {
    color: var(--gray-900);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.results-info[b-7jxubphv8u] {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
}

.results-info span[b-7jxubphv8u] {
    color: var(--primary);
    font-weight: 700;
}

/* ========================================
   EMPLOYEES GRID
   ======================================== */

.employees-grid[b-7jxubphv8u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 8px; /* separación coherente entre cards */
    margin-bottom: 0; /* sin margen inferior entre cards y paginación */
    justify-items: stretch; /* ocupar todo el ancho disponible */
    width: 100%;
    max-width: 100%;
}

/* Empty State */
.empty-state[b-7jxubphv8u] {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--gray-500);
    grid-column: 1 / -1;
}

.empty-state i[b-7jxubphv8u] {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.5;
}

.empty-state h3[b-7jxubphv8u] {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--gray-600);
}

.empty-state p[b-7jxubphv8u] {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination[b-7jxubphv8u] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.page-number[b-7jxubphv8u] {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 40px;
    text-align: center;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.page-number:hover:not(.disabled)[b-7jxubphv8u] {
    background: var(--gray-50);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-number.active[b-7jxubphv8u] {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(159, 17, 27, 0.3);
}

.page-number.disabled[b-7jxubphv8u] {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--gray-100);
    color: var(--gray-400);
}

.page-number.disabled:hover[b-7jxubphv8u] {
    transform: none;
    box-shadow: none;
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.page-number i[b-7jxubphv8u] {
    font-size: 0.8rem;
}

/* Current Page Display */
.current-page[b-7jxubphv8u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    min-width: 80px;
}

.page-current[b-7jxubphv8u] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.page-total[b-7jxubphv8u] {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Pagination Info */
.pagination-info[b-7jxubphv8u] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

.pagination-info span[b-7jxubphv8u] {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--gray-50);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-200);
}

/* ========================================
   MODAL STYLES
   ======================================== */

/* Modal de Cumpleañeros */
.birthday-modal-overlay[b-7jxubphv8u] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.birthday-modal-overlay.show[b-7jxubphv8u] {
    opacity: 1;
    visibility: visible;
}

.birthday-modal-container[b-7jxubphv8u] {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 90%;
    width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s ease;
}

.birthday-modal-overlay.show .birthday-modal-container[b-7jxubphv8u] {
    transform: scale(1) translateY(0);
}

.birthday-modal-header[b-7jxubphv8u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(135deg, var(--primary), #c53030);
    color: var(--white);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.birthday-modal-header h3[b-7jxubphv8u] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.birthday-modal-close[b-7jxubphv8u] {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.birthday-modal-close:hover[b-7jxubphv8u] {
    background: rgba(255, 255, 255, 0.2);
}

.birthday-modal-body[b-7jxubphv8u] {
    padding: var(--spacing-lg);
}

.birthday-employees-grid[b-7jxubphv8u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.birthday-employee-card[b-7jxubphv8u] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    text-align: center;
    border: 1px solid rgba(159, 17, 27, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.birthday-employee-card:hover[b-7jxubphv8u] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(159, 17, 27, 0.15);
    border-color: rgba(159, 17, 27, 0.3);
}

.birthday-employee-card .birthday-icon[b-7jxubphv8u] {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.birthday-employee-card .birthday-photo-container[b-7jxubphv8u] {
    margin-bottom: var(--spacing-sm);
}

.birthday-employee-card .birthday-employee-photo[b-7jxubphv8u],
.birthday-employee-card .birthday-employee-initials[b-7jxubphv8u] {
    width: 50px;
    height: 50px;
    font-size: 1rem;
}

.birthday-employee-card .birthday-name[b-7jxubphv8u] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.birthday-employee-card .birthday-greeting[b-7jxubphv8u] {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

/* Confetti para el modal */
.birthday-modal-confetti[b-7jxubphv8u] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.birthday-modal-confetti .confetti[b-7jxubphv8u] {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    animation: modalConfetti-b-7jxubphv8u 3s linear infinite;
    border-radius: 2px;
}

@keyframes modalConfetti-b-7jxubphv8u {
    0% {
        transform: translateY(-30px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100px) rotate(180deg);
        opacity: 0;
    }
}

/* Responsive para el modal de cumpleañeros */
@media (max-width: 768px) {
    .birthday-modal-container[b-7jxubphv8u] {
        width: 95%;
        max-height: 85vh;
    }
    
    .birthday-employees-grid[b-7jxubphv8u] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .birthday-employee-card[b-7jxubphv8u] {
        padding: var(--spacing-sm);
    }
    
    .birthday-employee-card .birthday-employee-photo[b-7jxubphv8u],
    .birthday-employee-card .birthday-employee-initials[b-7jxubphv8u] {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .birthday-employee-card .birthday-name[b-7jxubphv8u] {
        font-size: 0.8rem;
    }
    
    .birthday-employee-card .birthday-greeting[b-7jxubphv8u] {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .birthday-modal-container[b-7jxubphv8u] {
        width: 98%;
        max-height: 90vh;
    }
    
    .birthday-employees-grid[b-7jxubphv8u] {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
    }
    
    .birthday-employee-card[b-7jxubphv8u] {
        padding: var(--spacing-xs);
    }
    
    .birthday-employee-card .birthday-employee-photo[b-7jxubphv8u],
    .birthday-employee-card .birthday-employee-initials[b-7jxubphv8u] {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .birthday-employee-card .birthday-name[b-7jxubphv8u] {
        font-size: 0.75rem;
    }
    
    .birthday-employee-card .birthday-greeting[b-7jxubphv8u] {
        font-size: 0.65rem;
    }
}

.modal-overlay[b-7jxubphv8u] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.modal-show[b-7jxubphv8u] {
    opacity: 1;
    visibility: visible;
}

.modal-container[b-7jxubphv8u] {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s ease;
}

.modal-overlay.modal-show .modal-container[b-7jxubphv8u] {
    transform: scale(1) translateY(0);
}

@keyframes modalSlideIn-b-7jxubphv8u {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header[b-7jxubphv8u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-header h3[b-7jxubphv8u] {
    margin: 0;
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close[b-7jxubphv8u] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.modal-close:hover[b-7jxubphv8u] {
    background: var(--gray-200);
    color: var(--gray-700);
}

.modal-body[b-7jxubphv8u] {
    padding: var(--spacing-lg);
}

.modal-empleado-info[b-7jxubphv8u] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.modal-empleado-foto[b-7jxubphv8u] {
    position: relative;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.modal-avatar[b-7jxubphv8u] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gray-200);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.modal-avatar img[b-7jxubphv8u] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Fallback para cuando no hay imagen en el modal de ListaDeInternos */
.modal-avatar .avatar-fallback[b-7jxubphv8u] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--color3));
    color: var(--white);
    font-weight: bold;
    border-radius: 50%;
    font-size: inherit;
}

.modal-avatar:hover[b-7jxubphv8u] {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.modal-foto-overlay[b-7jxubphv8u] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.modal-avatar:hover .modal-foto-overlay[b-7jxubphv8u] {
    opacity: 1;
}

.modal-foto-actions[b-7jxubphv8u] {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-md);
}

.btn-foto-action[b-7jxubphv8u] {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-foto-action:hover[b-7jxubphv8u] {
    background: var(--color3);
    transform: translateY(-2px);
}

.modal-empleado-datos[b-7jxubphv8u] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.modal-dato[b-7jxubphv8u] {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.modal-dato:hover[b-7jxubphv8u] {
    background: var(--gray-100);
    border-color: var(--primary);
    transform: translateX(5px);
}

.modal-dato i[b-7jxubphv8u] {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.modal-dato-content[b-7jxubphv8u] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.modal-label[b-7jxubphv8u] {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-value[b-7jxubphv8u] {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 500;
}

.modal-copy-btn[b-7jxubphv8u] {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.modal-copy-btn:hover[b-7jxubphv8u] {
    background: var(--gray-200);
    color: var(--primary);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Pantallas extra grandes (ultra-wide) */
@media (min-width: 1600px) {
    .hero-birthday-btn[b-7jxubphv8u] {
        max-width: 140px;
        min-height: 100px;
        padding: var(--spacing-md);
    }
    
    .birthday-btn-icon i[b-7jxubphv8u] {
        font-size: 1.8rem;
    }
    
    .birthday-btn-title[b-7jxubphv8u] {
        font-size: 0.8rem;
    }
    
    .birthday-btn-count[b-7jxubphv8u] {
        font-size: 0.7rem;
    }
    
    .employees-grid[b-7jxubphv8u] {
        grid-template-columns: repeat(6, 1fr);
        gap: 9px 12px;
    }
    
    .page-content[b-7jxubphv8u] {
        padding: 0 var(--spacing-3xl);
    }
    
    .hero-content[b-7jxubphv8u] {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Pantallas grandes (desktop) */
@media (min-width: 1400px) and (max-width: 1599px) {
    .hero-birthday-btn[b-7jxubphv8u] {
        max-width: 130px;
        min-height: 90px;
        padding: var(--spacing-sm);
    }
    
    .birthday-btn-icon i[b-7jxubphv8u] {
        font-size: 1.6rem;
    }
    
    .birthday-btn-title[b-7jxubphv8u] {
        font-size: 0.75rem;
    }
    
    .birthday-btn-count[b-7jxubphv8u] {
        font-size: 0.65rem;
    }
    
    .employees-grid[b-7jxubphv8u] {
        grid-template-columns: repeat(4, 1fr);
        gap: 9px 12px;
    }
    
    .page-content[b-7jxubphv8u] {
        padding: 0 var(--spacing-2xl);
    }
}
/* Pantallas Medianas*/
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-section[b-7jxubphv8u] {
        height: 220px; /* Altura fija ligeramente mayor para pantallas medianas */
        padding: var(--spacing-lg) 0;
        margin-bottom: var(--spacing-lg);
        overflow: hidden;
    }
    
    .carousel-container[b-7jxubphv8u] {
        min-height: 220px;
        max-height: 220px;
    }
    
    .carousel-logo-slide[b-7jxubphv8u],
    .carousel-birthday-slide[b-7jxubphv8u] {
        min-height: 220px;
        max-height: 220px;
    }
    
    .birthday-celebration[b-7jxubphv8u] {
        min-height: 200px;
        max-height: 200px;
        padding: var(--spacing-md);
    }
    
    .hero-birthday-btn[b-7jxubphv8u] {
        max-width: 120px;
        min-height: 85px;
        padding: var(--spacing-sm);
    }
    
    .birthday-btn-icon i[b-7jxubphv8u] {
        font-size: 1.4rem;
    }
    
    .birthday-btn-title[b-7jxubphv8u] {
        font-size: 0.7rem;
    }
    
    .birthday-btn-count[b-7jxubphv8u] {
        font-size: 0.6rem;
    }
    
    .employees-grid[b-7jxubphv8u] {
        grid-template-columns: repeat(3, 1fr);
        gap: 9px 12px;
    }
}

/* Pantallas Pequeñas*/
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-section[b-7jxubphv8u] {
        height: 200px; /* Altura fija para pantallas pequeñas */
        padding: var(--spacing-md) 0;
        margin-bottom: var(--spacing-md);
        overflow: hidden;
    }
    
    .carousel-container[b-7jxubphv8u] {
        min-height: 200px;
        max-height: 200px;
    }
    
    .carousel-logo-slide[b-7jxubphv8u],
    .carousel-birthday-slide[b-7jxubphv8u] {
        min-height: 200px;
        max-height: 200px;
    }
    
    .birthday-celebration[b-7jxubphv8u] {
        min-height: 180px;
        max-height: 180px;
        padding: var(--spacing-sm);
    }
    
    .hero-birthday-btn[b-7jxubphv8u] {
        max-width: 110px;
        min-height: 80px;
        padding: var(--spacing-xs);
    }
    
    .birthday-btn-icon i[b-7jxubphv8u] {
        font-size: 1.3rem;
    }
    
    .birthday-btn-title[b-7jxubphv8u] {
        font-size: 0.65rem;
    }
    
    .birthday-btn-count[b-7jxubphv8u] {
        font-size: 0.55rem;
    }
    
    .employees-grid[b-7jxubphv8u] {
        grid-template-columns: repeat(3, 1fr);
        gap: 9px 12px;
    }
}

/* Pantallas Extra Pequeñas - Tablets y menores */
@media (max-width: 1024px) {
    .hero-section[b-7jxubphv8u] {
        height: 140px; /* Altura reducida para tablets y menores */
        padding: var(--spacing-sm) 0;
        margin-bottom: var(--spacing-sm);
        overflow: hidden;
    }
    
    .hero-container[b-7jxubphv8u] {
        padding: 0 var(--spacing-sm);
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    /* Ocultar columnas izquierda y derecha */
    .hero-left[b-7jxubphv8u],
    .hero-right[b-7jxubphv8u] {
        display: none;
    }
    
    /* Columna central ocupa todo el ancho */
    .hero-center[b-7jxubphv8u] {
        width: 100%;
        padding: 0;
        order: 1;
    }
    
    
    
    .control-btn[b-7jxubphv8u] {
        background: rgba(255, 255, 255, 0.15);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--border-radius-md);
        padding: var(--spacing-xs) var(--spacing-md);
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        font-weight: 600;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .control-btn:hover[b-7jxubphv8u] {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .control-btn i[b-7jxubphv8u] {
        font-size: 1rem;
    }
    
    .hero-title[b-7jxubphv8u] {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
    }
    
    .hero-subtitle[b-7jxubphv8u] {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.3;
    }
    
    .search-box-hero[b-7jxubphv8u] {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .filters-container[b-7jxubphv8u] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group[b-7jxubphv8u] {
        min-width: auto;
    }
    
    .employees-grid[b-7jxubphv8u] {
        grid-template-columns: repeat(3, 1fr);
        gap: 9px 12px;
    }
    
    .page-content[b-7jxubphv8u] {
        padding: 0 var(--spacing-md);
    }
}

/* Pantallas Extra Pequeñas*/
@media (max-width: 768px) {
    .hero-section[b-7jxubphv8u] {
        height: 180px; /* Altura reducida para móviles */
        padding: var(--spacing-xs) 0;
        margin-bottom: var(--spacing-xs);
        overflow: hidden;
    }
    
    .hero-container[b-7jxubphv8u] {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    /* Ocultar columnas izquierda y derecha en móviles también */
    .hero-left[b-7jxubphv8u],
    .hero-right[b-7jxubphv8u] {
        display: none;
    }
    
    
    .hero-center[b-7jxubphv8u] {
        width: 100%;
        order: 1;
        padding: 0;
    }
    
    .hero-controls[b-7jxubphv8u] {
        display: flex;
        order: 2;
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-sm);
    }
    
    .control-btn[b-7jxubphv8u] {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.85rem;
    }
    
    .control-btn span[b-7jxubphv8u] {
        display: none; /* Ocultar texto en móviles */
    }
    
    
    .hero-right .hero-navigation[b-7jxubphv8u] {
        flex-direction: row;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    /* Controles del carrusel en móviles */
    .carousel-btn[b-7jxubphv8u] {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .carousel-controls[b-7jxubphv8u] {
        padding: 0 5px;
    }
    
    .carousel-indicators[b-7jxubphv8u] {
        bottom: 10px;
    }
    
    .indicator[b-7jxubphv8u] {
        width: 10px;
        height: 10px;
    }
    
    .estrella-imagen[b-7jxubphv8u] {
        max-height: 60%; /* Reducir altura del logo en móviles */
        max-width: 200px;
    }
    
    .carousel-container[b-7jxubphv8u] {
        min-height: 120px;
        max-height: 120px;
    }
    
    .carousel-logo-slide[b-7jxubphv8u],
    .carousel-birthday-slide[b-7jxubphv8u] {
        min-height: 120px;
        max-height: 120px;
    }
    
    /* Ajustes del carrusel de cumpleaños en móviles */
    .birthday-celebration[b-7jxubphv8u] {
        max-width: 240px;
        min-height: 100px;
        max-height: 100px;
        padding: var(--spacing-sm);
        background-size: cover;
        background-position: center;
        background-attachment: local;
    }
    
    .birthday-employee-photo[b-7jxubphv8u],
    .birthday-employee-initials[b-7jxubphv8u] {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .birthday-icon[b-7jxubphv8u] {
        font-size: 1.5rem;
    }
    
    .birthday-greeting[b-7jxubphv8u] {
        font-size: 1rem;
    }
    
    .birthday-name[b-7jxubphv8u] {
        font-size: 0.85rem;
    }
    
    .hero-navigation[b-7jxubphv8u] {
        top: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .nav-icon[b-7jxubphv8u] {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.85rem;
    }
    
    .nav-icon span[b-7jxubphv8u] {
        display: none; /* Ocultar texto en móviles */
    }
    
    .nav-icon i[b-7jxubphv8u] {
        font-size: 1.2rem;
    }
    
    .hero-title[b-7jxubphv8u] {
        font-size: 2rem;
    }
    
    .hero-subtitle[b-7jxubphv8u] {
        font-size: 1.1rem;
    }
    
    .search-box-hero[b-7jxubphv8u] {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-lg);
    }
    
    .search-box-hero input[b-7jxubphv8u] {
        width: 100%;
        text-align: center;
    }
    
    .results-header[b-7jxubphv8u] {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: stretch;
        text-align: center;
    }
    
    .employees-grid[b-7jxubphv8u] {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px 12px;
        justify-items: stretch;
    }
    
    .page-content[b-7jxubphv8u] {
        padding: 0 var(--spacing-sm);
    }
    
    .modal-container[b-7jxubphv8u] {
        width: 95%;
        margin: var(--spacing-md);
    }
    
    .modal-empleado-info[b-7jxubphv8u] {
        flex-direction: column;
    }
    
    /* Paginación responsiva */
    .pagination[b-7jxubphv8u] {
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .page-number[b-7jxubphv8u] {
        padding: var(--spacing-sm) var(--spacing-md);
        min-width: 40px;
        font-size: 0.8rem;
    }
    
    .current-page[b-7jxubphv8u] {
        padding: var(--spacing-sm) var(--spacing-md);
        min-width: 60px;
    }
    
    .page-current[b-7jxubphv8u] {
        font-size: 1.25rem;
    }
    
    .page-total[b-7jxubphv8u] {
        font-size: 0.75rem;
    }
    
    .pagination-info[b-7jxubphv8u] {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .pagination-info span[b-7jxubphv8u] {
        font-size: 0.8rem;
    }

    /* pageSize a ancho completo en móviles */
    #pageSize[b-7jxubphv8u] {
        width: 100%;
    }
}

/* Pantallas Extra Pequeñas*/
@media (max-width: 480px) {
    .hero-section[b-7jxubphv8u] {
        height: 160px; /* Altura reducida para pantallas muy pequeñas */
        padding: var(--spacing-xs) 0;
        margin-bottom: var(--spacing-xs);
        overflow: hidden;
    }
    
    .hero-container[b-7jxubphv8u] {
        padding: 0 var(--spacing-xs);
        gap: var(--spacing-sm);
    }
    
    .hero-controls[b-7jxubphv8u] {
        flex-direction: row;
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
    }
    
    .control-btn[b-7jxubphv8u] {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.8rem;
        flex: 1;
    }
    
    .control-btn i[b-7jxubphv8u] {
        font-size: 0.9rem;
    }
    
    .hero-title[b-7jxubphv8u] {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle[b-7jxubphv8u] {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .search-box-hero[b-7jxubphv8u] {
        padding: var(--spacing-xs);
        max-width: 100%;
    }
    
    .search-box-hero input[b-7jxubphv8u] {
        font-size: 0.9rem;
    }
    
    .estrella-imagen[b-7jxubphv8u] {
        max-height: 50%; /* Aún más pequeña en pantallas muy pequeñas */
        max-width: 150px;
    }
    
    /* Ajustes adicionales del carrusel de cumpleaños en pantallas muy pequeñas */
    .birthday-celebration[b-7jxubphv8u] {
        max-width: 200px;
        padding: var(--spacing-sm);
        background-size: cover;
        background-position: center;
        background-attachment: local;
    }
    
    .hero-right .hero-navigation[b-7jxubphv8u] {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero-navigation[b-7jxubphv8u] {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    .nav-icon[b-7jxubphv8u] {
        padding: var(--spacing-xs) var(--spacing-sm);
        border-radius: var(--border-radius-md);
    }
    
    .nav-icon i[b-7jxubphv8u] {
        font-size: 1rem;
    }
    
    .hero-title[b-7jxubphv8u] {
        font-size: 1.75rem;
    }
    
    .hero-subtitle[b-7jxubphv8u] {
        font-size: 1rem;
    }
    
    .search-filters-section[b-7jxubphv8u] {
        padding: var(--spacing-lg);
    }
    
    .employees-grid[b-7jxubphv8u] {
        grid-template-columns: repeat(1, 1fr);
        gap: 9px 12px;
    }
    
    .page-content[b-7jxubphv8u] {
        padding: 0 var(--spacing-xs);
    }
    
    /* Paginación para pantallas muy pequeñas */
    .pagination[b-7jxubphv8u] {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }
    
    .page-number[b-7jxubphv8u] {
        padding: var(--spacing-xs) var(--spacing-sm);
        min-width: 35px;
        font-size: 0.75rem;
    }
    
    .page-number i[b-7jxubphv8u] {
        font-size: 0.7rem;
    }
    
    .current-page[b-7jxubphv8u] {
        padding: var(--spacing-xs) var(--spacing-sm);
        min-width: 50px;
    }
    
    .page-current[b-7jxubphv8u] {
        font-size: 1rem;
    }
    
    .page-total[b-7jxubphv8u] {
        font-size: 0.7rem;
    }
    
    .pagination-info[b-7jxubphv8u] {
        font-size: 0.75rem;
    }
    
    .pagination-info span[b-7jxubphv8u] {
        padding: 2px var(--spacing-xs);
        font-size: 0.7rem;
    }

    /* Reafirmar ancho completo en pantallas muy pequeñas */
    #pageSize[b-7jxubphv8u] {
        width: 100%;
    }
}

/* ========================================
   ANIMACIONES ESPECÍFICAS
   ======================================== */

/* Animaciones eliminadas para mejor rendimiento */

/* Respeto a usuarios con preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    *[b-7jxubphv8u], *[b-7jxubphv8u]::before, *[b-7jxubphv8u]::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   UTILIDADES ESPECÍFICAS
   ======================================== */

/* Las utilidades comunes están ahora en app.css */

/* ================= Header compacto y búsqueda desplegable ================= */
.search-toggle-btn[b-7jxubphv8u] {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-left: var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-toggle-btn:hover[b-7jxubphv8u] {
    background: rgba(255, 255, 255, 0.25);
}

.search-hero-compact[b-7jxubphv8u] {
    margin-top: var(--spacing-md);
}

.search-box-compact[b-7jxubphv8u] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-xl);
    max-width: 520px;
    margin: 0 auto;
}

.search-box-compact i[b-7jxubphv8u] {
    color: var(--gray-500);
}

.search-box-compact input[b-7jxubphv8u] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: var(--spacing-xs) var(--spacing-sm);
}

.search-box-compact .close-compact[b-7jxubphv8u] {
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
}

/* Reducir altura del header para pantallas entre tablets y 1399px */
@media (min-width: 992px) and (max-width: 1399px) {
    .hero-section[b-7jxubphv8u] { 
        height: 200px; /* Altura fija para evitar movimientos */
        padding: var(--spacing-md) 0; 
        margin-bottom: var(--spacing-md);
        overflow: hidden; /* Evitar desbordamiento */
    }
    .hero-content[b-7jxubphv8u] { 
        margin: 2px auto; 
        padding: 0 var(--spacing-sm);
    }
    .hero-title[b-7jxubphv8u] { 
        font-size: 1.8rem; 
        margin-bottom: var(--spacing-xs); 
        line-height: 1.2;
    }
    .hero-subtitle[b-7jxubphv8u] { 
        font-size: 0.9rem; 
        margin-bottom: var(--spacing-xs); 
        line-height: 1.3;
    }
    .search-box-hero[b-7jxubphv8u] { 
        padding: var(--spacing-xs) var(--spacing-sm); 
        max-width: 450px;
        margin-top: var(--spacing-xs);
    }
    
    /* Reducir altura de Search Filters */
    .search-filters-section[b-7jxubphv8u] {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .filters-container[b-7jxubphv8u] {
        gap: var(--spacing-md);
        justify-content: space-between;
    }
    
    .filter-group[b-7jxubphv8u] {
        min-width: 200px;
        flex: 1;
        max-width: 250px;
    }
    
    .filter-group select[b-7jxubphv8u] {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .filter-group label[b-7jxubphv8u] {
        font-size: 0.85rem;
    }
    
    
    /* Estilos para el control de personas por página en la paginación */
    .pagination-info[b-7jxubphv8u] {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: var(--spacing-lg);
    }
    
    .page-size-control[b-7jxubphv8u] {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .page-size-control label[b-7jxubphv8u] {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--gray-600);
        white-space: nowrap;
    }
    
    .page-size-control select[b-7jxubphv8u] {
        padding: var(--spacing-xs) var(--spacing-sm);
        border: 1px solid var(--gray-300);
        border-radius: var(--border-radius-sm);
        background: var(--white);
        font-size: 0.85rem;
        min-width: 60px;
    }
    
    .page-size-control select:focus[b-7jxubphv8u] {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(159, 17, 27, 0.25);
    }
}

/* Reducir altura del header para pantallas hasta 14" (~1366px de ancho) */
@media (max-width: 1400px) {
    .hero-section[b-7jxubphv8u] { padding: var(--spacing-xl) 0; }
    .hero-content[b-7jxubphv8u] { margin: 8px auto; }
    .hero-title[b-7jxubphv8u] { font-size: 2.2rem; margin-bottom: var(--spacing-sm); }
    .hero-subtitle[b-7jxubphv8u] { font-size: 1rem; margin-bottom: var(--spacing-md); }
    .search-box-hero[b-7jxubphv8u] { padding: var(--spacing-sm); }
}

/* Tablets y laptops pequeñas */
@media (max-width: 991px) {
    .hero-section[b-7jxubphv8u] { padding: var(--spacing-lg) 0; }
    .hero-title[b-7jxubphv8u] { font-size: 2rem; margin-bottom: var(--spacing-xs); }
    .hero-subtitle[b-7jxubphv8u] { font-size: 0.95rem; margin-bottom: var(--spacing-sm); }
    .search-box-hero[b-7jxubphv8u] { display: none; }
    .search-toggle-btn[b-7jxubphv8u] { display: inline-flex; }
}

/* Móviles */
@media (max-width: 768px) {
    .hero-section[b-7jxubphv8u] { padding: var(--spacing-md) 0; }
    .hero-content[b-7jxubphv8u] { text-align: left; padding: 0 var(--spacing-sm); }
    .hero-title[b-7jxubphv8u] { font-size: 1.3rem; line-height: 1.2; text-align: left; margin-left: 0; }
    .hero-subtitle[b-7jxubphv8u] { display: none; }
    .search-box-hero[b-7jxubphv8u] { display: none; }
    .search-toggle-btn[b-7jxubphv8u] { display: inline-flex; }
}

@media (max-width: 480px) {
    .hero-section[b-7jxubphv8u] { padding: var(--spacing-sm) 0; }
    .hero-title[b-7jxubphv8u] { font-size: 1.1rem; line-height: 1.2; }
}
