:root {
    --primary-blue: #0056b3;
    --dark-bg: #0a2d75;
    --dark-card: #161b22;
    --electric-cyan: #42bacd;
    --text-muted: #aeb9cc;
}
/* Clase personalizada para el color Cyan */
.text-electric-cyan-menu {
color: var(--electric-cyan) !important;
    font-size: 0.65rem !important;
    font-weight: 400 !important;
    display: block; /* Esto lo manda a la línea de abajo */
    line-height: 1; /* Ajusta el espacio entre líneas */
    margin-top: -2px; /* Lo pega un poquito más a LuzWare */
    text-transform: uppercase; /* Opcional: en mayúsculas se ve muy corporativo */
    letter-spacing: 1px; /* Espaciado entre letras para mayor legibilidad */
    
}

.text-electric-cyan {
    color: var(--electric-cyan) !important;
    /* Ajusta este valor a tu gusto (0.7rem o 0.8rem suelen quedar muy bien) */
    font-size: 1.50 !important; 
    /* Opcional: un peso de 400 la hace ver más delgada y elegante */
    font-weight: 400 !important;
    /* Un pequeño margen a la izquierda para que no choque con LuzWare */
    margin-left: 5px;
    /* Alineación vertical para que se vea centrada respecto al texto grande */
    vertical-align: middle;
    
}

/* Forzar el color de texto silenciado usando tu variable */
.text-muted {
    color: var(--text-muted) !important;
    opacity: 0.8; /* Le da un toque de transparencia elegante */
}

/* Mejorar la legibilidad de las mayúsculas */
.text-uppercase {
    text-transform: uppercase !important;
    letter-spacing: 1.5px; /* Pro-tip: las mayúsculas pequeñas se ven mejor con espacio */
    font-weight: 600; /* Un poco más de grosor para que no se pierda */
}




/* Ajuste específico para la etiqueta <small> en tu tema */
small {
    font-size: 0.75rem; 
    display: inline-block; /* Ayuda a que los márgenes y espacios funcionen mejor */
}
/* Base */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg) !important;
    color: #ffffff;
    overflow-x: hidden;
}


/* Fix para el Gradiente de Texto (Soluciona tu alerta) */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 40%, var(--electric-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text; /* Propiedad estándar agregada */
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback */
}

/* Hero Section */
.hero-section {
    padding: 30px 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.12), transparent 40%),
                radial-gradient(circle at 10% 80%, rgba(0, 86, 179, 0.08), transparent 40%);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 550px;
}

/* Tarjetas Estilo Glassmorphism */
.card-luzware {
    background: rgba(29, 36, 64, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.card-luzware:hover {
    transform: translateY(-10px);
    border-color: var(--electric-cyan);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.1);
}

/* Botones Premium */
.btn-luzware {
    background: linear-gradient(45deg, var(--primary-blue), #007bff);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-luzware:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    color: white;
}

/* Stats y Confianza */
.stat-item {
    border-left: 3px solid var(--electric-cyan);
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Inputs del Formulario */
.form-control, .form-select {
    background-color: #0d1117 !important;
    border: 1px solid #30363d !important;
    color: white !important;
    padding: 12px;
}

.form-control:focus {
    border-color: var(--electric-cyan) !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.15) !important;
}

/* Animación de imagen */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Mejora la visibilidad del Placeholder */
.form-control::placeholder, 
.form-select::placeholder {
    color: rgba(255, 255, 255, 0.2) !important; /* Un blanco semitransparente que se nota más */
    font-weight: 300;
}

/* Estilo para que la primera opción del select parezca placeholder */
.form-select {
    color: rgba(255, 255, 255, 0.2);
}

/* Cuando el usuario ya eligió algo, el texto se vuelve blanco brillante */
.form-select:focus, .form-select:not([value=""]) {
    color: white !important;
}

/* Ajuste fino del botón de envío */
.btn-luzware.px-5 {
    min-width: 220px; /* Asegura un tamaño elegante sin ser gigante */
    font-size: 1.1rem;
}

.fondo-secction
    {
        background-color: #ffffff;
    }

.text-blue
    {
        color: #1b62b4;
    }

.text-special
    {
        color: #003a55;
    }

.fondo-secctionForm
    {
        background-color: #ffffff;
    }

.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}