.heading-content p {
    font-weight: bold;
    font-size: 45px;
    margin-top: -3vw;
    margin-left: 30px;
    color: #050505;
    position: relative;
    font-family: "Poppins", sans-serif;
}
.heading-content span{
    color:#B70021;
}
.title-respaldo{
    font-size: 25px;
    color: #8b8b8b;
    text-align: center;
}
/* Estilo base para las imágenes */
.circle-service img {
    transition: all 0.3s ease; /* Hace que la animación sea fluida */
    cursor: pointer;
}

/* Efecto al pasar el mouse */
.circle-service img:hover {
    transform: scale(1.1); /* Agranda la imagen un 10% */
    filter: brightness(1.1); /* Le da un toque de luz */
}
.fila-respaldo{
    display: flex;
    justify-content: center; 
    align-items: center;     
    flex-wrap: nowrap;       
    gap: 60px;               
    margin: auto;
}
.img-respaldo{
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 16px 0;
}

.img-respaldo img{
    height: 60px;            /* Altura fija para que todos se vean del mismo tamaño */
    width: auto;             /* Mantiene la proporción original */
    object-fit: contain;
    transition: all 0.3s ease;
}
/* Efecto al pasar el mouse */
.img-respaldo:hover {
    transform: scale(1.05);
}
/* Contenedor principal */
.grid-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Estilo de la Tarjeta */
.card-principalservice {
    background-color: #f0f4ff; /* Azul muy claro como en tu imagen */
    border: 1px solid #ccc;
    border-radius: 25px; /* Bordes redondeados pronunciados */
    padding: 30px 20px;
    width: 320px;
    display: flex;
    flex-direction: column; /* Alineación vertical */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Espacio para el ícono */
.icono-wrapper img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

/* Títulos */
.card-principalservice h3 {
    font-size: 1.5rem;
    color: #1a2a40;
    margin-bottom: 15px;
}

/* Cuerpo de la card (el que empuja al botón) */
.card-body {
    flex-grow: 1; /* Esto hace que el texto ocupe todo el espacio disponible */
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.card-body p, .card-body ul {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    text-align: left; /* Texto a la izquierda como en la imagen */
    list-style: none;
    padding: 0;
}

/* Estilo del Botón */
.btn-anuncio {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #000;
    background-color: transparent;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-self: center; /* Centra el botón horizontalmente */
    margin-top: auto; /* EMPUJA el botón al final de la tarjeta */
}

.btn-anuncio:hover {
    background-color: #000;
    color: #fff;
}

.servicios-container {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 5px;
}
.servicios-visual img {
    max-width: 480px;
    width: 100%;
    height: auto;
}
.servicios-info {
    flex: 1;
}
.card-detalleservicios {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 10px 10px 5px 10px;
  transition: all .3s ease;
  border: 2px solid #c90000;
}

.card-detalleservicios:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(70, 70, 70, 0.25);
}
.card-detalleservicios h3 {
    margin: auto;
    color: #050505;
    font-size: 25px;
    text-align: center;
}
.content-iconos-detalleservicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 13px;
}


.icono-detalleservicios{
  text-align: center;
  font-size: 14px;
  transition: all .2s ease;
}
.icono-detalleservicios:hover{
  transform: scaleY(-4px);
}

.icono-detalleservicios img {
  width: 40px;
  margin: auto;
}

.cards-secundarias-detalservice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.card-pequeñas {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .3s ease;
  border: 2px solid #c90000;
}

.card-pequeñas:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
}

.card-pequeñas h3 {
  text-align: center;
  font-size: 18px;
  color: #050505;
  margin-bottom: 6px;
}

