html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    /* Ruta de tu imagen */
    background-image: url('../images/SICIMELogo3.png');
    /* Para que la imagen cubra toda la pantalla siempre */
    background-size: cover;
    /* Para que el fondo no se mueva al hacer scroll */
    background-attachment: fixed;
    /* Centrar la imagen */
    background-position: center;
    /* Color de respaldo por si la imagen no carga */
    background-color: #f4f7f6;
}

.container {
    background-color: rgba(70, 130, 180, 0.6); /* Blanco con 90% de opacidad */
    border-radius: 3px;
    padding: 10px;
    margin-top: 10px;

}


.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

:root {
    /* CAMBIA ESTOS COLORES A TU GUSTO */
    --nav-bg-color: rgba(255, 255, 255, 0.45); /* Color de fondo (blanco translúcido) */
    --nav-text-color: #2c3e50; /* Color de la letra */
    --nav-hover-color: #3498db; /* Color al pasar el mouse */
    --nav-accent-color: #2980b9; /* Color de la marca/logo */
}

/* Navbar Moderna */
.navbar-custom {
    background-color: var(--nav-bg-color) !important;
    backdrop-filter: blur(10px); /* Efecto cristal */
    border-radius: 0 0 15px 15px; /* Bordes redondeados abajo */
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

/* Estilo del texto del Logo */
.brand-text {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--nav-accent-color);
    font-size: 1.4rem;
}

/* Imagen del Logo */
.logo-img {
    transition: transform 0.3s ease;
    border-radius: 5px;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.1); /* El logo crece un poco al pasar el mouse */
}

/* Enlaces de navegación */
.nav-link-custom {
    color: var(--nav-text-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link-custom:hover {
        color: var(--nav-hover-color) !important;
    }

    /* Línea animada debajo de los links */
    .nav-link-custom::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--nav-hover-color);
        transition: width 0.3s ease;
    }

    .nav-link-custom:hover::after {
        width: 100%;
    }