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;
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;


}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}
.navbar {
    background-color: #003366;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.nav-link {
    color: white;
    transition: background-color 0.2s, transform 0.2s;
}
.nav-link:hover {
    background-color: dodgerblue;
    transform: translateY(-5px);
}
.btn-primary {
    background-color: #004a99;
    border: none;
}

.card {
    border-radius: 12px;
    border: none;
    transition: transform 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,.1);
    }
 
.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.footer { background-color:lightgrey; font-size:small;
          
}
    .footer .container {
        
        color: darkblue;
       
        
    }

/* Estilos específicos para replicar el diseño del documento */
.hero-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    vertical-align:bottom;
}

/* Sección Productos: Contenedores en linea sin separacion [cite: 7] */
.products-row {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
}

.product-card {
    flex: 1;
    padding: 30px 15px;
    text-align: center;
    color: white;
}

    .product-card img {
        max-width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

/* Colores de fondo de productos [cite: 9, 10, 11, 12] */
.bg-dark-grey {
    background-color: #2f2f2f;
}

.bg-blue {
    background-color: #0056b3;
}

.bg-indigo {
    background-color: #4b0082;
}

.bg-black {
    background-color: #000000;
}

/* Seccion Nosotros: Contenedores con separacion  */
.about-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.about-card {
    flex: 1;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
}

.footer-aurisa {
    background-color: #333;
    color: white;
    padding: 40px 0;
}