.iconos-card-pequeñas {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.iconos-card-pequeñas img {
  width: 32px;
  height: auto;
}

.card-pequeñas:nth-child(2) {
  background: #ffffff;
  border: 2px solid #c90000;
}

.cards-secundarias-detalservice .card-detalleservicios:hover {
  transform: scale(1.05);
}



/* =========================
   RESET + BASE RESPONSIVE
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden; /* MATA el scroll horizontal */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Imágenes SIEMPRE responsivas */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
.imgcarrosabout{
    margin: auto;
    padding-top: 5vw;
}
.textsection{
    font-size: 30px;
    padding: 3vw;
    width: 99%;
    color: #0c0c0c;
}
/* Evita desbordes raros */
section,
div {
  max-width: 100%;
}

/* BOTÓN CONTACTO UNIFICADO (LINEA 156) */
.btn-contacto {
    background-color: #000 !important;
    color: #ffcc00 !important;
    font-weight: 700;
    font-size: 13px; 
    padding: 6px 14px !important; 
    line-height: 1;
    display: flex;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    white-space: nowrap; 
    text-decoration: none !important;
    transition: 0.3s all;
    border: 2px solid transparent;
    margin-left: 10px;
    height: fit-content; 
    align-self: center;
}

.btn-contacto:hover {
    background-color: #ffcc00 !important;
    color: #000 !important;
    border-color: #000;
}

/* Ajuste para el icono dentro del botón */
.btn-contacto i {
    margin-left: 8px;
    font-size: 14px;
}
/* --- FIX PARPADEO DROPDOWN --- */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Evita el hueco que causa que el mouse "salga" del menú */
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.3s; /* Animación suave en lugar de parpadeo */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Evita que el dropdown original de Bootstrap parpadee al hacer click */
.dropdown-menu {
    border: none;
    box-shadow: 0 px 15px rgba(0,0,0,0.1);
}
/*navbar boton*/
.navbar_txtInicio{
    display: none;
}
/********** Template CSS **********/
:root {
    --primary: #f3a826;
    --secondary: #ffffff;
    --light: #000000;
    --dark: #e3dc1f;
}
.bg-marca{
    background-color: #e02a2a;
}
h1,
h2,
.font-weight-bold {
    font-weight: 100 !important;
    font-size: small;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 500 !important;
    font-size: 45px;
    padding: 0%;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}
.text2banner{
    font-size: 20px;
}

.imglogo{
    display: flex;
    width: 180px;
    height: auto;
    overflow: hidden;
}
.btn-subir{
    background: #921f1f;
    color: black;
    border-radius: 10px;
}

.contsearch{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.cont-entry-searchbar{
    background-color: #921f1f;
    border: none;
    border-radius: 48px;
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 1rem;
    cursor: pointer;
    transition: box-shadow .2s;
}
.social-icon {
    color: #1B262C;
    transition: transform 0.3s ease, color 0.3s ease;
    transform-style: var(--rojo-carroqhatu);
}

.social-icon:hover {
    transform: scale(1.2);
    color: #bc1313 !important; 
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.vista-service-mobil-img{
    display: none;
}
/*INICIO NAVBAR*/
.navbar-nav {
    display: flex;
    align-items: center; 
}
.bg-navbarcq.navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: unset !important;
}
.navbar .container,
.navbar .container-fluid,
.navbar-collapse {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.navbar .nav-link {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.1 !important;
}

.imglogo {
    width: auto;
    height: 36px;
    display: block;
}
.btn-contactowspp {
    background-color: #921f1f; 
    color: #FFD700 !important; 
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #921f1f;
}


.btn-contactowspp:hover {
    background-color: #FFD700;
    color: #921f1f !important;
    transform: scale(1.05);
}

.btn-contactowspp i {
    margin-left: 8px;
    font-size: 18px;
}
/*FIN BTN CONTACTO*/

/*CAR DETAIL PAGE*/
body { background-color: #ffffff; font-family: 'Open Sans', sans-serif; color: #1a1a1a; }
        
        /* Contenedor de Imagen con Flechas */
        .carousel-container { 
            position: relative; 
            border-radius: 12px; 
            overflow: hidden; 
            background: #f4f4f4; }
        .img-main { 
            width: 100%; 
            height: 450px; 
            object-fit: cover; }
        
        .btn-nav { 
            position: absolute; top: 50%; transform: translateY(-50%);
            background: #FBD333; border: none; width: 45px; height: 45px;
            border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            cursor: pointer; z-index: 10; transition: 0.3s;
        }
        .btn-nav:hover { background: #f8f8f8; scale: 1.1; }
        .btn-prev { left: 15px; }
        .btn-next { right: 15px; }

        /* Contador de imágenes 1/5 */
        .img-counter {
            position: absolute; top: 15px; right: 15px;
            background: rgba(0,0,0,0.6); color: white;
            padding: 4px 12px; border-radius: 6px; font-size: 0.8rem;
        }

        /* Caja de Información (Derecha) */
        .info-card { padding: 0 15px; }
        .price-contado { font-size: 1.7rem; font-weight: 500; margin-bottom: 0; }
        .divider { border-top: 1px solid #eee; margin: 20px 0; }

        /* Ficha técnica estilo lista */
        .tech-item { 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            padding: 15px 0; 
            border-bottom: 1px solid #eee; 
            cursor: pointer;

            flex: 1 0 calc(33.33% - 10px); 
            min-width: 100px;
            display: block;                
            padding: 10px; 
            border: 1px solid #eee;       
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
        }
        .tech-item:hover { 
            background-color: #fafafa; 
            border-color: #FBD333;
        }
        .title-model { font-size: 2vw;}
        .tech-label { 
            color: #666; 
            font-size: 1rem; 
            margin-bottom: 2px;
        }
        .tech-value { font-weight: 600; font-size: 1.1rem; display: block; }
        .tech-item i.fa-chevron-down { color: #0046ff; font-size: 0.8rem; }

        /* Miniaturas */
        .thumb { width: 100px; height: 70px; object-fit: cover; border-radius: 8px; cursor: pointer; margin-right: 10px; border: 2px solid transparent; }
        .thumb.active { border-color: #0046ff; }

        .techgrid-items {
            display: flex;
            flex-wrap: wrap; /* Permite que los elementos pasen a la siguiente línea */
            gap: 30px;       /* Espacio entre las cajas */
            margin-bottom: 20px;
        }





/*FIN CAR DETAIL PAGE*/

/*sección contacto*/
.title-contact{
    font-size: 3vw;
    color: #1B2532;
}
.contacto-section .form-control, .contacto-section .form-select {
    border: 2px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
}


.contacto-section .form-control:focus {
    border-color: #FBD333;
    box-shadow: none;
}
.sedes-contact,
.wspp-contact,
.correo-contact{
    background-color: #FBD333;
}
.btn-warning:hover {
    background-color: #e6c22e !important;
    transform: translateY(-2px);
}

.icon-contact {
    width: 35px; 
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c51f1f;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);      
    border-radius: 5px; 
    margin-right: 10px;
}
.icon-contact h6{
    color:#1B2532
}
.text-cardcontact{
    color:#1B2532
}
.form-labelcontact {
    color: #1B2532;
}
.btn-contactenviar{
    margin: 2vw;
}
.datos p{
    color: #808080;
    text-align: center;
    padding: 2vw;
}
/*fin seccion contacto*/



/* Ajuste para el icono de inicio */
.iconhome {
    width: 46px;
    transition: 0.3s;
}

/* Corregir color de links si el fondo es blanco */
.navbar-light .navbar-nav .nav-link {
    color: #1b1b1b !important;
    font-weight: 600;
    padding: 30px 15px;
}

/*FINAL NAVBAR*/
.section-cardsprincipalservice{
    width: 30%;
    height: auto;
    align-items: center;
    margin: auto;
}
.card-inspeccionprincipal{
    border-radius: 5px;
    border: 2px solid #3E4A5B;
}

.card-inspeccionprincipal img{
    width: 150px;
    height: auto;
    display: flex;
    margin: auto;
}
.card-inspeccionprincipal h1{
    text-align: center;
    font-weight: bold;
    font-size: large;
    color: black;
}
.card-inspeccionprincipal p{
    text-align: center;
    font-size: 13px;
    color: #5a5c62;
}
.nav-bar{
    background: #FBD333;
}
.navbar-dark .navbar-nav .nav-link {
    letter-spacing: 1px;
    color: var(--light);
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: red;
}
/* --- REDES SOCIALES --- */
.navbar-social {
    display: flex;
    gap: 12px;
    align-items: center;
    border-left: 1px solid #5b5b5b;
    padding-left: 20px;
    margin-left: 100px;
}

.navbar-social a {
    color: #323232; 
    font-size: 18px;
    transition: 0.3s;
}

.navbar-social a:hover {
    color: #f63100;
    transform: translateY(-3px);
}
@media (max-width: 991.98px) {
    
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .navbar-brand{
        flex-shrink: 0;
    }

    .navbar-social a i {
        font-size: 18px;
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 15px;
    }
    .imglogo{
        width: 110px;
        height: auto;
    }
}

.bannering{
    width: 100%;
    height: 50vw;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 576px) {
    .bannering{
        width: 100%;
        height: auto;
    }
}

/* BANNER PRINCIPAL */
.banner-video-container {
    position: relative;
    width: 100%;
    height: auto; 
    overflow: hidden;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}
.menuban_content{
    display: flex;
    justify-content:center; 
    flex-direction: column;
    margin-top: 20px;
    margin-left: 2vw;
    margin-right: 2vw;
    padding-left: 20vw;
    position: relative;
    width: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 12px 30px rgba(0,0,0,0.1);  
}

.cards-principal-content{
    display: flex;
    justify-content:center; 
    flex-direction: column;
    margin-top: -10vw;
    margin-left: 2vw;
    margin-right: 2vw;
    padding-left: 20vw;
    position: relative;
    width: auto;
    border-radius: 20px;
    padding: 30px;
}

/*BANNER COMPRA UN AUTO*/
.bannercontainercompra{
    position: relative;
    width: 100%;
    height: 50vw; 
    box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.6);
    z-index: 10;
}
.banner-overlaycompra{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 95%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}
.banner-overlayventa{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 95%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}
.title-servicioscompra{
    padding-top: 6vw;
}
.cta-gridcompra {
    display: flex;
    gap: 3vw;
    padding: 2vw; 
}

        /*servicios compra un auto*/
        .cta-compragrid{    
            display: flex;
            width: 93vw;
            gap: 8px;
            padding-top: 1vw;
        }
        .racontainer{
            padding: 2vw;
            
        }
        .section-compra {
            padding: 3vw;
        }
        .preguntacompra{
            font-size: 42px;
            color: #1a1a1a;
            margin: 0 0 10px 0px;
            font-weight: 700;
        }
        .subtexto-container{            
            padding: 2px;
            border-radius: 8px;
            display: inline-flex;    
                   
        }
        .subtexto{        
            font-size: 30px;
            margin-bottom: 2px;
            color: #242424;            
        }
        /*cards servicios compra*/
        .cards-compracontainer {
            display: flex;
            justify-content: center;
            padding-bottom: 4vw;
        }

        .cta-img-cardcompra {
            position: relative;
            width: 100%;
            height: auto; 
            border-radius: 12px;
            overflow: hidden; 
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
            background: #000; 
            cursor: pointer;
        }

        .cta-img-cardcompra:hover {
            transform: translateY(-12px) scale(1.00); 
            box-shadow: 0 20px 40px rgba(255, 0, 0, 0.25); 
            z-index: 10;
        }

        .cta-img-cardcompra img {
            width: 100%;
            height: 100%;
            display: block;
            transition: transform 0.6s ease;
        }

        .cta-img-cardcompra:hover img {
            transform: scale(1.0);
            filter: brightness(1.1); 
        }

        .cta-img-cardcompra::after {
            content: "";
            position: absolute;
            top: 0;
            left: -150%; 
            width: 50%;
            height: 100%;
            background: linear-gradient(
                to right, 
                rgba(255, 255, 255, 0) 0%, 
                rgba(255, 255, 255, 0.3) 50%, 
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-25deg); 
            transition: 0.7s;
        }

        .cta-img-cardcompra:hover::after {
            left: 150%; 
        }

/* CARD BASE */
.cta-img-card {
    position: relative;
    width: 100%;
    height: auto; 
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.cta-img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

/* IMAGEN */
.cta-img-card img {
    width: 100%;
    height: 100%;
}
  
/* BLOQUE MENÚ DEBAJO DEL BANNER SUPERPUESTO DE ICONOS */

@media (max-width: 768px) {
   

    .floating-inner {
        padding: 20px;
    }
}

/* ICONOS MENU_BANNER*/
.icon-grid {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 100%;
}
.btn-catalogocontent{
    margin: auto;
}

.icon-item {
    flex: 1;
    display: flex; /* Convertimos el ítem en un contenedor flex */
    flex-direction: column; /* Alineamos los elementos uno arriba del otro */
    align-items: center; /* Centrado horizontal (Eje X) */
    justify-content: center; /* Centrado vertical (Eje Y) */
    text-align: center;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
    padding: 8px;
}

.icon-menu,
.icon-menu-more {
    width: 70px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
    display: block;
}
.icon-svg{
    width: 97px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content:center;
    margin: auto;
}

/* TEXTO MENU BAJO ICONOS */
.icon-item p {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    transition: 0.3s;
}
/*  EFECTO LINEA INFERIOR */
.icon-item .underline {
    display: block;
    width: 0%;
    height: 3px;
    background: #EF6E0B;
    border-radius: 5px;
    margin: 5px auto 0;
    transition: 0.3s;
}

/* HOVER */
.icon-item:hover img {
    transform: scale(1.15);
    fill: hsl(26, 90%, 49%);
}

.icon-item:hover p {
    color: #EF6E0B;
}

.icon-item:hover .underline {
    width: 40%;
}

/* EFECTO SELECCIONADO */
.icon-item.active svg {
    fill: #EF6E0B;
    transform: scale(1.2);
}

.icon-item.active p {
    color: #EF6E0B;
}

.icon-item.active .underline {
    width: 40%;
}

.icon-marcas{
    display: flex;
    gap: 20px;
    flex-wrap: wrap !important;
    flex-shrink: 0;
    width: 100%;
}
.icon-marca1{
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-carmarc{
    width: 60px;
    height: auto;
    transition: transform 0.25s ease cubic-bezier(.25,.46,.45,.94); 
}
.icon-carmarc:hover{
    transform: scale(1.15);
    filter: drop-shadow(0 20px 6px rgba(0,0,0,0.2));
}

@media (max-width:767px){
   
    .btn-catalogo{
        display: flex;
        align-items: center;
    }
}

/*page vende tu auto - cotizacion*/ 
/* Contenedor Principal */
        .card-cotizador {
            background:#ffffff;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            max-width: 1000px;
            margin: 50px auto;     
            margin-top: -37vw;
            position: relative;
        }

        .card-cotizador h2 { 
            margin: 0 0 10px 0; 
            font-size: 40px; 
            color: #303030; }
        .card-cotizador p { 
            margin: 0 0 30px 0;
            color: #3E4A5B; }

        .form-grid {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: flex-start;
        }
        .input-group {
            position: relative;
            flex: 1;
            min-width: 200px;
            height: 56px;
            background: rgb(248, 248, 248);
            border: 1px solid #cbd5e0;
            border-radius: 12px;
            transition: all 0.2s;
        }

        .input-group.active { 
            border: 2px solid #FBD333; }

        .floating-label {
            position: absolute;
            top: -10px;
            left: 12px;
            background: white;
            padding: 0 6px;
            font-size: 12px;
            font-weight: 600;
            color: #303030;
            z-index: 10;
        }

        .trigger, .text-input {
            width: 100%;
            height: 100%;
            padding: 0 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            box-sizing: border-box;
            font-size: 16px;
            color: #303030;
            border: none;
            background: transparent;
            outline: none;
        }

        .chevron::after {
            content: '';
            width: 8px;
            height: 8px;
            border-right: 2px solid #b7b8b5;
            border-bottom: 2px solid #b7b8b5;
            transform: rotate(45deg);
            transition: 0.3s;
        }
        .active .chevron::after { 
            transform: rotate(-135deg); 
            border-color: #FBD333;
        }

        /* Listas Desplegables (Siempre abajo) */
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            right: 0;
            background: #EACF4E;
            border: 1px solid #d6c57f;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            margin: 0;
            padding: 8px 0;
            list-style: none;
            max-height: 250px;
            overflow-y: auto;
            display: none;
            color: #777777;
            z-index: 1000;
        }
        .dropdown-menu.show { display: block; }

        .dropdown-menu li {
            padding: 12px 16px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: 0.2s;
        }
        .dropdown-menu li:hover { 
            background: #e3e8f5; 
            color: #000000; }
        .dropdown-menu li img { 
            width: 35px; 
            height: 35px; 
            margin-right: 12px; 
            object-fit: contain; }    
        /* Botón base (desactivado) */
        .btn-cotizar {
            background-color: #e2e8f0;
            color: #a0aec0;
            border: none;
            height: 56px;
            padding: 0 30px;
            border-radius: 12px;
            font-weight: bold;
            font-size: 16px;
            cursor: not-allowed;
            transition: all 0.4s ease;
            width: 200px;
        }
        /* Botón "Activado" (Cuando todo está lleno) */
        .btn-ready {
            background-color: #FBD333 !important; /* Azul Kavak */
            color: rgb(0, 0, 0) !important;
            cursor: pointer !important;
            box-shadow: 0 4px 14px rgba(54, 98, 241, 0.4);
        }
        .btn-ready:hover {
            transform: translateY(-2px);
        }
        /*======================
        =========================*/
       
/**/

/* Responsivo */
@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    #group-estado, .btn-cotizar { grid-column: span 1; }
}


/*=============================================*/

        /* Listas Desplegables (Siempre abajo) 
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #d6c57f;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            margin: 0;
            padding: 8px 0;
            list-style: none;
            max-height: 250px;
            overflow-y: auto;
            display: none;
            color: #777777;
            z-index: 1000;
        }
        .dropdown-menu.show { display: block; }

        .dropdown-menu li {
            padding: 12px 16px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: 0.2s;
        }
        .dropdown-menu li:hover { background: #e3e8f5; color: #000000; }
        .dropdown-menu li img { width: 35px; height: 35px; margin-right: 12px; object-fit: contain; }    
        
      /*  Botón "desactivado" (Gris) */
    .btn-cotizar {
        background-color: #e2e8f0;
        color: #a0aec0;
        border: none;
        height: 56px;
        padding: 0 30px;
        border-radius: 12px;
        font-weight: bold;
        font-size: 16px;
        cursor: not-allowed; 
        transition: all 0.4s ease;
        width: 200px;
    }
   

    /* Botón "Activado" (Cuando todo está lleno)*/
    .btn-ready {
        background-color: #FBD333 !important; /* Azul Kavak */
        color: rgb(0, 0, 0) !important;
        cursor: pointer !important;
        box-shadow: 0 4px 14px rgba(54, 98, 241, 0.4);
    }
    .btn-ready:hover {
        transform: translateY(-2px);
    }

    .btn-loadercotizar {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,0.4);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    }
    
    @keyframes spin {
    to {
        transform: rotate(360deg);
    }
    }

    /* Estado cargando del botón */
    .btn-cotizar.loading {
    cursor: not-allowed;
    opacity: 0.8;
    }

/**/

/*-----------------------------------*/
:root {
    --rojo-carroqhatu: #B70021;
    --amarillo-carroqhatu: #FBD333;
    --gris-texto: #4a5568;
    --bg-suave: #f8fafc;
}

.contenedor-pasos {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.titulo-principal {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a202c;
}

.titulo-principal span { 
    color: var(--rojo-carroqhatu); 
    background: var(--amarillo-carroqhatu);
    border-radius: 7px;
}

.grid-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-venta {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* EFECTO DE DELINEADO AL PASAR EL MOUSE */
.card-venta::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    z-index: -1;
}

.card-venta:hover::after {
    border-color: var(--amarillo-carroqhatu);
    transform: scale(1.02);
}

.card-venta:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Iconos */
.icono-wrapper {
    width: 95px;
    height: 95px;
    margin-bottom: 20px;
}

.icono-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-venta h3 {
    font-size: 19px;
    margin-bottom: 15px;
    color: #2d3748;
}
.card-venta p {
    font-size: 12px;
    color: var(--gris-texto);
    line-height: 1.6;
    padding: 5px;
    padding-left: 1vw;
}


/* Estilo para la Card Destacada (Inspección) */
.card-venta.destacada {
    background-color: #f0f4ff; /* Un tono azul muy suave */
    border-color: var(--azul-kavak);
}

.tag-recomendado {
    position: absolute;
    top: -12px;
    background: var(--amarillo-qhatu);
    color: #000;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .grid-cards { flex-direction: column; align-items: center; }
    .card-venta { max-width: 90%; }
    .card-principalservice { max-width: 90%; }
}
/*--------------------*/
.garantia {
    background: #f0f4ff;
    padding: 60px 20px;
    margin-bottom: 2vw;
}

.garantia h2 {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
}

.garantia-box {
    background: #ebebeb;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    overflow: hidden;
}
.garantia-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    z-index: -1;
}

.garantia-box:hover::after {
    border-color: #FBD333;
    transform: scale(1.02);
}

.garantia-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.garantia-item {
    padding: 30px 25px;
    text-align: center;
    border-right: 1px solid #eacfcf;
}

.garantia-item:last-child {
    border-right: none;
}

.garantia-item p {
    color: #2b2b2b;
    font-size: 17px;
    line-height: 1.5;
}

.garantia-item strong {
    display: block;
    margin-bottom: 8px;
}

.icon {
    background: #B70021;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 18px;
}

/*-----------------------------------*/
/* 1. Hacemos que todas las cards tengan la misma altura y sean flex */
.card-principalservice {
    display: flex;
    flex-direction: column;
    height: 100%; 
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    z-index: 1;
    justify-content: flex-start;
}
.card-principalservice .btn-anuncio {
    margin-top: auto; 
    display: inline-block; 
    align-self: center;  
}
.card-principalservice::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    z-index: -1;
}

.card-principalservice:hover::after {
    border-color: var(--amarillo-carroqhatu);
    transform: scale(1.02);
}

.card-principalservice:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.card-principalservice h3 {
    font-size: 19px;
    margin-bottom: 15px;
    color: #2d3748;
}

.card-principalservice li {
    font-size: 12px;
    color: var(--gris-texto);
    line-height: 1.6;
    padding: 3px;
    padding-left: 1vw;
}
.texto-cardbusqueda{
    padding-bottom: 0px;
}
.card-principalservice p {
    font-size: 12px;
    color: var(--gris-texto);
    line-height: 1.6;
    padding: 5px;
    padding-left: 1vw;
}

.card-principalservice.destacada {
    background-color: #f0f4ff; /* Un tono azul muy suave */
    border-color: var(--azul-kavak);
}

/* 2. Seleccionamos el último elemento antes del botón (en tu caso, el <ul>) 
   y le decimos que crezca para ocupar todo el espacio sobrante */
.card-principalservice ul {
    flex-grow: 1; 
}
.btn-anuncio {
    margin-top: auto; 
    text-align: center;
    width: 100%;
    background-color: #EACF4E;
    color:#000;
    border-radius: 6px;
}
/*-----------------------------------*/
.titulo-principal2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a202c;
    text-align: center;
}

.titulo-principal2 span { 
    color: var(--rojo-carroqhatu); 
    background: var(--amarillo-carroqhatu);
    border-radius: 7px;
}
.clientesventa h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.clientesventa-grid {
    max-width: 1000px;
    margin: auto;
    display: flex;
}
.clientesventa-card{
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    flex: 1;
    margin: 0 7px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.clientesventa-card p{
    color:#1B2532;
}

.perfil h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.perfil span {
    font-size: 13px;
    color: #666;
}

.rating {
    color: #f5b301;
    font-size: 15px;
    margin-bottom: 15px;
}

.rating strong {
    color: #000;
    font-size: 14px;
    margin-left: 8px;
}
/*----------------------------------------*/
/*fin page vende tu auto - cotizacion*/



/* ====================== */
/*   SECCIÓN BENEFICIOS   */
/* ====================== */

.beneficios-section {
    padding-bottom: 2vw;
}

.beneficios-title {
    font-size: 3.5vw;
    margin-bottom: 40px;
    text-align: center;
}

/* GRID PRINCIPAL */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

/* CADA CARD */
.beneficio-card {
    display: flex;
    flex-direction: column;
    background: #eee;
    padding: 35px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(2, 2, 2, 0.07);
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.beneficio-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ICONOS */
.beneficio-icon {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    margin-bottom: 20px;
}

/* TÍTULO DE TARJETA */
.beneficio-card h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
}

/* TEXTO */
.beneficio-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}


/* ====================== */
/*      TABLET (MD)       */
/* ====================== */
@media (max-width: 992px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 80%;
        height: auto;
        margin: auto;
        padding-bottom: 10%;
    }

    .beneficio-icon {
        width: 60px;
    }

    .beneficio-card h3 {
        font-size: 22px;
    }

}


/* ====================== */
/*       MOBILE (SM)      */
/* ====================== */
@media (max-width: 600px) {

    
}


/*TITULO CATÁLOGO*/
.title-mv {
    font-size: 39px;
    margin-bottom: 25px;
    color:#1b1b1b;
    font-family: "Poppins", sans-serif;
}
.subtitle-principal{
    font-size: 20px;
    margin-bottom: 25px;
    color:#1b1b1b;
    font-family: "Poppins", sans-serif;
}
.subtitle-mv {
    font-size: 25px;
    margin-bottom: 25px;
    padding-left: 4vw;
}
.titulo-linea {
    display: flex;
    align-items: center;
    gap: 15px;
}

.titulo-linea span {
    flex: 1;
    height: 2px;
    background: #FBD333;
}

.linea {
    display: flex;
    align-items: center;
    margin: 5vw;
}

.linea span {
    flex: 1;
    height: 2px;
    background: #FBD333;
}
.title-exploracatalog{
    color:#1b1b1b;
    padding: 1vw;
}

.linesubtitle p{ 
    display: flex;
    background-color: #efdc8e;
    height: 2px;;
    
}
/* CONTENEDOR CATÁLOGO */

.scroll2{
    padding-top: 2vw;
}

.SCROLLMOBILE{
    display: none;
}


/* WRAPPER */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* FLECHAS */
.mv-arrow {
    background: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 22px;
    color: #333;
    transition: 0.2s ease;
    z-index: 20;
}
.mv2-arrow{
    display: none;
}

.mv-arrow:hover {
    background: #FBD333;
    color: #000;
}
.mv2-arrow {
    background: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 22px;
    color: #333;
    transition: 0.2s ease;
    z-index: 20;
}

.mv2-arrow:hover {
    background: #FBD333;
    color: #000;
}

/* CARRUSEL */
.mv-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px;
    overflow-x: auto;
    scroll-behavior: auto; /* IMPORTANTE */
}

.mv-carousel::-webkit-scrollbar {
    display: none;
}

/*3 CARDS INICIALES*/
.cta-grid {
    display: flex;
    justify-content: center;
    width: 93vw;
    gap: 50px;
    padding-top: 5vw;
    margin: auto;
    
}

/* CARD BASE */
.cta-img-card {
    position: relative;
    width: 100%;
    height: auto; 
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.cta-img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

/* IMAGEN */
.cta-img-card img {
    width: 100%;
    height: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    
}

@media (max-width: 600px) {
   

    .cta-content {
        text-align: center;
        align-items: center;
    }
}

/*FIN 3 CARD INICIALES*/

.mv-card:hover .mv-img{
    transform: scale(1.04);

}
.object-car{
    object-position: 50% 40%;
}
.mv-month {
    color: #666;
    font-size: 12px;
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: auto; 
    padding: 0px 12px 12px;

    /*padding: 0 12px 8px;       
    color: #3b3b3b;
    font-size: 12px;         
    margin-top: 2px;*/
}
.mv-month i {
    color: #999;
    margin-right: 4px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .mv-card {
        min-width: 220px;
    }

    .mv-img {
        height: 130px;
    }
}
.imgcarros{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* BARRA DE BÚSQUEDA MENU FLOTANTE */
.search-bar {
    margin-top: 5px;
    background: #efefef;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;    
    width: 100%;
    display: flex;
}

.search-bar i {
    font-size: 18px;
    color: #888;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
}


.search-buttons {
    margin: 0 auto;
    padding-left: 1vw;
}
.search-buttons .btn-search {
    display: inline-block;
    background: #4FA7DA;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.btn-search:hover {
    background: #EF6E0B;
    color: #fff;
    outline: none;
}
.btn-catalogo {
    background: #FFA800;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
}

.btn-catalogo:hover {
    background: #d35400;
    color: #fff;
    transition: 0.3s ease;
}
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}
/*  CODIGO RESPONSIVE 
  PARA TODAS LAS PAGINAS */

@media (max-width: 768px) {
    /* Desactiva todas las animaciones y transiciones de CSS */
    *, *::before, *::after {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    .item:hover {
        transform: none !important;
    }
    .iconhome{
        display: none;
    }
    .navbar_txtInicio{
        display: block;
    }

    /*page index.html mobile*/
    .menuban_content{
        background: transparent;   
        padding: 0;                
        box-shadow: none;         
        border-radius: 0;
        max-width: 100%;
    }
    .icon-grid {
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;   
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 0 12px;
    }
    .icon-grid::-webkit-scrollbar {
        display: none;           /* Chrome/Opera */
    }

    .icon-item {
        min-width: 90px;        
        text-align: center;

        background: #fff;
        border-radius: 14px;
        padding: 16px 10px;
        text-align: center;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        border: none;
        transition: transform .2s ease, box-shadow .2s ease;
        min-height: 50px; /* iguala altura de cards */
    }
    .icon-item p {
        font-size: 30px;
        font-weight: 600;
        min-height: 50px; /* iguala altura de cards */
    }

    .icon-item .underline {
        display: none;
    }    

    .icon-svg {
        width: 70px !important;
        height: 70px !important;
    }
    .icon-menu,
    .icon-menu-more {
        width: 55px !important;
        height: 55px !important;
    }
    .heading-content p{
        margin: auto !important;
        font-size: 28px !important;
        margin-left: 0 !important;
    }
    .circle-service img {
        max-width: 169px;
        margin-bottom: -6px;
        margin: auto;
    }

    .subtitle-principal {
        font-size: 1.4rem;
        text-align: center;
    }
    .img-respaldo {
        max-width: 135px;
    }

    .title-respaldo {
        font-size: 1.6rem;
    }
    .servicios-container {
        flex-direction: column;
    }

    .servicios-visual {
        display:none;
    }

    .servicios-info {
        order: 1;
    }
    
    .card-detalleservicios {
        padding: 24px;
        border: 1px solid #ddd;
    }
    .card-pequeñas:nth-child(2) {
    background: #ffffff;
    border: 2px solid #ddd;
    }

    .icono-detalleservicios {
        text-align: center;
        font-size: 14px;
        padding: 3px;
        border: 0.5px solid #000;
        background-color: #ebebeb;
        border-radius: 5px;
    }
    .icono-detalleservicios span{
        font-size: 10px;
        font-weight: 600;
    }

    .cards-secundarias-detalservice {
        grid-template-columns: 1fr;
    }
    .card-pequeñas{
        padding: 24px;
        border: 1px solid #ddd;
    }
    .iconos-card-pequeñas{
        border: 0.5px solid #000;
        background-color: #ebebeb;
        border-radius: 5px;
        padding: 3px;
    }

    .vista-service-mobil-img{
        display: block;
        margin: auto;
        max-width: 500px;
        margin-bottom: 15px;
    }

    .content-iconos-detalleservicios {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Barra de búsqueda oculta*/
    .search-bar {
        display: none !important;
    }
    .icon-marcas {
        display: flex;
        margin: auto;
        overflow-x: auto;
        padding: 20px;
        gap: 25px;
        scrollbar-width: none;
        align-items: center;
    }
    .icon-marcas::-webkit-scrollbar {
        display: none;
    }
    .icon-carmarc {
        width: 50px;
        height: auto;
    }
    .icon-item.active {
    box-shadow: 0 0 0 2px #ff9f00, 0 6px 18px rgba(0,0,0,0.12);
    }

    .icon-item .underline {
        display: none;
    }

    .btn-catalogocontent{
       margin: auto;
    }

    .btn-catalogo {
        margin:auto;
        display: grid;
        width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 12px ;
        font-size: 15px;
    }
    .floating-section {
        margin-top: -25vw;  /* se ajusta solito */
    }

    .cta-grid{
        display: grid;
        width: 70%;
        margin: auto;
        gap: 8px;
        padding-top: 5vw;
    }
    .beneficios-title {
        font-size: 20px;
        margin-bottom: 25px;
        padding: 0 15px;
        color: #1a1a1a;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 80%;
        height: auto;
        margin: auto;
        padding-bottom: 10%;
    }

    .beneficio-card {
        padding: 25px 20px;
        gap: 8%;
        text-align: center;
    }
    .beneficio-card:hover{
        transform: none;
        box-shadow: none;        
    }
    .beneficio-card:active{
        transform: scale(0.97);
    }

    .beneficio-icon {
        width: 55px;
    }

    .beneficio-card h3 {
        font-size: 20px;
    }

    .beneficio-card p {
        font-size: 14px;
    }

    .qr-content {
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;
        text-align: center !important;
        padding: 2px !important;
    }

    .qr-box {
        order: -1;   
        margin-top: 20px;           /* Mueve el QR al principio (arriba) */
        margin-bottom: 20px;
        background: none;    
        padding: 2px !important;   
    }

    .qr-box img {
        width: 170px !important; 
        height: auto !important;
        border-radius: 0 !important; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Resalta el QR */
    }
    .qr-label {
        margin-top: 8px;
        font-weight: bold;
    }
    .qr-text {        
        font-size: 29px !important;   
        padding-left: 5px !important;   
        padding-right: 5px !important;
        margin-bottom: 15px;
    }
    .qr-text h2 {        
        font-size: 29px !important;   
        padding: 0px;
        margin: 0px;     
        margin-bottom: 15px;
    }
    .qr-text p {        
        font-size: 15px !important;   
    }
    .qr-image {
        display: none;
    }
    .title-exploracatalog{
        display: none;
    }
    .scrollgalery{
        display:none;
    }

    .SCROLLMOBILE{
        display: flex;
    }
    .mv2-arrow{
        display: flex;
    }
    /*fin page index.html mobile*/

    /*inicio page about.html (compra un auto)*/
    .grid-layout {
        grid-template-columns: 1fr !important; 
        grid-auto-rows: auto;
        gap: 15px;
    }
    .hero-text, 
    .cta-box {
        grid-column: span 1 !important; 
        padding: 30px 20px;
    }

    .cta-box {
        flex-direction: column; 
        text-align: center;
    }

    .form-side {
        width: 100%;
        order: 1; 
    }

    .image-side {
        width: 100%;
        margin-top: 20px;
        order: 2; 
    }

    .image-side img {
        max-width: 80%;
        height: auto;
    }
    .iconinspeccion,
    .iconlegal,
    .icontasacion {
        width: 80px !important; 
        margin-bottom: 15px;
    }

    .social-proof h2 {
        font-size: 2.5rem;
    }

    .input-infocotiza {
        margin-bottom: 15px;
        text-align: left; 
    }

    .input-infocotiza input {
        width: 100%;
        padding: 12px;
        box-sizing: border-box; 
        border-radius: 8px;
        border: 1px solid #ccc;
    }
    .formquestion{
        font-size: 25px !important;
    }
    .form-p{
        font-size: 16px !important;
    }

    .preguntacompra{
        font-size: 19px;
        max-block-size: 90%;
        color: #1a1a1a;
    }
    .cta-compragrid{
        display: grid;
        grid-template-columns: 1fr !important; 
        min-width: 40px;
        min-height: 60px;
    }
    .cta-img-cardcompra{
        width: 60%;
        margin: auto;
    }
    .cta-img-cardcompra:hover{
        transform: none;
        margin: auto;
    }
    .imgcarrosabout{
        margin: auto;
        min-width: 320px;
        min-height: auto;        
    }
    .questionsection{
        font-size: 7vw;
    }
    .textsection{
        font-size: 4vw;
        padding: 3vw;
        margin: auto;
        width: 99%;
        color: #0c0c0c;
        text-align: center;
    }
    .section-buttongrid{
        display: grid;
        grid-template-columns: 1fr !important;
        
        justify-items: center;
        align-items: center;
    }
    .btn-catalogo, .btn-secondary{
        margin: 2vw;
    }
    /*final page about.html (compra un auto)*/

    /*inicio page service.html (vende tu auto)*/
    .titulo-principal{
        font-size: 32px;
        margin-bottom: 40px;
        color: #1a1a1a;
    }
    .clientesventa-grid{
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .contenedor-pasos{
        margin: auto !important;
    }
    /*fin page servicio (vende tu auto)*/
    /*inicio page team (conócenos)*/
    .about-grid{
        display: grid;
        justify-items: center;
        grid-template-columns: 1fr!important;
    }
    .brand-highlight{
        font-size: 20px!important;
    }
    .text-container{
        margin: auto;
    }
    .txt-content {
        font-size: 15px!important;
        
    }
    .img-container img:hover {
        transform: none;
    }

    .mv-row, .mv-row.reverse {
        display: grid !important;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0 !important; 
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .mv-title {
        display: block; 
        order: 1;
        padding-top: 15px;
        font-size: 30px !important;
        padding-bottom: 0 !important;
        justify-content: center;
    }

    .mv-image-container {
        order: 2;
        width: 100% !important;
        display: flex;
        justify-content: center;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0;
    }

    .mv-image-container img {
        max-width: 280px; 
        height: auto;
        margin-top: -35px !important; 
        margin-bottom: -50px !important;
        display: inline-block;
    }

    .mv-textmision p, .mv-textvision p {
        order: 3;
        width: 100% !important;
        padding: 0 15px;
        line-height: 1.5;
    }
    .mv-textmision, .mv-textvision {
        display: contents; 
    }
    /*fin page team conocenos*/

    /*Inico Page Testimonios*/
    .lineamobile{
        display: flex;
        align-items: center;
        margin: 5vw;
    }
    .lineamobile span{
        flex: 1;
        height: 2px;
        background: #FBD333;
    }
    .title-printestimonios{
        font-size: 35px;
        text-align: center;
        margin: auto;                
    }
    .testimoniosdirec {
        display: block !important;
        overflow-x: auto !important; 
        overflow-y: hidden;
        white-space: nowrap; 
        scroll-snap-type: x mandatory; 
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px !important;
    }
    .grupo-testi {
        display: flex !important;
        animation: none !important; 
        width: max-content !important;
    }
    .testimonios-card {
        width: 40vw;
        min-width: 280px !important;
        max-width: 320px;
        margin-right: 15px !important;
        white-space: normal; 
        scroll-snap-align: center; 
        flex-shrink: 0; 
    }
    
    .testimonioscard-nomobil{
        display: none;
    }

    .testimoniosdirec::-webkit-scrollbar {
        display: none;
    }

    .user img {
        width: 45px !important;
        height: 45px !important;
    }
    .user-info strong {
        font-size: 0.9rem !important;
    }

    .user-info span {
        font-size: 0.75rem !important;
    }

    .testimonios-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-top: 10px !important;
        color: #333 !important; 

    }
    .testi-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
        padding-bottom: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
        background-color: #ccc; /* Color gris para puntos inactivos */
        border-radius: 50%;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .dot.active {
        background-color: #FBD333; /* El amarillo de tu marca para el punto activo */
        transform: scale(1.3); /* Un poco más grande para resaltar */
    }
    
    /*FIN PAGE TESTIMONIOS*/

    /*INICIO PAGE BLOG*/
    .blog-card {
        margin-left: auto !important;
        display: block;
        max-width: 90% !important; 
        width: 340px; 
    }
    .blog-section .row {
        justify-content: center; 
    }

    .blog-category {
        left: 10px !important; 
    }
    /*FIN PAGE BLOG*/

    /*PAGE CONTACTOS*/
    .title-contact{
        font-size: 10vw;
        color: #1B2532;
        text-align: center;
    }
    .text-muted{
        text-align: center;
    }
    .contact-info{
        margin-left: auto;
        display: block;
        max-width: 90% !important;
    }
    .form-pagecontacto{
        margin-top: 15px!important;
        margin-left: auto;
        max-width: 90%;
        padding: 20px !important;
        border-radius: 3%;
    }
    .form-labelcontact{
        display: block;
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left;
        margin-bottom: 5px;
    }
    .form-control, .form-select {
        width: 100% !important;
        box-sizing: border-box; 
    }
    .datos p {
        font-size: 0.8rem;
        text-align: center;
        margin-top: 10px;
    }
    /*FIN PAGE CONTACTOS*/

    /*PAGE CATALOGOS CAR*/
    .card-catalogoheader{
        position: absolute !important;
        left: 8px;
        right: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 60px !important;
    }
    /*FIN PAGE CAR CATALOGO*/
}
/*LAPTOPS*/
@media screen and (min-width: 1024px) and (max-width: 1440px) {
.menuban_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 90%; /* Ajuste para que no toque los bordes en laptop */
    max-width: 1100px;
    margin: -100px auto 0; /* Centrado horizontal */
}

.icon-grid {
    display: flex;
    justify-content: space-between; /* Distribución igual a la imagen */
    width: 100%;
    margin-bottom: 40px; /* Espacio entre filas */
    gap: 10px;
}
.icon-item {
    flex: 1; /* Todos ocupan el mismo espacio */
    text-align: center;
}

.icon-item p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    color: #444;
}

.icon-marcas {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; 
    width: 100%;
    gap: 0 !important;
}
.icon-marcas .marcas-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap; /* Evita que las marcas se bajen */
}
.icon-carmarc {
    height: 60px; 
    width: auto;
}
.btn-catalogo {
    background-color: #ffaa00;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap; /* Evita que el texto del botón se rompa */
}


.qr-section {
    margin:auto !important;
    width: 95%;
    max-width: 1200px; /* Evita que se estire demasiado en monitores grandes */
}

.qr-content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* Ajuste de fondo para que cubra todo sin deformarse */
    background: url(../img/bannerqr.svg) center / cover no-repeat !important; 
    border-radius: 25px;
    padding: 20px 50px; /* Más espacio interno */
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    min-height: 280px;
    z-index: 1;
}

/* El pseudo-elemento para oscurecer el fondo si es necesario */
.qr-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* Un poco más sutil */
    z-index: -1; 
}

/* 1. Columna del Logo WhatsApp */
.qr-image {
    flex: 0 0 auto; /* No permite que el logo se estire */
}

.qr-image img {
    width: 140px; /* Tamaño controlado para laptop */
    height: auto;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.3));
}

/* 2. Columna de Texto Central */
.qr-text {
    flex: 1;
    padding: 0 25px;
    text-align: left;
    color: white;
}

.qr-text h2 {
    font-size: 2.2rem; /* Tamaño de título impactante */
    margin-bottom: 10px;
    font-weight: 700;
}

.qr-text p {
    font-size: 1.8rem;
    line-height: 1.4;
    max-width: 500px; /* Evita líneas de texto demasiado largas */
}

/* 3. Columna del Código QR */
.qr-box {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.1); /* Ligero fondo para resaltar el área */
    padding: 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.qr-box img {
    width: 160px; /* Tamaño del QR según tu imagen */
    height: 160px;
    border-radius: 15px;
    background: white; /* Asegura que el QR siempre sea legible */
    padding: 10px;
}

.qr-label {
    margin-top: 10px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}
/*VIDEOS PARA LAPTOP*/
/* Contenedor principal: Usamos Grid para control total de columnas */
.videos-container {
    display: grid;
    /* Forzamos 5 columnas en PC y Laptop */
    grid-template-columns: repeat(5, 1fr); 
    gap: 15px; /* Espaciado más elegante entre tarjetas */
    padding: 20px 4vw;
    justify-content: center;
}

/* Ajuste de las tarjetas */
.video-card {
    position: relative;
    width: 100%; /* Que ocupe el ancho de su columna de grid */
    aspect-ratio: 9 / 16; /* Mantiene la proporción vertical de celular automáticamente */
    height: auto; /* Dejamos que el aspect-ratio mande */
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Efecto hover opcional para que se vea más profesional */
.video-card:hover {
    transform: translateY(-5px);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.videos-container {
    gap: 10px;
    padding: 20px 2vw;
}
    
.play-btn {
    font-size: 45px; /
}

.grid-layout {
    grid-template-columns: repeat(2, 1fr); /* Pasamos a 2 columnas si es muy angosta */
}

.cta-box {
    grid-column: span 2;
    flex-direction: column; /* En laptop pequeña, imagen abajo del form */
}

.image-side img {
    max-width: 80%;
    margin: 0 auto;
}
.compra-mosaico {
    background-color: #f8f9fa;
    padding: 60px 2vw;
}

/* Layout de Rejilla */
.grid-layout {
    display: grid;
    /* Definimos 3 columnas fijas para Desktop/Laptop */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo común para todos los items */
.item {
    background: #212529; /* Fondo oscuro como en tu imagen */
    border-radius: 20px;
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Text (La caja principal de bienvenida) */
.hero-text {
    grid-column: span 1;
    background: white;
    color: #212529;
}

.hero-text h1 { font-size: 2rem; font-weight: 800; }
.highlight { color: #ffaa00; }

/* Features (Inspección, Legal, Tasación) */
.card-feature {
    background: #2d343a;
    text-align: left;
}

.card-feature img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* Social Proof (+500K) */
.social-proof {
    text-align: center;
}

.social-proof h2 {
    font-size: 3rem;
    color: #ffaa00;
    margin: 0;
}

/* CAJA ROJA DE COTIZACIÓN (CTA BOX) */
.cta-box {
    grid-column: span 2; /* Ocupa 2 columnas para que sea ancha */
    background: #b30000;
    flex-direction: row; /* Imagen a un lado, texto al otro */
    padding: 0;
    overflow: hidden;
    align-items: stretch;
}

.form-side {
    padding: 40px;
    flex: 1;
}

.image-side {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.image-side img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ajustes de Input para que no se rompan en laptop */
.input-infocotiza {
    margin-bottom: 15px;
}

.input-infocotiza input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    margin-top: 5px;
}
.tm-section-container {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

/* Rejilla de testimonios optimizada para Laptop */
.tm-grid {
    display: grid;
    /* En laptops estándar, forzamos 2 columnas para que las tarjetas respiren */
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    max-width: 1100px; /* Un poco más estrecho para centrar la vista */
    margin: 0 auto;
}

/* Tarjeta de testimonio */
.tm-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Asegura que todas midan lo mismo */
}

.tm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Miniatura del Video */
.tm-video-thumb {
    position: relative;
    width: 100%;
    /* Mantenemos el formato horizontal para testimonios de este tipo */
    aspect-ratio: 16 / 9; 
    background-color: #000;
}

.tm-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cuerpo del testimonio */
.tm-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tm-comment {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.tm-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0056b3; /* Color corporativo para ubicación */
    font-weight: 600;
    font-size: 0.9rem;
}
.tm-grid {
    grid-template-columns: repeat(4, 1fr); 
}
.icon-item img, 
.icon-item .icon-svg { 
    width: 60px; /* Tamaño fijo para que todos se vean iguales */
    height: 60px;
    margin-bottom: 12px; /* Espacio entre el icono y el texto */
    display: block;
    margin-left: auto !important; /* Refuerzo de centrado */
    margin-right: auto !important;
}
/*=====================
FIN VISTA LAPTOPS
=======================*/
}
.btn-search {
    background: white;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 600;
    color: #005aff;
    text-decoration: none;
    border: 1px solid #d0d0d0;
    transition: 0.2s;
}
.btn-search:hover {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}
.page-header {
    height: 400px;
    margin-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/bg-banner.jpg);
    background-attachment: fixed;
}

@media (max-width: 991.98px) {
    .page-header {
        height: 300px;
    }
}

.qr-section {
    margin: auto;
}
.qr-content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: url('../img/bannerqr.svg') center/cover no-repeat;
    background-size: auto;     /* Ajusta la imagen */
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 10px 30px;
    box-shadow: 0px 12px 30px rgba(166, 166, 166, 0.1);
    overflow: hidden;
    min-height: 260px;
}
.qr-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    inset: 0;
    background: rgba(23, 23, 23, 0.6);
    z-index: 0;
}
.qr-content > * {
    position: relative;
    z-index: 1;
}
.qr-image img {
    width: 200px;
}

.qr-text {
    flex: 1;
    padding: 0 40px;
}

.qr-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.qr-text p {
    font-size: 18px;
    color: #ffffff;
    max-width: 420px;
}
.qr-box {
    text-align: center;
}
.qr-box img {
    width: 20vw;
    height: auto;
    border-radius: 50px;
    transition: transform .3s ease;
}

.qr-box img:hover {
    transform: scale(1.05);
}

.qr-label {
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
}

/*COMPRA O VENTA*/
.titletxt{
    font-size: 3vw;
    text-transform: uppercase;
}
.subcompra{
    display: flex;
    justify-content: center;
    padding-left: 2vw;
}
.card-left1, .card-left2, .card-left3{
    display: flex;
    flex-direction: column;
    background-color: #dedede;
    border-radius: 2px;
    margin: 5px;
    width:8vw;
    justify-content: center;

}
/*INICIO COMPRA/VENTA*/
:root {
    --brand: #FBD333;
}

/* TABS */
.how-tabs {
    display: inline-flex;
    background: #fff7d6;
    border-radius: 12px;
    padding: 4px;
}

.tab {
    border: none;
    background: transparent;
    padding: 8px 20px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.tab.active {
    background: var(--brand);
    color: #000;
}

/* TEXTO */
.how-left h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 20px 0;
}

/* PASOS */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.35s ease;
}

/* ANIMACIÓN DE SALIDA */
.step-card.hide {
    opacity: 0;
    transform: translateY(10px);
}

/* NÚMERO */
.how-it-works{
    padding-top: 10vw;
}
.step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
}

/*INICIO TIKTOK*/ 

/* CARD */
.tiktok-card {
  position: relative;
  width: 260px;
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.tiktok-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 60px;
  color: white;
  background: rgba(0,0,0,.35);
}

/* MODAL */
.tt-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.tt-modal.active {
  display: flex;
  animation: fadeIn .3s ease;
}

.tt-modal-content {
  position: relative;
  width: 360px;
  height: 640px;
  background: black;
  border-radius: 20px;
  overflow: hidden;
}

.tt-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CLOSE */
.tt-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 26px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

/* ANIM */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}

/*--------------------*/
.title-videos{
    padding-left: 3vw;
}
.videos-container{
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 7px;
    padding: 3vw;
}
.video-card {
  position: relative;
  min-width: 190px;
  height: 490px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 60px;
  color: white;
  background: rgba(0,0,0,.35);
}

/* MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
  animation: fadeIn .25s ease;
}

.video-modal-content {
  position: absolute;
  width: 360px;
  height: 640px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}
/*FINAL TIKTOK*/


/*COMENTARIOS 2*/
/* =========================
   CONTENEDORES
========================= */

.comentarios-izq,
.comentarios-der {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px 0;
}

.testimonios-content {
  width: 100%;
  overflow: hidden;
}

/* =========================
   FILA ANIMADA
========================= */

.testimoniosdirec {
  width: 100%;
  overflow: hidden;
}

.grupo-testi {
  display: flex;
  flex-wrap: nowrap;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

/* IZQUIERDA */
.testimoniosdirec.izq .grupo-testi {
  animation: Coment-left 25s linear infinite;
}

/* DERECHA */
.testimoniosdirec.der .grupo-testi {
  animation: Coment-right 25s linear infinite;
}

/* PAUSA REAL */
.testimoniosdirec:hover .grupo-testi {
  animation-play-state: paused;
}

/* =========================
   ANIMACIONES PERFECTAS
========================= */

@keyframes Coment-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes Coment-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* =========================
   CARDS (MAS PEQUEÑAS TIPO KAVAK)
========================= */

.testimonios-card {
  width: 260px;          /* 👈 MÁS PEQUEÑAS */
  min-width: 260px;
  padding: 14px;
  margin-right: 18px;   /* 👈 ESPACIO CONTROLADO */
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.testimonios-card:hover {
  transform: translateY(-4px);
}

.testimonios-card p {
  font-size: 14px;
  color:#2d3748;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* =========================
   USUARIO
========================= */

.user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color:#1a202c;
}

.user-info span {
  font-size: 11px;
  color: #777;
}

/*FIN COMENTARIOS*/


/*page compraunauto*/
.service-item {
    height: 320px;
    background: var(--light);
    border-radius: 25px;
    transition: .5s;
}

.service-item:hover,
.service-item.active {
    background: var(--secondary);
}

.service-item h1,
.service-item h4 {
    transition: .5s;
}

.service-item:hover h1,
.service-item.active h1 {
    color: var(--dark) !important;
}

.service-item:hover h4,
.service-item.active h4 {
    color: var(--light);
}

.rent-item {
    padding: 30px;
    text-align: center;
    background: var(--light);
    transition: .5s;
}

.rent-item:hover,
.rent-item.active {
    background: var(--secondary);
}

.rent-item h4 {
    transition: .5s;
}

.rent-item:hover h4,
.rent-item.active h4 {
    color: var(--light);
}

.team-item {
    padding: 30px 30px 0 30px;
    text-align: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover,
.owl-item.center .team-item {
    background: var(--secondary);
}

.team-item h4 {
    transition: .5s;
}

.owl-item.center .team-item h4,
.owl-item.center .rent-item h4 {
    color: var(--light);
}

.team-item .team-social {
    top: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
    background: var(--light);
}

.owl-item.center .team-item .team-social,
.owl-item.center .rent-item {
    background: var(--secondary);
}

.team-item:hover .team-social {
    opacity: 1;
    background: var(--secondary);
}

.team-carousel .owl-nav,
.related-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover,
.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.vendor-carousel .owl-dots,
.testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-carousel .owl-dot,
.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    transition: .5s;
}

.vendor-carousel .owl-dot.active,
.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 80px;
    height: 80px;
}

.testimonial-carousel .owl-item .testimonial-item {
    height: 350px;
    transition: .5s;
    background: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--secondary);
}

.testimonial-carousel .owl-item .testimonial-item h1,
.testimonial-carousel .owl-item .testimonial-item h4 {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item h1 {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h4 {
    color: var(--light);
}

.bg-banner {
    background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/bg-banner.jpg);
    background-attachment: fixed;
}

.footer-color{
    background-color: #000;
}
.text-footer{
    color: #FFA800;
}
.copyfooter{
    background-color: #000;
    padding-top: 4vw;

}

/*prueba catalogo grid*/

/* CONTENEDOR CATÁLOGO */
.mas-vendidos {
    margin-top: 5vw;
}

.mas-vendidosexplora{
    margin-top: -2vw;
}

/* GALERÍA GRID */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

/* CARD */
.mv-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
    transition: transform .25s ease, box-shadow .25s ease;

    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 315px;
}
.mv-carousel > a {
    display: block;
    width: 180px;
    flex-shrink: 0;
}
.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

/* IMAGEN */
.mv-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    flex-shrink: 0;
}

/* TÍTULO */
.mv-card h4 {
    font-size: 16px;
    padding: 10px 12px 4px;
    line-height: 1.25;
    font-weight: 600 !important;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* máximo 2 líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
    margin: 0;
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
}

/* PRECIO */
.mv-price {
    font-size: 20px;
    padding: 2px 12px 4px;
    font-weight: 800;
    color: #111;
    margin: 0;
    min-height: 28px;

    /*font-size: 20px;
    padding: 0 12px;
    font-weight: 800;    
    color: #323841;
    margin: 0;*/
}
.abrev-divisa{
    font-size: 15px;
    font-weight: 600;
    margin-left: 5px;
    color: #666;
}
.mv-divider {
    height: 1px;
    background: #eee;
    margin: 6px 12px;
}


/* RESPONSIVE */
@media (max-width: 600px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-img {
        height: 130px;
    }
}
.btn-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white !important;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 999999 !important; /* Capa superior absoluta */
    cursor: pointer !important;
    pointer-events: auto !important; /* Asegura que reciba clics */
}

