html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@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;
}

.section-fullpage {
    min-height: 100vh; /* Al menos igual a la altura visible */
    display: flex;
    align-items: center; /* Centra verticalmente el contenido */
    justify-content: center; /* Centra horizontalmente si lo deseas */
    padding: 0; /* O usa el padding que prefieras */
    position: relative; /* Útil si necesitas overlays */
    /* Opcional: background, box-shadow, etc. */
    /*scroll-margin-top: 90px;  ajusta según alto de tu header/navbar */
}
