/* Fondo con imagen difuminada */
body {
    background: url('../images/fondo.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.index-box {
    background: rgba(255, 255, 255, 0.20);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    color: #fff;
}

.text-bg-white {
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    color: #000;
}


/* Tarjeta estilo glass */
.card-glass {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.card-glass input {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.card-glass input::placeholder {
    color: #e5e5e5;
}

.card-glass .btn-dark {
    background: rgba(0, 0, 0, 0.6);
    border: none;
}

.card-glass .btn-dark:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Centrado */
.full-center {
    height: 100vh;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3CA1BA;
    padding: 10px 20px;
     box-shadow: 5px 5px 15px gray;
     border: 2px solid green;
  border-radius: 5px;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 20px; /* Espacio entre los enlaces */
}

.navbar-links li a {
    text-decoration: none;
    color: #333;
}

.navbar-logo img {


}

/* Estilo por defecto */
#miNavbar {
    background-color: white;
    color: black;
}

/* Estilo cuando la sección está activa */
#miNavbar.seccion-activa {
    background-color: blue;
    color: white;
}