/* Evita que el icono bloquee el clic */
.btn-whatsapp i {
    pointer-events: none;
}
.btn-whatsapp:hover {
    transform: scale(1.1);
}
/* Efecto de pulso para llamar la atención */
.btn-whatsapp::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.5;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/*DETAIL PAGE*/
/*linea separadora detail*/
.separador-detail {    
    font-size: 3.5vw;
    text-align: center;
}
.detail-linea {    
    display: flex;
    align-items: center;
    display: none;
}
.detail-linea span{
    flex: 1;
    height: 2px;
    background: #FBD333;
}

/* Estilo para que la imagen principal parezca clickeable */
.img-main {
    cursor: zoom-in;
    transition: 0.3s;
}
.img-main:hover {
    filter: brightness(0.9);
}

/* El fondo negro del visualizador */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999999; /* Por encima de todo, incluso del botón de WhatsApp */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

/* La imagen agrandada */
.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: zoomAnim 0.3s ease;
}

/* Botón de cerrar */
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes zoomAnim {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}
/* Estilo para que la imagen principal parezca clickeable */
.img-main {
    cursor: zoom-in;
    transition: 0.3s;
}
.img-main:hover { filter: brightness(0.9); }

/* El fondo negro del visualizador */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Un poco más oscuro */
    justify-content: center;
    align-items: center;
}

