/*--------------------------------------------------------------*/
/* Efecto Scale-up: El elemento comienza más pequeño y se expande hacia su tamaño original */
[data-inview-showup="scale-up"] {
    opacity: 0; /* Invisible al principio */
    transform: scale(0.8); /* Comienza con un tamaño más pequeño */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Transición suave */
}

    /* Cuando el elemento entra en la vista, se expande a su tamaño original */
    [data-inview-showup="scale-up"].in-view {
        opacity: 1;
        transform: scale(1); /* Vuelve a su tamaño normal */
    }

/*--------------------------------------------------------------*/
/* Efecto Fade-left: El elemento se mueve desde la izquierda y se vuelve visible */
[data-inview-showup="fade-left"] {
    opacity: 0; /* Invisible al principio */
    transform: translateX(-50px); /* Comienza 50px a la izquierda */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Transición suave */
}

    /* Cuando el elemento entra en la vista, se mueve hacia su posición original */
    [data-inview-showup="fade-left"].in-view {
        opacity: 1;
        transform: translateX(0); /* Se mueve a su posición original */
    }


/*--------------------------------------------------------------
Carousel
 --------------------------------------------------------------*/

.item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}



/*--------------------------------------------------------------
Titulo
--------------------------------------------------------------*/
.section-title h2 {
    text-align: center;
    padding-bottom: 1vh;
    position: relative;
    color: white;
    /*    font-family: 'Coolvetica';
*/
    font-family: 'Coolvetica', sans-serif;
    font-size: 60px;
    margin-bottom: 30px;
}

    .section-title h2:after {
        content: "";
        position: absolute;
        display: block;
        width: 9rem;
        height: 3px;
        background: white;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
@media (max-width: 550px) {

    .section-title h2, .cotiza {
        font-size: 30px;
    }
}
/*--------------------------------------------------------------
Razones Para Elegirnos
 --------------------------------------------------------------*/
.elegirnos {
    background-color: #FD7C1F;
    padding: 60px 0;
    overflow: clip;
}

.iconoelegirnos {
    color: black;
    height: 8vh;
    margin-bottom: 1rem;
}
.textoelegirnos {
    color: black;
    font-family: 'Altone Trial', sans-serif;
    font-size: 20px;
    /*margin-left: 2rem;
    margin-right: 2rem;*/
    text-align: center;
}
@media (max-width: 770px) {
   
    .iconoelegirnos {

        margin-top: 1rem;
    }
}
/*--------------------------------------------------------------
Ventas del Mes
 --------------------------------------------------------------*/
.ventas {
    background-color: #27272A;
    padding: 60px 0;
    overflow: clip;
}



 .stats-item {
    padding: 30px;
    width: 100%;
}


    .stats-item .purecounter {
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 90px;
        line-height: 40px;
        font-weight: 700;
        margin-bottom: 2rem;
    }

.textoventas {
    color: white;
    font-family: 'Altone Trial', sans-serif;
    font-size: 30px;
}
/*--------------------------------------------------------------
Buscador
    --------------------------------------------------------------*/
.buscador {
    background-color: #27272A;
    padding: 60px 0;
    overflow: clip;
}
.inputFiltro {
    height: 4vh !important;
    width: 35vh !important;
    text-align: center;
    font-size: 20px;
    font-family: 'Altone Trial', sans-serif;
}
.select2-results__option, .select2-selection__rendered {
    text-align: center;
}

.select2-container .select2-selection__rendered {
    font-family: 'Altone Trial', sans-serif;
    font-size: 15px;
    line-height: 35px !important;
}
.select2-container .select2-selection--single {
    height: 4vh !important;
}
@media (max-width: 1550px) {

    .select2-container .select2-selection--single {
        height: 5vh !important;
    }
}
.botnfiltro {
    margin-top: 4rem;
    background-color: #FD7C1F !important;
    color: white !important;
    border-radius: 30px;
    width: 20vh;
    font-family: 'Altone Trial' !important;
}
    .botnfiltro:hover {
        background-color: transparent !important;
        border: 1px solid #FD7C1F !important;
            color: white !important;
    }
@media (min-width: 1500px) {
    .select2-container .select2-selectin--single {
        height: 5vh !important;
      
    }
}
@media (max-width: 770px) {
    .inputFiltro {
        width: 30vh !important;
    }

    .select2-container .select2-selection--single {
        height: 5vh !important;
    }
}
/*--------------------------------------------------------------
Financiacion
 --------------------------------------------------------------*/
.financia {
    background-color: #FD7C1F;
    padding: 60px 0;
    overflow: clip;
}
@media (max-width: 770px) {

    .filtroHome {
        align-items: center !important;
        margin-bottom: 2rem;
    }
    .botnfiltro {
        margin-top: 0;
    }
 

}


/*--------------------------------------------------------------
Destacados
 --------------------------------------------------------------*/
.destacados {
    position: relative;
    padding: 60px 0;
    overflow: clip;
}

.img-destacados {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
    z-index: -1;
}
 .destacadosResponsive {
    max-height: 20rem ;
}
@media (max-width: 750px) {

     .destacadosResponsive {
        max-height: none !important;
    }
    
}
@media (max-width: 450px) {

    .card .card-content {
        bottom: 0px !important;
        height: 15vh !important;
    }
}

/*--------------------------------------------------------------
Publicidad
 --------------------------------------------------------------*/
.publi{
    height:100vh;
}
.publiimg{
    height:100% ;
}
.aspect-4-5 {
    position: relative;
    width: 100%;
    padding-top: 125%; /* Relación 4:5 = 1350/1080 = 1.25 */
}

    .aspect-4-5 > .contenido-publi {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/*--------------------------------------------------------------
Catalogo 
 --------------------------------------------------------------*/
/*--------------------------------------------------------------
Titulo
 --------------------------------------------------------------*/
.titulo {
    height: 10vh;
    background-color: #FD7C1F !important;
    margin-top: 15vh;
}
    .titulo h1 {
        font-size: 2rem;
        font-family: 'Altone Trial', sans-serif;
        color: black;
        padding-top: 2rem;

    }
@media (max-width: 1550px) {

    .titulo h1 {
        padding-top: 1.5rem;
    }
}
@media (max-width: 550px) {

    .titulo h1 {
        font-size: 1rem;
        padding-top: 2.5rem;
    }
}
/*--------------------------------------------------------------
Listado 
 --------------------------------------------------------------*/
.listado {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
    background-color: #27272A !important;
}

.listado h4 {
    color: white;
    font-weight: bold;
    font-family: 'Altone Trial', sans-serif;
    display:flex;
    justify-content:center;
}
#Listado ul {
    color: white;
    list-style: none;
    font-family: 'Altone Trial', sans-serif;
    text-transform: capitalize;
}
.botnlist {
    background-color: #FD7C1F !important;
    color: white !important;
    border-radius: 30px;
    width: 5vh;
    font-family: 'Altone Trial' !important;
    width: 100%;
}
    .botnlist:hover {
        background-color: transparent !important;
        border: 1px solid #FD7C1F !important;
        color: white !important;
    }
.listado ul {
    padding-left: 1rem;
}

.borde {
    color: white;
    border-radius: 100%;
}
.filter-input-price-container {
    position: relative;
    display: inline-block;
    width: calc(50% - 25px);
    margin-right: 5px;
}

    .filter-input-price-container .filter-input-price {
        height: auto;
        padding: 4px 6px;
        font-size: 10px;
    }


.card {
    position: relative !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    border-radius: 20px !important;
    overflow: hidden;
    cursor: pointer;
    border: 0px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
     .catalogoimgResponsive {
        max-height: 20rem ;
    }

.card-custom {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid white !important;
}

    .card-custom:hover {
        transform: translateY(-10px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.card-text-top {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column; /* Apila los elementos verticalmente */
    align-items: center; /* Centra el texto horizontalmente */
    justify-content: center; /* Centra el contenido verticalmente */
    text-align: center;
    color: white; /* Para que el texto sea visible */
    background: rgba(0, 0, 0, 0.8); /* Fondo negro con opacidad */
}
.card-text-bottom {
    padding-top: 5px !important;
    flex: 0 0 20%;
    display: flex;
    flex-direction: column; /* Apila los elementos verticalmente */
    align-items: center; /* Centra el texto horizontalmente */
    justify-content: center; /* Centra el contenido verticalmente */
    text-align: center;
    color: white; /* Para que el texto sea visible */
    background: rgba(0, 0, 0, 0.8); /* Fondo negro con opacidad */
}

.card-textTop {
    color: white; /* Para que el texto sea visible */
    font-family: 'Coolvetica', sans-serif;
    font-size: 20px;
}
.card-textBotoom {
    color: white; /* Para que el texto sea visible */
    font-family: 'Coolvetica', sans-serif;
    font-size: 15px;
}
.espaciop{
    margin-bottom: 0px !important;
}

.card-img-container {
    flex: 0 0 60%; /* 60% del alto */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.card-img-container2 {
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px !important;
}

@media (max-width: 1700px) {

    .card .card-content {
        bottom: -8px;
        height: 15vh;
    }
    .card .card-image {
        z-index: 0;
        height: 35vh;
    }
}
@media (max-width: 550px) {

    .card .card-content {
        bottom: -20px;
    }

    .card .card-image {
        z-index: 0;
        height: 50vh;
    }
}
        .card .card-content p {
            font-size: 15px;
            letter-spacing: 0px;
            text-align: center;
            transition: none;
            opacity: 1;
            font-family: 'Altone Trial', sans-serif;
            padding-left: 5px;
            padding-right: 5px;
            margin-bottom:5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .card .card-content .nombreauto  {
            font-size: 15px !important;
           
        }
.accordion-item {
    background-color: #27272a !important;
    border: none !important;
    color:white !important;
}
.botonacordion {
    color: white !important;
}
.accordion{
    width:100%;
    text-align:center;
}
.select2-container {
    width: 15vw !important;
}

.ocultarBoton{
    display:none !important;
}
.filtro0 {
    font-family: 'Altone Trial', sans-serif;
    color:white;
}
@media (max-width: 1500px) {
    #Listado .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 11px !important;
    }
    #buscador .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 15px !important;
    }

}
@media (max-width: 575px) {

    .catalogoimgResponsive {
        max-height: none;
    }
    #cardList {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }
   
}
@media (max-width: 1000px) {

     .ocultarBoton {
        display: block !important;
    }
    #Listado .select2-container {
        width: 60vw !important;
    }
    #Listado .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 20px !important;
    }
  
    #cardList {
     display:flex;
     justify-content:center;
    }
 
}
@media (max-width: 767px) {


    #buscador .select2-container {
        width: 60vw !important;
    }

   
}

