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.con-fondo{
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.3)), 
                url('../img/fondo_pagina1.jpg') no-repeat center center fixed;
    color: #fff;
}

body.sin-fondo {
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.4)) !important;
    
}

body {
  margin-bottom: 60px;
}

/* Detalle visual para la estrella */
.navbar-brand img {
    transition: transform 0.2s ease-in-out;
}

.navbar-brand img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px gold);
}

/* Nombre, Marca y Modelo Mayuscula */
.nombre-cliente {
    text-transform: uppercase;
}

.texto-mayus {
    text-transform: uppercase;
}