@charset "UTF-8";

body {
    background-color: #05080e !important; 
    color: #dae3f0 !important;
}

/* Eliminar espacios desperdiciados arriba del contenido principal */
.navbar {
    padding-top: 0.25rem !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

/* Forzar que los enlaces utilicen el verde neón institucional */
a {
    color: #00e5a3 !important;
}
a:hover {
    color: #33f0bb !important;
}

/* Ajuste específico para el Navbar en Modo Tech */
.navbar-dark.bg-dark {
    background-color: #10141d !important;
    border-bottom: 1px solid rgba(0, 229, 163, 0.2) !important;
}

#specialTitle { 
	color: #00e5a3 !important;
    text-shadow: 0 0 12px rgba(0, 229, 163, 0.3) !important;
}

.navbar-brand {
    color: #00e5a3 !important;
    font-weight: 700;
}

/* Barra de llamada a la acción (Call to action) */
.bg-secondary {
    background-color: #141923 !important;
    border: 1px solid rgba(0, 229, 163, 0.3) !important;
}

/* Botón con Efecto Neón Glow Institucional */
.btn-primary {
    color: #000000 !important; 
    font-weight: 600;
    background: linear-gradient(135deg, #00e5a3 0%, #00b37e 100%) !important;
    border: none !important;
    box-shadow: 0 0 12px rgba(0, 229, 163, 0.4);
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, #33f0bb 0%, #00e5a3 100%) !important;
    box-shadow: 0 0 20px rgba(0, 229, 163, 0.7) !important;
    color: #000000 !important;
}

/*==================================
       ESTILOS PROPIOS DE CARDS
==================================*/
.card {
    background: #111722 !important;
    border: 1px solid rgba(0, 229, 163, 0.25) !important;
    border-radius: 14px;
    transition: all .30s ease;
    overflow: hidden;
}

/* Hover con resplandor neón institucional */
.card:hover {
    border-color: #00e5a3 !important;
    box-shadow: 0 0 30px rgba(0, 229, 163, 0.35), inset 0 0 15px rgba(0, 229, 163, 0.1) !important;
}

.card-body {
    padding: 1.5rem !important; 
}

.card-title {
    color: #ffffff !important;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.card-text {
    color: #b7c0cf !important;
    line-height: 1.7;
}

.card-footer {
    background-color: #141923 !important;
    border-top: 1px solid rgba(0, 229, 163, 0.2) !important;
    padding: 1rem 1.5rem !important;
}

/* Footer Multicolumna */
.footer-custom {
    background-color: #10141d !important;
    border-top: 1px solid rgba(0, 229, 163, 0.2) !important;
    color: #94a3b8;
}

.footer-custom h5 {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer-custom ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-custom ul li {
    margin-bottom: 0.6rem;
}

.footer-custom ul li a {
    color: #8a99ad !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease-in-out;
}

.footer-custom ul li a:hover {
    color: #00e5a3 !important;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #64748b;
}