/* NUEVO: El contenedor que recorta la imagen */
.zoom-wrapper {
    width: 90%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* CLAVE: Esto evita que la imagen gigante se salga */
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* La imagen dentro del lightbox */
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    /* Transición suave para el zoom y el movimiento */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform-origin 0.4s ease;
}

/* Clase que activa el ZOOM */
.lightbox img.zoomed {
    cursor: zoom-out; /* El cursor cambia para indicar que puedes alejar */
    transform: scale(2.5); /* Nivel de zoom (2.5 veces más grande) */
}

.close-lightbox {
    position: absolute; top: 20px; right: 35px;
    color: white; font-size: 60px; font-weight: bold; cursor: pointer; z-index: 10;
}
/* Ajustes para los iconos y listas */
.icon-box {
  font-size: 24px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.check-list li {
  margin-bottom: 12px;
  font-weight: 500;
  color: #444;
}

/* Para el diseño inverso si lo usas */
.container.reverse {
  flex-direction: row-reverse;
}

.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  color: #1a56e8;
  text-decoration: none;
  font-weight: bold;
  margin-left: 10px;
}

/* Responsive para el diseño inverso */
@media (max-width: 768px) {
  .container.reverse {
    flex-direction: column; /* En móvil siempre el texto arriba o abajo según prefieras */
  }
}

