/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to top, #dfe9f3 0%, white 100%);
    background-attachment: fixed;
}

.card, .search-container {
    background-color: rgba(255, 255, 255, 0.85); /* Fondo blanco con transparencia */
    backdrop-filter: blur(10px); /* Efecto de desenfoque para el fondo */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Borde sutil */
}

/* Contenedor principal de búsqueda */
.search-container {
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 4rem auto;
}

.search-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Estilo de los campos de entrada */
.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    text-transform: uppercase; /* Convertir texto a mayúsculas */

}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Estilo del botón de búsqueda */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

/* Pie de página */
.footer {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer a {
    color: #f8f9fa;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons a {
    font-size: 1.5rem;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #0d6efd;
}
.navbar-brand-gradient {
    font-size: 1.8rem; /* Aumentar el tamaño de la fuente */
    font-weight: bold; /* Hacer la fuente más gruesa */
    background: -webkit-linear-gradient(45deg, #0d6efd, #0dcaf0); /* Gradiente para navegadores Webkit */
    -webkit-background-clip: text; /* Aplicar el fondo solo al texto */
    -webkit-text-fill-color: transparent; /* Ocultar el color de relleno original */
    background-clip: text;
    color: transparent;
}