.card-container {
    width: 100%;
    height: auto; /* Permite que el tamaño se ajuste al contenido */
}

.card-img-container1 {
    width: 100%; /* Ocupa el 100% del ancho disponible */
    min-height: 12rem; /* Establece una altura mínima */
    height: auto; /* Permite que la altura se ajuste al contenido */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* Asegura que padding no afecte el tamaño */
}



/*--------------------------------------------------------------
Vehiculo 
 --------------------------------------------------------------*/
.vehiculo {
    padding-left: 15vw;
    padding-right: 15vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
    background-color: #27272A !important;
}
.imagenVehiculoventa {
    width: 75%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.imagenVehiculominiatura {
    max-width: 100px;
    cursor: pointer;
    height: 100%
}
.zoom-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

    .zoom-container img {
        width: 100%;
        transition: transform 0.3s ease-in-out; /* Transición suave para el zoom */
    }

    .zoom-container:hover img {
        transform: scale(1.5); /* Ajusta el nivel de zoom */
        cursor: zoom-in;
    }

.h-80 {
    height: 80vh;
}
.datosVehiculoventadiv {
    color: white;
    font-family: 'Altone Trial', sans-serif;
}
.marcaVistaV {
  
   font-weight:700;
   font-size:3rem;
}
.modelVistaV {
    font-weight: 700;
    font-size: 1.7rem;
}
.precioVistaV {
    display: flex;
    justify-content: center;
    font-weight: 700;
    font-size: 3rem;
}
.anioVistaV {
    font-size: 1.5rem;
}
.kmVistaV {
    font-size: 1rem;
}

.botonVehiculollamar {
    display: flex;
    justify-content: center;

}
.vehiculo .botonllamar {
    background-color: #FD7C1F;
    border-radius: 20px;
    color: black;
    height: 5vh;
    width: 25vw;
    font-family: 'Altone Trial', sans-serif;
    font-size: 20px;
    font-weight: 600;
}
    .vehiculo .botonllamar:hover {
        background-color: #d5691b;
    }
.vehiculo .botonescribir {
    height: 5vh;
    width: 25vw;
    border-radius: 20px;
    color: black;
    font-family: 'Altone Trial', sans-serif;
    font-size: 20px;
    font-weight: 600;
    background-color: #25D366 !important;
}
    .vehiculo .botonescribir:hover {
        background-color: #0ebb4e !important;
    }
.ficha {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
    background-color: #27272A !important;
    
}
    .ficha .fichatittle {
        font-family: 'Altone Trial', sans-serif;
        color: white;
    }
    .ficha .bordeficha {
        border: none; /* Eliminar el borde predeterminado */
        height: 3px; /* Altura del hr */
        background: linear-gradient(to right, #FD7C1F 20%, white 80%);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    .ficha .titulostabla1 li, .ficha .titulostabla2 li {
        color: #B8B7B8;
        font-family: 'Altone Trial', sans-serif;
        list-style: none;
        font-size: 1.5rem;
    }
    .ficha .datostabla1 li, .ficha .datostabla2 li {
        color: white;
        font-family: 'Altone Trial', sans-serif;
        list-style: none;
        font-size: 1.5rem;
    }
.paginacion {
    margin-left: 5px;
    background-color: #FD7C1F !important;
    color: white;
    border: 1px solid #FD7C1F !important;
}
.paginacionActive {
    margin-left: 5px;
    background-color: white !important;
    color: black !important;
    border: 1px solid white !important;
}
.card-img-container {
    width: 100%; /* Asegura que el contenedor ocupe todo el ancho */
    height: 200px; /* Ajustá la altura según lo que necesites */
    overflow: hidden; /* Oculta el exceso de la imagen si es necesario */
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-img {
    width: 100%; /* La imagen ocupará todo el ancho del contenedor */
    height: 100%; /* La imagen ocupará toda la altura del contenedor */
    object-fit: cover; /* Recorta la imagen para que mantenga proporción sin deformarse */
}

@media (max-width: 767px) {

    .anchoceluficha {
       width:50% !important;
    }
    .ficha .titulostabla1 li, .ficha .titulostabla2 li, .ficha .datostabla1 li, .ficha .datostabla2 li {
        font-size: 1rem;
    }
    
}
@media (max-width: 1550px) {

    .vehiculo .botonllamar, .vehiculo .botonescribir {
        height: 5vh;
        width: 25vw;
        font-size: 12px;
    }
}
@media (max-width: 850px) {

    .vehiculo .botonllamar, .vehiculo .botonescribir {
        height: 6vh;
        width: 35vw;
        font-size: 13px;
    }
}
@media (max-width: 550px) {

    .carousel-control-prev, .carousel-control-next-icon {
        display: none !important;
    }
    .vehiculo {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .marcaVistaV {
        font-size: 2rem;
    }
    .modelVistaV {
        font-size: 1rem;
    }
    .precioVistaV {
       
        font-size: 2rem;
    }
    .vehiculo .botonllamar, .vehiculo .botonescribir {
        width: 100vw;
    }
    .ocultarModel{
        display:none;
    }
}

.miniaturas-contenedor {
    display: flex;
    justify-content: center; /* Centra las miniaturas horizontalmente */
    flex-wrap: nowrap; /* Evita que se envuelvan a una nueva línea */
    gap: 10px; /* Espaciado entre miniaturas */
}

.miniatura {
    flex: 0 0 calc(100% / 6 - 10px); /* Cada miniatura ocupa 1/6 del ancho menos el espaciado */
    max-width: calc(100% / 6 - 10px); /* Limita el ancho máximo */
}

.imagenVehiculominiatura {
    width: 100%; /* Escala la imagen dentro de su contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
}

/*--------------------------------------------------------------
COTIZACION
    --------------------------------------------------------------*/
.cotizacion {
    padding-left: 25vw;
    padding-right: 25vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
    background-color: #27272A !important;
}
.cotiza {
    text-align: center;
    padding-bottom: 1vh;
    position: relative;
    color: white;
    font-family: 'Coolvetica', sans-serif;
    font-size: 50px ;
}
.cottizaForm {
    margin-top: 5vh;
}
    @media (max-width: 990px) {
        .cotizacion {
            padding-left: 15vw;
            padding-right: 15vw;
        }
    }

    @media (max-width: 550px) {

        .cotizacion {
            padding-left: 5vw;
            padding-right: 5vw;
        }
    }

    @media (max-width: 767px) {

        .cotizacion h2 {
            font-size: 2rem;
        }
    }

    .cotizacion .card {
    border: 2px solid black !important;
}
.cotizacion .card-body {
    background-color: #27272A !important;
}
.cotizacion .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 9rem;
    height: 3px;
    background: #FD7C1F !important;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.botonCotiza {
    background-color: #FD7C1F !important;
    color: white !important;
    border-radius: 30px;
    width: 20vh;
    font-family: 'Altone Trial' !important;
}

    .botonCotiza:hover {
        background-color: transparent !important;
        border: 1px solid #FD7C1F !important;
        color: #FD7C1F !important;
    }

/*--------------------------------------------------------------
FORMAS DE PAGO
    --------------------------------------------------------------*/
.pagoCard {
    background-color: #27272A !important;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.pagoCard .pagoCard-content img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

    .pagoCard .pagoCard-content .pagoCard-info {
        background-color: black;
        padding: 25px 20px;
        position: relative;
        z-index: 2;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

        .pagoCard .pagoCard-content .pagoCard-info h4 {
            font-size: 18px;
            font-weight: 600;
            text-align: center;
        }

        .pagoCard .pagoCard-content .pagoCard-info h4 {
            color: #FD7C1F;
            transition: 0.3s;
            text-decoration: inherit;
            text-align: center;
        }
        .pagoCard .pagoCard-content .pagoCard-info p {
            color: white;
            font-size: 14px;
            margin-bottom: 0;
            text-align: center;
        }
    .pagoCard img {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }
.pagoCard .pagoCard-content .pagoCard-info:hover img {
    transform: scale(1.1);
   
}
.list-group-item:hover {
    background-color: #25D366 ;
}
.llamar:hover {
    background-color: #FD7C1F !important;
}
.linkwpp {
    text-decoration: none !important; /* Elimina el subrayado del texto */
}