.title-detailcatalogo{
    padding-top: 7vw;
    margin: 3vw;
    color: #0c0c0c;
}

/*CARTA ¿TE GUSTA ESTE VEHÍCULO?*/
 .cta-img-carddetail {
            position: relative;
            width: 100%;
            height: auto; 
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transition: 0.3s ease;
}
.cards-detailcontainer {
    display: flex;
    justify-content: center;
}

.cta-detailgrid {  
    display: flex;
    width: 95vw;
    gap: 15px;
    padding-top: 1vw;
}

.cta-img-carddetail {
    position: relative;
    width: 100%;
    height: auto; 
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
    background: #000; 
    cursor: pointer;
}

.cta-img-carddetail:hover {
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.25); 
    z-index: 10;
}

.cta-img-carddetail img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.cta-img-carddetail:hover img {
    transform: scale(1.0);
    filter: brightness(1.1); 
}

.cta-img-carddetail::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%; 
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg); 
    transition: 0.7s;
}

.cta-img-carddetail:hover::after {
    left: 150%; 
}

/*FORMULARIO COTIZACION*/
.quote-section {
  padding: 80px 10px;
  display: flex;
  justify-content: center;
  background: #e2e2e2;
}

.quote-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  max-width: 900px; /* Ancho del "boxed" */
  width: 100%;
  display: flex; /* Alinea hijos en fila */
  align-items: center; /* Centra verticalmente */
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-side {
  flex: 1.2; /* El formulario ocupa un poco más de espacio */
  padding-right: 30px;
}
.form-side h2 {
  font-size: 3vw;
  color:#1F1F1F;
}
.form-side p {
  font-size: 1.5vw;
  color: #3E4A5B;
}
.form-side label{
    color: #1B2532;
}

