/* --- ESTILOS PARA PÁGINAS DE ERROR (403, 404) --- */

.error-section {
    min-height: 75vh; /* Ocupa buena parte de la pantalla */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    padding: 2rem;
    text-align: center;
}

.error-container {
    max-width: 600px;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(21, 35, 58, 0.1); /* Sombra suave */
}

.error-icon {
    font-size: 5rem;
    color: #187495; /* Cyan Corporativo */
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Animación de "Buscando señal" (Pulso) */
.pulse-icon {
    animation: pulseSignal 2s infinite;
}

.error-code {
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: #15233A; /* Azul Navy */
    margin: 0;
}

.error-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #15233A;
    margin: 1rem 0;
}

.error-text {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-error {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #15233A;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-error:hover {
    background-color: #187495;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 116, 149, 0.3);
}

@keyframes pulseSignal {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .error-code { font-size: 4rem; }
    .error-title { font-size: 1.5rem; }
    .error-container { padding: 2rem 1.5rem; }
}