/* RESET DE IMÁGENES: Esto arregla el carrusel y las tarjetas */
.carousel-item img, 
.card-img-top {
    width: 100% !important;
    height: 450px !important; /* Altura controlada */
    object-fit: cover !important; /* Recorta sin estirar */
    object-position: center !important; /* Centra la máquina */
}

/* Ajuste específico para tarjetas (más bajas que el carrusel) */
.card-img-top {
    height: 250px !important;
}

/* Estilo para el Logo */
.navbar-brand span {
    font-family: "fajala", sans-serif;
    color: #F4F4F4 !important;
    text-shadow: 2px 2px 0px black;
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    .carousel-item img {
        height: 280px !important;
    }
}

/* Arreglo para el carrusel de maquinaria */
.carousel-item img {
    width: 100% !important;
    height: 550px !important; /* Altura ideal para PC */
    object-fit: contain !important; /* Ajusta la foto sin cortarla */
    background-color: #000; /* Fondo negro si la foto es pequeña */
}

/* Arreglo para móviles */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px !important;
    }
}