/*
   ESTILOS DE LA PÁGINA INICIO
*/

/* Efecto hover para imágenes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Texto secundario */
.text-body-secondary {
    font-size: 1.2rem;
    color: #6c757d;
}

/*
   SECCIÓN DE VEHÍCULOS (CARRUSEL, FLECHAS PERSONALIZADAS Y BOTONES)
*/

/* Imagen del vehículo a ancho completo */
.vehicle-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
}

/* Flechas personalizadas del carrusel */
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    z-index: 10;
    cursor: pointer;
}

.carousel-control-prev.custom-arrow {
    left: 20px;
}

.carousel-control-next.custom-arrow {
    right: 20px;
}

.arrow-img {
    width: 40px;
    height: auto;
}

/* Media query para móviles: ajustar la posición vertical de las flechas */
@media (max-width: 576px) {
    .custom-arrow {
        top: 45%; /* Ajusta este valor según convenga para centrar mejor en móviles */
    }
}

/* Botones Cotizar / Más info (imagen de fondo) */
/* Ubicados debajo de la imagen del carrusel */
.btn-cotizar,
.btn-info {
    display: inline-block;
    width: 180px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border: none;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
    margin: 10px 30px;
}

.btn-cotizar {
    background-image: url('../images/elementos/btncotizar.png');
}
.btn-info {
    background-image: url('../images/elementos/btnmasinfo.png');
}

