/*FONTS*/
@font-face {
    font-family: 'IG';
    src: url('./fonts/Oswald-Bold.ttf') format('woff2'),
}

/*PRINCIPALES*/

.activo {
    color: brown !important;
}

.centrar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.espacio {
    padding-top: 3rem;
}

a {
    text-decoration: none !important;
    color: white !important;
    font-family: Inconsolata;
}

a:hover {
    text-decoration: none;
}

.linea-divisoria {
    border: none;
    height: 4px;
    background-color: black;
    width: 80%;
    /* Ajusta el ancho */
    margin-bottom: 2rem;
}

/*HEADER*/

.logo {
    width: 5rem;
}

li {
    text-decoration: none;
}

.header {
    position: fixed;
    width: 100%;
    /* Sombra fuerte para efecto 3D */
    transform: perspective(1000px) translateZ(10px);
    font-family: Inconsolata;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 101;
    transform: translateY(-100%);
    opacity: 0;
    animation: slideDown 0.7s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-item a {
    color: black !important;
}

.nav-item a:hover {
    color: brown !important;
}

/*SECTION BANNER*/

.boton2 {
    display: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inconsolata;
}

.banner {
    background-image: url(./images/Banner/prueba2.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.textoMedio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Inconsolata;
    color: white;
    height: 100vh;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 1);


}



.textoMedio h2 {
    font-size: 8rem;
    font-weight: bold;
    word-spacing: -1.6rem;
    line-height: 5rem;

}

.h2-1 {
    font-size: 10.1rem !important;
    line-height: 7rem !important;
}

.textoMedio h3 {
    font-size: 2.3rem;
    font-weight: bold;
    word-spacing: -0.5rem;


}

.textoMedio h4 {
    font-size: 1.5rem;
    font-weight: bold;
    word-spacing: -0.5rem;
}

/* BOTONES */

.btn-outline-danger {
    border-radius: 4rem;
    font-family: Inconsolata;
    border-radius: 4rem !important;
}

.btn-outline-danger a {
    color: brown !important;
}

.btn-outline-danger a:hover {
    color: white !important;
}

.btn-outline-danger .nav-link {
    font-family: Inconsolata;
    /* Cambiar la fuente del enlace */
    color: inherit;
    /* Para que el enlace herede el color del botón */
    font-weight: bold;
}

.boton {
    padding-top: 1rem;
}

.cta {
    position: relative;
    margin: auto;
    padding: 19px 22px;
    transition: all 0.2s ease;
    border: 0.2rem solid white;
    border-radius: 4rem;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: brown;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    vertical-align: middle;
}

.cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: white;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    background: black;
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active {
    transform: scale(0.96);
}

/*SECTION SERVICIOS*/

.sectionServicios {
    margin-top: 2rem;
}

.title-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* Ajusta el tamaño del título */
    background-color: rgba(0, 0, 0, 0.6);
    /* Fondo negro con transparencia */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.titulo {
    color: white;
    font-size: 3rem;
    /* Tamaño del título */
    text-align: center;
    z-index: 2;
    font-family: Inconsolata;
    font-weight: bold;
}


.sectionServicios {
    position: relative;
    width: 100%;
    /* Sección ocupa toda la altura de la pantalla */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: relative;
    flex-grow: 1;
    flex-basis: 0;
    transition: flex-grow 0.5s ease-in-out;
    overflow: hidden;
    width: 100vh;
}

.slide:hover {
    flex-grow: 1.3;
}

.slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: skew(15deg, 0);
    left: -10%;
}

.slide:first-child {}

.slide:last-child {}

.slide h1 {
    position: absolute;
    color: white;
    font-size: 2rem;
}

.contenedorSlider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/*DESTACADOS*/