.image-side {
  flex: 1; /* La imagen ocupa el espacio restante */
  display: flex;
  justify-content: center;
}

.image-side img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.formcotizawspp{
    margin: 5vw;
}
/* Estilos de los inputs para que se vean limpios */
.input-infocotiza {
  margin-bottom: 15px;
}

.input-infocotiza label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
}

.input-infocotiza input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}
.btnReservarDetail{
    padding: 2vw;
}
.btn-reservarcardetail{
    background-color: #FBD333;
    border: none;
    border-radius: 5px;
    padding: 2vw;
    font-weight: 600;
}
.btn-reservarcardetail:hover{
    background-color: var(--rojo-carroqhatu);
    color: white;
}

.btn-wspp {
  width: 100%;
  padding: 14px;
  background-color: #4a62ee; /* Color suave como el de Kavak antes de activar */
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.btn-wspp:hover {
  background-color: #FBD333; /* Cambia a color WhatsApp al pasar el mouse */
  color: rgb(128, 1, 1);
}
@media (max-width: 768px) {
  .quote-card {
    flex-direction: column;
    text-align: center;
  }
  .form-side {
    padding-right: 0;
    order: 2;
  }
  .image-side {
    order: 1;
    margin-bottom: 20px;
  }
}
/*FIN DETAIL PAGE*/


/*COMPRA UN AUTO*/
:root {
  --primary-color: #FBD333; /* Color turquesa de CarroQhatu */
  --secondary-color: #1b262c; /* Azul oscuro/Negro */
  --text-light: #808080;
  --text-dark: #333;
}

.compra-mosaico {
  padding: 5%;
  background-color: var(--bg-gray);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}

/* Ajustes de tamaño para celdas específicas */
.hero-text {
  grid-column: span 2;
  background: #B70021;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text h1{
    color: white;
}
.hero-text p{
    color: white;
}

/* Estilo general de las tarjetas */
.item {
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.item:hover {
  transform: translateY(-5px);
}
.card-feature {
  background: var(--secondary-color);
  text-align: center;
}
.card-feature h3{
    color: #dfdfdf;
}

.social-proof {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-proof h2 {
  font-size: 3rem;
  margin: 0;
  color: var(--primary-color);
}

.cta-box {
  background: #B70021;
  display: flex;
  grid-column: span 2;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.formquestion{
    color: #FBD333 !important;
}
.form-p{
    color: white !important;
}
.question1,
.question2,
.question3{    
    color: white !important;
    text-align: start;
}

.iconinspeccion,
.iconlegal,
.icontasacion{
    width: 5vw;
    margin: auto;
}

.btn-wsppform{
    width: 100%;
    padding: 14px;
    background-color: #FBD333;
    color: black;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-wsppform:hover {
    background-color: #4a62ee;
    color: white;
}

/* Tipografía y Botones */
h1 { font-size: 2.5rem; margin-bottom: 15px; color: var(--secondary-color); }
.highlight { color: var(--primary-color); }

.btn-vercatalogo, .btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-vercatalogo { background: #FBD333; color: black; width: fit-content; }
.btn-secondary { border: 2px solid var(--primary-color); color: var(--primary-color); }

.btn-footer{ 
    border-radius:8px;
    border: none;
    margin-left: 0.5vw;
    color: white;
    background-color: #D46A07;
}
.btn-footer:hover{
    background-color: #FFA800;
    color: black;
    font-weight: bold;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .hero-text { grid-column: span 1; }
  h1 { font-size: 1.8rem; }
}
.section-buttongrid {
    border: none;

}
.carousel-icon{
    width: 14vw;
    height: auto;    
}
/* Contenedor Principal */
.about-section {
    padding: 60px 5vw;
    background-color: #f8f8f8; 
    overflow: hidden;
}

/* Título con líneas a los lados */
.title-about {
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: 800;
    font-size: 2.5rem;
    color: #141924;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.title-about::before,
.title-about::after {
    content: '';
    flex: 1;
    border-bottom: 3px solid #FBD333; /* El amarillo de tu marca */
}

.title-about::before {
    margin-right: 20px;
}

.title-about::after {
    margin-left: 20px;
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: center;
}
.txt2-content {
    color: #252525;
}

.brand-highlight {
    background-color: #FBD333;
    color: #B70021;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 25px;
}

.txt-content strong {
    color: #1a202c;
    font-weight: 700;
}

/* Contenedor de Imagen */
.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container img {
    max-width: 100%;
    height: auto;
    /* Efecto sutil de sombra para que resalte el collage */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.img-container img:hover {
    transform: scale(1.02);
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .title-about {
        font-size: 1.8rem;
    }
    
}

/* Contenedor General */
.section-mision{
    display: flex;
    flex-direction: column;
    margin: 5vw;
    padding-bottom: 0; 
    background: #0c0c0c;
    border-radius: 5vw;
}
.section-vision{
    display: flex;
    flex-direction: column;
    margin: 5vw;
    padding-top: 0%;
    background: #0c0c0c;
    border-radius: 5vw;

}
.section-vision:hover, .section-mision:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

/* Filas */
.mv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mv-row.reverse {
    flex-direction: row-reverse;
    padding: 0px;
}

/* Texto */
.mv-textmision {
    flex: 1;
    padding: 3vw;
    margin: auto;
    color: #fff;
}
.mv-textvision {
    flex: 1;
    padding: 3vw;
    color: #fff;    
}

.mv-title {
    font-family: 'Oswald', sans-serif; 
    font-style: italic;
    font-size: 2.3rem;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px; 
    color: #ffffff;
}
.mv-title i{
    color: #e25707;
}
.mv-title span{
    color: #e25707;
}
.mv-textvision p,
.mv-textmision p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #ffffff;
}



/* Contenedor del Grid */
.grid-containercards {
    display: grid;
    /* Crea columnas de al menos 280px que se ajustan solas */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* Estilo de la Tarjeta */
.info-card {
    background: #0c0c0c;
    color: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 4px solid transparent; /* Preparado para el hover */
    min-height: 200px;
}

/* Estilo de los Iconos */
.info-card i {
    font-size: 2.5rem;
    color: #FBD333; /* Tu amarillo */
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

/* Estilo del Texto */
.info-card p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* --- EFECTOS HOVER --- */
.info-card:hover {
    transform: translateY(-10px);
    background: #151515;
    border-bottom: 4px solid #FBD333; /* Resalta con el color de marca */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.info-card:hover i {
    transform: scale(1.2);
}

/* Ajuste para pantallas muy pequeñas */
@media (max-width: 480px) {
    .grid-containercards {
        grid-template-columns: 1fr;
    }
}


.historia {
  padding: 80px 10%;
  background: #f0f0f0;
}

.historia-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.historia-subtitulo {
  font-size: 30px;
  color: #000;
}

.historia-texto h2 {
  font-size: 42px;
  margin: 10px 0 30px;
  color: #000;
}

.historia-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.historia-lista li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.check {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5b400; /* amarillo CarroQhatu */
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.historia-video{
  position: relative;
  min-width: 290px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .historia-container {
    flex-direction: column;
    text-align: center;
  }

  .historia-lista li {
    justify-content: center;
    text-align: left;
  }
}


/*VIDEOS TESTIMONIOS*/
/* Contenedor Principal */
.tm-section-container {
    background-color: #f8f9fa; /* Gris muy claro de fondo */
    padding: 40px 15px;
}

.tm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta */
.tm-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Miniatura de Video */
.tm-video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.tm-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Botón Play Circular */
.tm-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    border: 2px solid rgba(255,255,255,0.5);
    transition: background 0.3s ease;
}

.tm-card:hover .tm-play-btn {
    background: #000;
    scale: 1.1;
}

/* Cuerpo de la Tarjeta */
.tm-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tm-comment {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
    flex-grow: 1;
}

/* Ubicación (Pie de tarjeta) */
.tm-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0056b3; /* Azul profesional */
    font-weight: 700;
    font-size: 0.95rem;
}

.tm-location i {
    font-size: 1rem;
}

/* --- Ajuste de tu Modal Actual (para que no falle) --- */
.video-modal2 {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.video-modal2.active {
  display: flex;
  animation: fadeIn .25s ease;
}
.video-modal2-content2 { 
    position: relative;
    width: 300px;
    height: auto;
    background: black;
    border-radius: 20px;
    overflow: hidden;
}
.video-modal-content2 video { 
    width: 200px; 
    height: 200px;
    border-radius: 8px; 
}
.close-btn { 
    position: absolute;
    top: 15px; 
    right: 15px; 
    font-size: 30px; 
    cursor: pointer;
    color: white;
    background: none;
    border: none; 
    z-index: 101;
}
/*FINVIDEOS TESTIMONIOS*/

/*STATS TESTIMONIOS*/
.stats-testimonios{
    background-color: #FBD333;
    margin: 4vw;
    border-radius: 10px;
    padding: 5vw;    
}
.stat-num {
    display: inline-block; 
    font-size: 3rem;
    color: #B70021;
    margin: 0;
    font-weight: 400;
}
.stat-symbol {
    font-size: 2.5rem; /* Un poco más pequeño si prefieres */
    color: #B70021;
    font-weight: 400;
}
.stat-label{
    color: #000000;
    margin: 0;
    font-weight: 500;
}
.stat-item{
    border: 10px;
    border-color: white;
}
.stat-item:hover{
    transform: scale(1.05);
}
/*FIN STAT TESTIMONIOS*/

/*INICIO BLOG*/
/* BLOG SECTION */
.blog-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.linea-decorativa {
    width: 60px;
    height: 4px;
    background-color: #FBD333;
    margin: 10px auto 30px;
}

.blog-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 15px; 
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1) !important;
}

/* El borde rojo que mencionaste en tus stats */
.border-destacado {
    border: 2px solid #B70021;
}

.blog-img-container {
    position: relative;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FBD333;
    color: #000;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 10px 0;
    color: #1a1a1a;
    line-height: 1.4;
    min-height: 3.5rem;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.blog-link {
    color: #B70021; 
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 0.9rem;
}

.blog-link:hover {
    color: #000;
    padding-left: 5px;
    text-decoration: underline;
    letter-spacing: 0.5px;
}
.blog-card-link {
    text-decoration: none; /* Quita el subrayado */
    color: inherit;        /* Mantiene los colores originales */
    display: block;        /* Hace que toda el área sea clickeable */
}

.blog-card-link:hover {
    color: inherit; /* Evita que cambie de color al pasar el mouse */
}
/*Articulos blog*/

/*FIN BLOG*/
/**/
/* Contenedor del Mosaico */
.text-bentogrid p{
    color: black;
}
.qhatu-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Una columna ancha y dos normales */
    grid-template-rows: 250px 250px; /* Dos filas de igual altura */
    gap: 15px;
    padding: 20px 0;
}

/* Estilo base de cada item */
.grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

/* Hacer que la primera tarjeta sea grande */
.grid-item.large {
    grid-row: 1 / 3; /* Ocupa desde la fila 1 a la 3 */
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.7; /* Para que el texto resalte más */
}

/* Efecto Zoom al pasar el mouse */
.grid-item:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}

/* Overlay con degradado para legibilidad */
.grid-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    pointer-events: none;
}

.badge-social {
    background-color: #FBD333; /* Tu amarillo */
    color: #000;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.75rem;
    align-self: flex-start;
}

.grid-text {
    color: #fff;
}

.grid-text h4 {
    font-size: 1.1rem;
    margin: 5px 0 0;
    font-weight: 500;
    line-height: 1.3;
    color: #ddd6ba;
}

/* Responsivo: En celulares todo en una sola columna */
@media (max-width: 768px) {
    .qhatu-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .grid-item.large {
        grid-row: auto;
        height: 300px;
    }
    .grid-item {
        height: 200px;
    }
}

/*PAGE CATALOGO CAR.HTML*/
/* Contenedor de la Tarjeta */
        :root {
            --verified-green: #2ecc71;
            --text-dark: #1a1a1a;
            --text-gray: #666;
            --bg-light: #f4f4f4;
        }
        .title-catalogopage{
            color: #000;
        }
.car-cardcatalogo {
    background: white;
    width: 300px; 
    border-radius: 20px;
    border: 1.5px solid #000;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 0 auto;
}
.car-cardcatalogo {
    background: white;
    max-width: 220px;
    min-height: 410px;
    border-radius: 25px;
    border: 2px solid #000;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, border-color 0.3s ease; 
    cursor: pointer;
}

.card-catalogoheader {
    position: absolute;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px; /* Más compacto */
}

.badge-verifiedcatal {
    background-color: #2ecc70cc;
    color: rgb(0, 0, 0);
    padding: 4px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 10px;
    display: flex;
    gap: 1px;    
    width: fit-content;      
    white-space: nowrap;
}
.iconverificado-carpage{
    max-width: 14px;
    height: auto;
}

.logo-smallcardcatal {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rojo-carroqhatu);
    font-family: sans-serif;    
}

.carcatal-image {
    width: 100%;
    height: 160px; /* Altura reducida */
    margin: 0 auto;
    display: block;
    border-radius: 12px 12px 0 0 ;
    object-fit: cover;
}


.cardcatal-body {
    padding: 12px 15px; /* Menos relleno */
    text-align: center;
}

.carcatal-title {
    font-size: 18px; /* Título más pequeño */
    font-weight: 800;
    margin: 5px 0 10px 0;
    color: black;
}

.especif-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px; /* Menos espacio entre items */
    margin-bottom: 10px;
    padding: 0 5px;
    font-size: 12px; /* Especificaciones más pequeñas */
    text-align: left;
    color: #444;
}

.dividerlinecatag {
    height: 1px;
    background-color: #eee;
    margin: 10px 0;
}

.pricecardcatal-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pricecardcatal-label { 
    font-size: 14px; 
    font-weight: bold; 
}

.pricecardcatal-value { 
    font-size: 14px; 
    font-weight: 800; 
    color: #000;
}

/* Botón Detalle Compacto */
.btn-detailcar {
    display: block;
    width: 100%;
    background-color: var(--amarillo-carroqhatu);
    color: black;
    text-decoration: none;
    padding: 8px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 13px;
    border: 1px solid #000;
    margin-bottom: 10px;
}

/* Link WhatsApp Compacto */
.contact-linkwspp {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a9f2a;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
}

.contact-linkwspp img { 
    width: 18px; 
    margin-right: 5px; 
}


.car-cardcatalogo:hover {
    background-color: #e0e0e0; 
    
    border-color: var(--amarillo-carroqhatu); 
}
.car-cardcatalogo:hover .btn-detailcar {
    background-color: #B70021;
    color: var(--amarillo-carroqhatu);
}
/*FIN PAGE CATALOGO CAR.HTML*/


/**/

/*PRUEBA FOOTER*/
.main-footer {
    background-color: #FBD333;
    color: #fff;
    padding: 30px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Tres columnas: Marca (25%), Centro (50%), Contacto (25%) */
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}
.footer-grid p {
    color: #232323;
}
.logo-footer{
    width: 15vw;
}
/* Columna Central Organizada */
.col-center {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.col-contact h3{
    margin-top: 2vw;
    color: #86031b;
}
.contact-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-links a{
   color: #232323;
}
.center-top {
    display: flex;
    justify-content: space-between;
}
.center-top {
    display: flex;
    justify-content: space-between;
}

/* Títulos y Enlaces */
.h3footer {
    color: #86031b;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

ul { list-style: none; padding: 0; }
ul li { margin-bottom: 8px; }
a { color: #232323; text-decoration: none; transition: 0.3s; }
a:hover { color: #f32121; }

/* Formulario debajo de las columnas centrales */
.footer-form {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 20px;
}

.footer-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.footer-form button {
    background-color: #86031b;
    color:rgb(255, 255, 255);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
}
.footer-form button:hover {
    background-color: #D46A07;
    color: white;
}

.footer-bottom{
    display: flex;
    margin-top: 5vw;
    align-items: center;
    justify-content: center;
    color: #232323
}

/* Iconos de Redes Sociales (Cuadritos) */
.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.icon-box {
    width: 35px; 
    height: 35px;
    background: #86031b;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 5px; color: #fff;
}
.icon-box:hover { background: #2a231e; color: white;}

/* Responsive: En celulares todo se pone en una sola columna */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .logo-footer{
        min-width: 150px !important;
        margin: auto;
    }
    .col-contact{
        padding-top: 7vw;
    }
    .center-top { 
        justify-content: center; 
        gap: 50px; }
    .footer-form { 
        min-width: 2vw;
    }
    .social-icons, .contact-links { 
        margin: auto;
        justify-content: center; 
    }
}
/**/

/* Tablets */
@media (min-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
}

/* Laptops */
@media (min-width: 992px) {
  h1 {
    font-size: 2.6rem;
  }
}

/* Escritorios grandes */
@media (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
}
* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-wrapper {
  width: 100%;
  overflow-x: hidden;
}
/*TODO MOBILE*/
@media (max-width: 768px) {
  .banner-video-container {
    width: 100%;
    height: 64vw; 
  }

  .banner-video {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .icon-item p {
    font-size: 12px;
    text-align: center;
  }

  .icon-menu,
  .icon-menu-more {
    width: 36px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .search-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .search-bar input {
    width: 100%;
  }

  .btn-search {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .mv-arrow {
    display: none;
  }

  .mv-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .mv-card {
    min-width: 80%;
    scroll-snap-align: start;
  }
}
@media (max-width: 768px) {
  .beneficios-grid,
  .videos-container {
    grid-template-columns: 1fr;
  }

  .video-card {
    width: 100%;
  }  
}
/* ===== VIDEOS MOBILE FIX ===== */
@media (max-width: 768px) {
  .videos-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 15px;
  scroll-snap-type: x mandatory;
}

.video-card {
  flex: 0 0 75%;
  scroll-snap-align: start;
  position: relative;
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
justify-content: center;
align-items: center;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
    width: 95%;
    max-width: 420px;
    position: relative;
    max-width: 800px;
    margin: auto;
    background: #000;
    overflow: visible;
}

.video-modal video {
  width: 100%;
  border-radius: 12px;
}

/* Botón cerrar */
.close-btn { 
    position: absolute;
    /* Prueba con 10px positivos primero para ver si aparece dentro */
    top: 10px; 
    right: 15px; 
    font-size: 35px; 
    cursor: pointer;
    color: white;
    z-index: 9999; /* Asegura que esté por encima del video */
    line-height: 1;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,0,0,0.5); /* Para que se vea si el video es claro */
}
}