.card {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.sectionDestacados {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.botonVerAutos {
    margin-top: 2rem;
}

.tDestacados {
    color: black;
}

.precioCard {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.precioCard p {
    padding-left: 1rem;
}

.precio {
    color: brown;
}

/*NOSOTROS*/

.sectionNosotros {
    margin-top: 4rem;
    display: flex;
    justify-content: center;

}

.boxNosotros {}

.logoGrande {
    width: 16rem;
}

.nosotros {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-container {}

/*FOOTER*/


/*SECTION AUTOS */

.sectionBoxFiltros {
    padding-top: 10rem;
    justify-content: center;
    align-items: center;
}

.boxFiltro {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: gray;
    border-radius: 4rem;
}

.sectionAutos {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.boxVehiculos {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card {
    display: flex;
    flex-direction: row;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.3s;
    height: 10rem;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 10rem;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 10px;
    flex-grow: 1;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-price {
    font-size: 18px;
    color: #00a650;
    font-weight: 600;
}

/* PUBLICACIONES AUTOS */

.imagenPrincipalVehiculos {
    width: 100%;
}

.miniFoto {
    width: 20rem;
}

.cursor-pointer {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cursor-pointer:hover {
    opacity: 0.8;
}

/*
.tituloAuto {
    font-family: Inconsolata;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 5rem;
    color: white;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
*/

.tituloAuto2 {
    font-size: 3rem;
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    scale: 1.1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.car-image-audia3 {
    margin-top: 4rem;
}

/*
.car-image-fiatstrada {
    background-image: url(./images/autos/fiat\ strada/IMG_3340.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-audia3 {
    background-image: url(./images/autos/audi\ a3/IMG_1469.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-ram1500 {
    background-image: url(./images/autos/ram\ 1500/IMG_3615.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-jeepCompass {
    background-image: url(./images/autos/jeep\ compass/IMG_2262.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-veloster {
    background-image: url(./images/autos/hyundai\ veloster/IMG_0930.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-cru {
    background-image: url(./images/autos/chevrolet\ cruse/IMG_1096.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-chev400 {
    background-image: url(./images/autos/chevrolet\ 400/IMG_1404.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-fordAHotRodB {
    background-image: url(./images/autos/ford\ a\ blanco/IMG_0978.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-fordAgulf {
    background-image: url(./images/autos/ford\ a\ gulf/IMG_1290.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-fordAbaquet {
    background-image: url(./images/autos/ford\ a\ rojo/IMG_1280.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-chevroletBuick {
    background-image: url(./images/autos/baquet\ buik/IMG_2867.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-fordFalconStandard {
    background-image: url(./images/autos/ford\ falcon\ 1980/IMG_1054.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-fordAvoiture {
    background-image: url(./images/autos/ford\ a\ voiture/IMG_2138.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-hotRodFordA {
    background-image: url(./images/autos/hot\ rod\ rojo\ /IMG_2238.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-coe {
    background-image: url(./images/autos/camion\ coe/IMG_2238.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-camionGmc {
    background-image: url(./images/autos/camion\ gmc/IMG_2290.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.car-image-peugeot208 {
    background-image: url(./images/autos/peugeot\ 208/IMG_1076.JPG);
    background-size: cover;
    background-position: center;
    height: 100vh;
}
*/

.boxImagenesAutos {
    margin: 0 !important;
}

.list-unstyled {
    color: brown;
}

.text-justify {
    text-align: justify;
}

.serviciosCelu {
    display: none;
}

/*RESPONSIVE*/

.navbar-toggler {
    background-color: black;
    /* Fondo negro */
    border: none;
    /* Opcional: sin borde */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.col-md-4 {
    max-width: 100% !important;
}

#formAgregarAuto {
}


@media (max-width: 991px) {
    .btnContacto {
        display: none !important;
    }
    .card:hover {
        scale: 1.0;
    }
}

@media (max-width: 926px) {
    .h2-1 {
        font-size: 6rem !important;
    }

    .textoMedio {
        font-size: 5rem;
    }

    .boton {
        display: none;
    }
    .boton2 {
        display: flex !important;
    }
    
}

@media (max-width: 1700px) {
    .wrapper {
        display: none;
    }

    .serviciosCelu {
        display: flex;
    }

    .sectionServicios {
        background-image: url(./images/Banner/IMG_2185.JPG);
        background-size: cover;
        background-position: center;
        padding-bottom: 2rem;
    }

}

@media (max-width: 767px) {
    .textoMedio h2 {
        font-size: 4rem !important;
    }

    .textoMedio {
        font-size: 3rem;
    }
}