*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

:root{
    --verde:#148f42;
    --rojo:#d62828;
    --blanco:#ffffff;
    --gris:#f5f5f5;
    --texto:#222222;
}

body{
    background:var(--blanco);
    color:var(--texto);
}

/* ENCABEZADO */

header{
    background:var(--verde);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
}

.logo h2{
    color:var(--blanco);
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:var(--blanco);
    text-decoration:none;
    font-weight:600;
}

.telefono a{
    color:var(--blanco);
    text-decoration:none;
    font-weight:bold;
}

/* BANNER */

.hero{
    margin-top:80px;
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(rgba(20,143,66,.85),rgba(20,143,66,.85)),
    url("img/banner.jpg");
    background-size:cover;
    background-position:center;
}

.hero-contenido{
    max-width:800px;
    padding:20px;
}

.hero h1{
    color:var(--blanco);
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    color:var(--blanco);
    font-size:22px;
    margin-bottom:35px;
}

.botones{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-ver,
.btn-cotizar{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:bold;
}

.btn-ver{
    background:var(--blanco);
    color:var(--verde);
}

.btn-cotizar{
    background:var(--rojo);
    color:var(--blanco);
}

/* RESPONSIVO */

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:18px;
    }

    .botones{
        flex-direction:column;
    }

}

.busqueda{
    padding:80px 8%;
    background:#f5f5f5;
    text-align:center;
}

.busqueda h2{
    color:#148f42;
    margin-bottom:30px;
}

.filtros{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.filtro{
    border:none;
    padding:12px 25px;
    cursor:pointer;
    border-radius:40px;
    background:#148f42;
    color:#fff;
    font-weight:bold;
}

.vehiculos{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.tarjeta{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.tarjeta img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.tarjeta h3{
    margin:20px 0 10px;
}

.tarjeta p{
    margin-bottom:20px;
}

.tarjeta a{
    display:inline-block;
    margin-bottom:20px;
    padding:12px 25px;
    text-decoration:none;
    background:#d62828;
    color:#fff;
    border-radius:30px;
}

.nosotros {
    padding: 80px 8%;
    text-align: center;
    background: #ffffff;
}

.nosotros h2 {
    color: #148f42;
    margin-bottom: 40px;
}

.beneficios {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.beneficio {
    width: 300px;
    padding: 30px;
    border-radius: 20px;
    background: #f5f5f5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nosotros {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 80px 8%;
}

.beneficios {
    width: 45%;
}

.imagen-lateral {
    width: 55%;
}

.imagen-lateral img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.footer{
    padding:50px 20px;
    text-align:center;
    background:#148f42;
    color:#ffffff;
}

.footer h2{
    margin-bottom:20px;
}

.footer p{
    margin:10px 0;
}

.footer-botones{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:25px;
}

.btn-footer{
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    background:#d62828;
    color:#ffffff;
    font-weight:bold;
}

/* =========================================
   WHATSAPP FLOTANTE PREMIUM
========================================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 90px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 18px 12px 12px;

    background: #25D366;
    color: #ffffff;

    text-decoration: none;

    border-radius: 50px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    z-index: 1000;

    transition: all 0.3s ease;

    animation: whatsappEntrada 0.8s ease;
}

/* ICONO */

.whatsapp-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #25D366;

    border-radius: 50%;

    font-size: 27px;
    font-weight: bold;
}

/* TEXTO */

.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.whatsapp-text strong {
    font-size: 14px;
    margin-bottom: 3px;
}

.whatsapp-text small {
    font-size: 11px;
    opacity: 0.95;
}

/* EFECTO AL PASAR EL MOUSE */

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.03);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.30);
}

/* PULSO */

.whatsapp-float::before {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50px;

    border: 2px solid #25D366;

    opacity: 0;

    animation: whatsappPulso 2.2s infinite;
}

/* ANIMACIONES */

@keyframes whatsappPulso {

    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.08);
        opacity: 0;
    }

    100% {
        transform: scale(1.08);
        opacity: 0;
    }

}

@keyframes whatsappEntrada {

    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* CELULAR */

@media (max-width: 600px) {

    .whatsapp-float {
        right: 15px;
        bottom: 80px;

        width: 58px;
        height: 58px;

        padding: 0;

        justify-content: center;
    }

    .whatsapp-icon {
        width: 48px;
        height: 48px;

        font-size: 28px;
    }

    .whatsapp-text {
        display: none;
    }

}

.llamada-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    text-decoration:none;
    font-size:30px;
    background:#d62828;
    z-index:1000;
}

.ubicacion {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.ubicacion h2 {
    color: #148f42;
    margin-bottom: 20px;
}

.ubicacion p {
    margin-bottom: 20px;
}

.ubicacion iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 20px;
}

.tarjeta {
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tarjeta:hover {
    transform: translateY(-10px);
}

.tarjeta img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tarjeta h3 {
    margin-top: 15px;
}

.tarjeta a {
    display: inline-block;
    margin: 15px 0 20px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    background: #d62828;
    color: #ffffff;
    font-weight: bold;
}

.testimonios {
    padding: 70px 20px;
    text-align: center;
}

.contenedor-testimonios {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonio {
    width: 300px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    background: #ffffff;
}

/* =========================================
   FRANJA DE CONFIANZA
========================================= */

.confianza {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 28px 7%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
}

.confianza-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.confianza-item:hover {
    transform: translateY(-4px);
    border-color: #16834B;
    box-shadow: 0 10px 25px rgba(22,131,75,0.12);
}

.confianza-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #16834B;
    color: #ffffff;
    border-radius: 12px;
    font-size: 23px;
}

.confianza-item strong {
    display: block;
    font-size: 15px;
    color: #171717;
    margin-bottom: 4px;
}

.confianza-item p {
    margin: 0;
    font-size: 13px;
    color: #777777;
}

/* MÓVIL */

@media (max-width: 800px) {

    .confianza {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 12px;
    }

}

@media (max-width: 500px) {

    .confianza {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   PREGUNTAS FRECUENTES
========================================= */

.faq {
    width: 100%;
    padding: 90px 7%;
    background: #ffffff;
    box-sizing: border-box;
}

.faq-titulo {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.faq-titulo span {
    display: inline-block;
    color: #D71920;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.faq-titulo h2 {
    margin: 0 0 15px;
    color: #222222;
    font-size: 38px;
    font-weight: 800;
}

.faq-titulo p {
    margin: 0;
    color: #777777;
    font-size: 15px;
    line-height: 1.7;
}


/* CONTENEDOR */

.faq-contenedor {
    max-width: 900px;
    margin: 0 auto;
}


/* CADA PREGUNTA */

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}


/* EFECTO AL PASAR EL MOUSE */

.faq-item:hover {
    border-color: #D71920;
    box-shadow: 0 8px 25px rgba(215, 25, 32, 0.08);
}


/* PREGUNTA */

.faq-item summary {
    list-style: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 21px 24px;

    color: #222222;
    font-size: 16px;
    font-weight: 700;

    user-select: none;
}


/* QUITAR FLECHA ORIGINAL */

.faq-item summary::-webkit-details-marker {
    display: none;
}


/* BOTÓN + */

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 20px;

    background: #D71920;
    color: #ffffff;

    border-radius: 50%;

    font-size: 23px;
    font-weight: 400;

    line-height: 1;

    transition: transform 0.3s ease;
}


/* CUANDO SE ABRE */

.faq-item[open] {
    border-color: #D71920;
}


/* EL + SE CONVIERTE VISUALMENTE EN X */

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}


/* RESPUESTA */

.faq-respuesta {
    padding: 0 24px 22px;
    animation: faqAbrir 0.25s ease;
}

.faq-respuesta p {
    margin: 0;
    padding-top: 3px;

    color: #666666;

    font-size: 14px;
    line-height: 1.8;

    border-top: 1px solid #eeeeee;
    padding-top: 18px;
}


/* ANIMACIÓN */

@keyframes faqAbrir {

    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 600px) {

    .faq {
        padding: 65px 18px;
    }

    .faq-titulo h2 {
        font-size: 30px;
    }

    .faq-titulo p {
        font-size: 14px;
    }

    .faq-item summary {
        padding: 18px;
        font-size: 14px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 20px;
    }

    .faq-respuesta {
        padding: 0 18px 18px;
    }

}

/* =========================================
   NUESTROS SERVICIOS
========================================= */

.servicios-section {
    background: #ffffff;
    padding: 90px 7%;
    position: relative;
    overflow: hidden;
}

.servicios-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.servicios-subtitulo {
    display: inline-block;
    color: #e00000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.servicios-header h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
}

.servicios-header h2 span {
    color: #d90000;
}

.servicios-header p {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 18px;
}

/* GRID */

.servicios-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* TARJETAS */

.servicio-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    padding: 35px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.servicio-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #d90000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-8px);
    border-color: #dddddd;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.servicio-card:hover::before {
    transform: scaleX(1);
}

/* ICONOS */

.servicio-icono {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s ease;
}

.servicio-card:hover .servicio-icono {
    background: #d90000;
    transform: scale(1.08);
}

/* TITULO */

.servicio-card h3 {
    color: #111111;
    font-size: 20px;
    font-weight: 750;
    margin: 0 0 13px;
}

/* TEXTO */

.servicio-card p {
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* LINEA ROJA */

.servicio-linea {
    width: 45px;
    height: 3px;
    background: #d90000;
    margin: 22px auto 0;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.servicio-card:hover .servicio-linea {
    width: 75px;
}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 900px) {

    .servicios-section {
        padding: 70px 5%;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================
   RESPONSIVE CELULAR
========================================= */

@media (max-width: 600px) {

    .servicios-section {
        padding: 60px 20px;
    }

    .servicios-header {
        margin-bottom: 40px;
    }

    .servicios-header h2 {
        font-size: 32px;
    }

    .servicios-header p {
        font-size: 15px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .servicio-card {
        padding: 30px 22px;
    }
}

/* =========================================
   REQUISITOS PARA ALQUILAR
========================================= */

.requisitos-section {
    background: #f7f7f7;
    padding: 90px 7%;
}

.requisitos-header {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.requisitos-header > span {
    color: #d90000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.requisitos-header h2 {
    margin: 12px 0;
    color: #111;
    font-size: clamp(32px, 4vw, 46px);
}

.requisitos-header h2 strong {
    color: #d90000;
}

.requisitos-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* CONTENEDOR */

.requisitos-contenedor {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* TARJETA */

.requisito-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.requisito-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
    border-color: #d90000;
}

/* NUMERO */

.requisito-numero {
    position: absolute;
    top: 12px;
    right: 18px;
    color: #d90000;
    font-size: 12px;
    font-weight: 800;
}

/* ICONO */

.requisito-icono {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    transition: 0.3s ease;
}

.requisito-card:hover .requisito-icono {
    background: #d90000;
}

/* TEXTO */

.requisito-card h3 {
    margin: 0 0 7px;
    color: #111;
    font-size: 18px;
}

.requisito-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* NOTA */

.requisitos-nota {
    max-width: 1050px;
    margin: 35px auto 0;
    padding: 25px 30px;
    background: #111;
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.nota-icono {
    font-size: 25px;
}

.requisitos-nota h3 {
    margin: 0 0 7px;
    color: #fff;
}

.requisitos-nota p {
    margin: 0;
    color: #d5d5d5;
    font-size: 14px;
    line-height: 1.7;
}

/* BOTON */

.requisitos-boton {
    text-align: center;
    margin-top: 35px;
}

.requisitos-boton a {
    display: inline-block;
    background: #d90000;
    color: #fff;
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.requisitos-boton a:hover {
    background: #111;
    transform: translateY(-2px);
}

/* =========================================
   CELULAR
========================================= */

@media (max-width: 700px) {

    .requisitos-section {
        padding: 65px 20px;
    }

    .requisitos-contenedor {
        grid-template-columns: 1fr;
    }

    .requisito-card {
        padding: 25px 20px;
    }

    .requisitos-nota {
        padding: 22px;
    }

    .requisitos-boton a {
        width: 100%;
        box-sizing: border-box;
    }
}

/* =========================================
   DESTINOS DESDE YUMBO
========================================= */

.destinos-section {
    background: #ffffff;
    padding: 90px 7%;
}

.destinos-header {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.destinos-header > span {
    color: #d90000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.destinos-header h2 {
    color: #111111;
    font-size: clamp(32px, 4vw, 46px);
    margin: 12px 0;
}

.destinos-header h2 strong {
    color: #d90000;
}

.destinos-header p {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}


/* GRID */

.destinos-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* TARJETA */

.destino-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;

    border: 1px solid #eeeeee;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    transition: all 0.35s ease;
}

.destino-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.14);
}


/* IMAGEN */

.destino-imagen {
    height: 220px;
    overflow: hidden;
}

.destino-imagen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.destino-card:hover .destino-imagen img {
    transform: scale(1.08);
}


/* CONTENIDO */

.destino-contenido {
    padding: 25px;
}

.destino-contenido > span {
    color: #d90000;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.destino-contenido h3 {
    color: #111111;

    font-size: 23px;

    margin: 7px 0 10px;
}

.destino-contenido p {
    color: #666666;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 18px;
}

.destino-contenido a {
    color: #d90000;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: color 0.3s ease;
}

.destino-contenido a:hover {
    color: #111111;
}


/* CTA */

.destinos-cta {
    max-width: 1200px;

    margin: 45px auto 0;

    padding: 30px 35px;

    background: #111111;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}

.destinos-cta h3 {
    color: #ffffff;

    margin: 0 0 7px;

    font-size: 22px;
}

.destinos-cta p {
    color: #cccccc;

    margin: 0;

    font-size: 14px;
}

.destinos-cta a {
    background: #d90000;

    color: #ffffff;

    text-decoration: none;

    padding: 14px 24px;

    border-radius: 8px;

    font-weight: 700;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.destinos-cta a:hover {
    background: #ffffff;

    color: #111111;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .destinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 600px) {

    .destinos-section {
        padding: 65px 20px;
    }

    .destinos-grid {
        grid-template-columns: 1fr;
    }

    .destino-imagen {
        height: 210px;
    }

    .destinos-cta {
        flex-direction: column;

        text-align: center;

        padding: 30px 20px;
    }

    .destinos-cta a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

}

/* =========================================
   EXPERIENCIA AUTOS RENT A CAR
========================================= */

.experiencia-section {
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
    padding: 110px 7%;
    color: #ffffff;
}

/* Efectos decorativos */

.experiencia-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(217, 0, 0, 0.08);
    border-radius: 50%;
    top: -220px;
    right: -150px;
}

.experiencia-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(217, 0, 0, 0.06);
    border-radius: 50%;
    bottom: -180px;
    left: -100px;
}

.experiencia-contenido {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: auto;
    text-align: center;
}

.experiencia-etiqueta {
    color: #e00000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
}

.experiencia-contenido h2 {
    max-width: 850px;
    margin: 18px auto;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 800;
}

.experiencia-contenido h2 strong {
    color: #e00000;
}

.experiencia-contenido > p {
    max-width: 720px;
    margin: 0 auto;
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   RUTA
========================================= */

.experiencia-ruta {
    max-width: 1000px;
    margin: 70px auto 50px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ruta-punto {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.ruta-punto > span {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #202020;
    border: 2px solid #444;

    color: #aaa;
    font-size: 13px;
    font-weight: 800;

    transition: all 0.3s ease;
}

.ruta-punto.activo > span {
    background: #e00000;
    border-color: #e00000;
    color: #ffffff;

    box-shadow:
        0 0 0 8px rgba(224, 0, 0, 0.12);
}

.ruta-punto strong {
    margin-top: 15px;
    color: #ffffff;
    font-size: 15px;
}

.ruta-punto small {
    margin-top: 5px;
    color: #777;
    font-size: 12px;
}

.ruta-linea {
    flex: 1;
    max-width: 100px;
    height: 2px;
    background: linear-gradient(
        to right,
        #e00000,
        #444
    );
}


/* =========================================
   BOTON
========================================= */

.experiencia-boton {
    display: inline-block;

    background: #e00000;
    color: #ffffff;

    padding: 16px 32px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 800;

    transition: all 0.3s ease;

    box-shadow:
        0 10px 25px rgba(224, 0, 0, 0.25);
}

.experiencia-boton:hover {
    background: #ffffff;
    color: #111111;

    transform: translateY(-3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .experiencia-section {
        padding: 80px 5%;
    }

    .experiencia-ruta {
        flex-wrap: wrap;
        gap: 30px;
    }

    .ruta-linea {
        max-width: 50px;
    }

}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 600px) {

    .experiencia-section {
        padding: 70px 20px;
    }

    .experiencia-contenido h2 {
        font-size: 34px;
    }

    .experiencia-ruta {
        flex-direction: column;
        gap: 0;
        margin-top: 50px;
    }

    .ruta-punto {
        flex-direction: row;
        width: 100%;
        gap: 15px;
        text-align: left;
    }

    .ruta-punto strong {
        margin-top: 0;
    }

    .ruta-linea {
        width: 2px;
        height: 35px;
        margin-left: 27px;
        background: #e00000;
    }

    .experiencia-boton {
        width: 100%;
        box-sizing: border-box;
    }

}

/* =========================================
   BOTÓN MODO OSCURO
========================================= */

.dark-mode-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #dddddd;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 19px;

    transition: all 0.3s ease;
}

.dark-mode-btn:hover {
    background: #d90000;
    border-color: #d90000;
    color: #ffffff;
    transform: rotate(15deg);
}


/* =========================================
   MODO OSCURO
========================================= */

body.dark-mode {
    background: #0b0b0b;
    color: #ffffff;
}

body.dark-mode .dark-mode-btn {
    background: #1a1a1a;
    border-color: #333333;
    color: #ffffff;
}


/* Fondos principales */

body.dark-mode .servicios-section,
body.dark-mode .requisitos-section,
body.dark-mode .destinos-section {
    background: #0b0b0b;
}


/* Textos */

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
    color: #ffffff;
}


/* Párrafos */

body.dark-mode p {
    color: #bdbdbd;
}


/* Tarjetas */

body.dark-mode .servicio-card,
body.dark-mode .requisito-card,
body.dark-mode .destino-card {
    background: #151515;
    border-color: #292929;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}


/* Textos internos */

body.dark-mode .servicio-card h3,
body.dark-mode .requisito-card h3,
body.dark-mode .destino-contenido h3 {
    color: #ffffff;
}


/* Sección experiencia */

body.dark-mode .experiencia-section {
    background: #050505;
}


/* Botones */

body.dark-mode .destinos-cta {
    background: #151515;
}


/* Inputs */

body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
    background: #151515;
    color: #ffffff;
    border-color: #333333;
}


/* Placeholder */

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #888888;
}

/* =========================================
   RECOMENDADOR
========================================= */

.recomendador-section {
    background: #f7f7f7;
    padding: 90px 7%;
}

.recomendador-header {
    max-width: 750px;
    margin: auto;
    text-align: center;
    margin-bottom: 45px;
}

.recomendador-header span {
    color: #d90000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.recomendador-header h2 {
    color: #111111;
    font-size: clamp(32px, 4vw, 46px);
    margin: 12px 0;
}

.recomendador-header h2 strong {
    color: #d90000;
}

.recomendador-header p {
    color: #666666;
    line-height: 1.7;
}


/* CAJA */

.recomendador-box {
    max-width: 900px;
    margin: auto;

    background: #ffffff;

    border-radius: 20px;

    padding: 45px;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.08);
}


/* PREGUNTAS */

.pregunta {
    margin-bottom: 35px;
}

.pregunta h3 {
    color: #111111;
    font-size: 18px;
    margin-bottom: 18px;
}


/* OPCIONES */

.opciones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.opcion {
    padding: 13px 20px;

    border: 1px solid #dddddd;

    background: #ffffff;

    border-radius: 8px;

    cursor: pointer;

    color: #222222;

    font-weight: 600;

    transition: all 0.25s ease;
}

.opcion:hover {
    border-color: #d90000;
    color: #d90000;
}

.opcion.seleccionado {
    background: #d90000;
    color: #ffffff;
    border-color: #d90000;
}


/* BOTÓN */

.recomendador-boton {
    width: 100%;

    padding: 17px;

    border: none;

    border-radius: 8px;

    background: #111111;

    color: #ffffff;

    font-size: 16px;

    font-weight: 800;

    cursor: pointer;

    transition: all 0.3s ease;
}

.recomendador-boton:hover {
    background: #d90000;
}


/* RESULTADO */

.resultado-vehiculo {
    display: none;

    margin-top: 35px;

    padding: 30px;

    background: #f7f7f7;

    border-radius: 15px;

    border-left: 4px solid #d90000;
}

.resultado-vehiculo.mostrar {
    display: block;
}

.resultado-vehiculo h3 {
    color: #111111;
    font-size: 25px;
    margin: 0 0 10px;
}

.resultado-vehiculo p {
    color: #666666;
    line-height: 1.6;
}

.resultado-vehiculo .resultado-boton {
    display: inline-block;

    margin-top: 15px;

    background: #d90000;

    color: #ffffff;

    text-decoration: none;

    padding: 13px 22px;

    border-radius: 7px;

    font-weight: 700;
}


/* =========================================
   MODO OSCURO
========================================= */

body.dark-mode .recomendador-section {
    background: #0b0b0b;
}

body.dark-mode .recomendador-box {
    background: #151515;
}

body.dark-mode .pregunta h3 {
    color: #ffffff;
}

body.dark-mode .opcion {
    background: #1d1d1d;
    border-color: #333333;
    color: #ffffff;
}

body.dark-mode .opcion:hover {
    border-color: #d90000;
}

body.dark-mode .resultado-vehiculo {
    background: #1d1d1d;
}

body.dark-mode .resultado-vehiculo h3 {
    color: #ffffff;
}

body.dark-mode .resultado-vehiculo p {
    color: #bbbbbb;
}


/* CELULAR */

@media (max-width: 600px) {

    .recomendador-section {
        padding: 65px 20px;
    }

    .recomendador-box {
        padding: 28px 20px;
    }

    .opciones {
        flex-direction: column;
    }

    .opcion {
        width: 100%;
    }

}

/* =========================================
   HISTORIA Y EXPERIENCIA
========================================= */

.historia-section {
    background: #ffffff;
    padding: 100px 7%;
}

.historia-contenedor {
    max-width: 1150px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.4fr 0.8fr;

    gap: 80px;

    align-items: center;
}


/* TEXTO */

.historia-etiqueta {
    color: #d90000;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 4px;
}

.historia-texto h2 {
    color: #111111;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.15;

    margin: 15px 0 25px;
}

.historia-texto h2 strong {
    color: #d90000;
}

.historia-texto p {
    color: #666666;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 18px;
}


/* BOTON */

.historia-boton {
    display: inline-block;

    margin-top: 15px;

    background: #111111;

    color: #ffffff;

    text-decoration: none;

    padding: 15px 27px;

    border-radius: 8px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.historia-boton:hover {
    background: #d90000;

    transform: translateY(-3px);
}


/* =========================================
   BLOQUE 9 AÑOS
========================================= */

.historia-experiencia {
    position: relative;

    background: #111111;

    min-height: 380px;

    border-radius: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.15);
}


/* CIRCULO ROJO */

.historia-experiencia::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(217,0,0,0.12);

    top: -130px;
    right: -100px;
}


/* NUMERO */

.experiencia-numero {
    position: relative;

    color: #d90000;

    font-size: 150px;

    line-height: 0.8;

    font-weight: 900;
}

.experiencia-anios {
    position: relative;

    color: #ffffff;

    font-size: 28px;

    font-weight: 800;

    letter-spacing: 8px;

    margin-top: 20px;
}

.historia-experiencia p {
    position: relative;

    max-width: 220px;

    color: #bbbbbb;

    line-height: 1.6;

    margin: 15px 0;
}

.experiencia-linea {
    width: 50px;

    height: 3px;

    background: #d90000;

    margin: 10px 0 15px;
}

.historia-experiencia > span {
    position: relative;

    color: #888888;

    font-size: 13px;
}


/* =========================================
   ESTADISTICAS
========================================= */

.historia-estadisticas {
    max-width: 1150px;

    margin: 70px auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #eeeeee;

    padding-top: 40px;
}

.historia-stat {
    text-align: center;

    padding: 0 20px;

    border-right: 1px solid #eeeeee;
}

.historia-stat:last-child {
    border-right: none;
}

.historia-stat strong {
    display: block;

    color: #d90000;

    font-size: 30px;

    font-weight: 900;

    margin-bottom: 8px;
}

.historia-stat span {
    color: #666666;

    font-size: 13px;
}


/* =========================================
   MODO OSCURO
========================================= */

body.dark-mode .historia-section {
    background: #0b0b0b;
}

body.dark-mode .historia-texto h2 {
    color: #ffffff;
}

body.dark-mode .historia-texto p {
    color: #aaaaaa;
}

body.dark-mode .historia-estadisticas {
    border-color: #292929;
}

body.dark-mode .historia-stat {
    border-color: #292929;
}

body.dark-mode .historia-stat span {
    color: #999999;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .historia-contenedor {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .historia-experiencia {
        max-width: 500px;

        width: 100%;

        margin: auto;
    }

    .historia-estadisticas {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 30px;
    }

    .historia-stat:nth-child(2) {
        border-right: none;
    }
}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 600px) {

    .historia-section {
        padding: 70px 20px;
    }

    .historia-texto h2 {
        font-size: 35px;
    }

    .historia-experiencia {
        min-height: 320px;
    }

    .experiencia-numero {
        font-size: 120px;
    }

    .historia-estadisticas {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .historia-stat {
        border-right: none;

        border-bottom: 1px solid #eeeeee;

        padding-bottom: 25px;
    }

    .historia-stat:last-child {
        border-bottom: none;
    }

}

/* =========================================
   HERO AUTOS RENT A CAR
========================================= */

.hero-autos {
    position: relative;
    overflow: hidden;

    min-height: 720px;

    background:
        linear-gradient(
            110deg,
            #003b21 0%,
            #00552e 55%,
            #00351e 100%
        );

    color: #ffffff;

    display: flex;
    align-items: center;
}


/* CONTENIDO */

.hero-contenido {
    width: min(1200px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 30px;
}


/* TEXTO */

.hero-texto {
    position: relative;
    z-index: 3;

    padding: 70px 0;
}

.hero-etiqueta {
    display: inline-block;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 18px;
}

.hero-texto h1 {
    max-width: 650px;

    margin: 0;

    font-size: clamp(
        42px,
        5vw,
        72px
    );

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;
}

.hero-texto h1 strong {
    display: block;

    color: #e00000;
}

.hero-texto p {
    max-width: 560px;

    margin: 25px 0;

    color: rgba(255,255,255,0.82);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   BOTONES
========================================= */

.hero-botones {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.hero-btn-principal,
.hero-btn-secundario {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 7px;

    text-decoration: none;

    font-weight: 800;

    transition: all .3s ease;
}

.hero-btn-principal {
    background: #e00000;

    color: #ffffff;

    box-shadow:
        0 10px 30px rgba(0,0,0,.2);
}

.hero-btn-principal:hover {
    background: #ffffff;

    color: #111111;

    transform: translateY(-3px);
}

.hero-btn-secundario {
    border: 1px solid rgba(255,255,255,.4);

    color: #ffffff;

    background: rgba(255,255,255,.06);
}

.hero-btn-secundario:hover {
    background: #ffffff;

    color: #111111;
}


/* =========================================
   DATOS DE CONFIANZA
========================================= */

.hero-confianza {
    display: flex;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 45px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.18);
}

.hero-confianza div {
    display: flex;

    flex-direction: column;
}

.hero-confianza strong {
    color: #ffffff;

    font-size: 23px;

    font-weight: 900;
}

.hero-confianza span {
    margin-top: 4px;

    color: rgba(255,255,255,.65);

    font-size: 11px;
}


/* =========================================
   ZONA DEL VEHÍCULO
========================================= */

.hero-vehiculo {
    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* CÍRCULO DETRÁS DEL CARRO */

.hero-circulo {
    position: absolute;

    width: 520px;

    height: 520px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

    box-shadow:
        0 0 100px rgba(0,0,0,.15);
}


/* IMAGEN */

.hero-vehiculo img {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 650px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 25px
            rgba(0,0,0,.35)
        );

    animation:
        carroEntrada 1s ease-out;
}


/* =========================================
   TARJETA FLOTANTE
========================================= */

.hero-card {
    position: absolute;

    z-index: 4;

    right: 0;

    bottom: 100px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.95);

    color: #111111;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.25);

    animation:
        tarjetaEntrada 1s ease-out .3s both;
}

.hero-card > span {
    font-size: 25px;
}

.hero-card div {
    display: flex;

    flex-direction: column;
}

.hero-card strong {
    font-size: 13px;
}

.hero-card small {
    margin-top: 3px;

    color: #666666;

    font-size: 11px;
}


/* =========================================
   ANIMACIONES
========================================= */

@keyframes carroEntrada {

    from {
        opacity: 0;

        transform:
            translateX(70px)
            scale(.9);
    }

    to {
        opacity: 1;

        transform:
            translateX(0)
            scale(1);
    }

}

@keyframes tarjetaEntrada {

    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 850px) {

    .hero-autos {
        min-height: auto;
    }

    .hero-contenido {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-texto {
        padding: 70px 0 20px;
    }

    .hero-texto p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-botones {
        justify-content: center;
    }

    .hero-confianza {
        justify-content: center;

        text-align: left;
    }

    .hero-vehiculo {
        min-height: 400px;
    }

    .hero-circulo {
        width: 360px;
        height: 360px;
    }

    .hero-vehiculo img {
        max-width: 500px;
    }

    .hero-card {
        right: 5%;

        bottom: 40px;
    }

}


@media (max-width: 500px) {

    .hero-texto h1 {
        font-size: 42px;
    }

    .hero-botones {
        flex-direction: column;
    }

    .hero-btn-principal,
    .hero-btn-secundario {
        width: 100%;

        box-sizing: border-box;
    }

    .hero-confianza {
        gap: 18px;
    }

   .hero {
    min-height: 300px;
}

    .hero-circulo {
        width: 280px;
        height: 280px;
    }

    .hero-card {
        position: relative;

        right: auto;
        bottom: auto;

        margin-top: -80px;
    }

}

html {
    scroll-behavior: smooth;
}

/* =====================================================
   📱 BANNER HERO - AJUSTE REAL PARA CELULAR
   ===================================================== */

@media (max-width: 600px) {

    .hero-autos {
        width: 100%;
        min-height: 0 !important;
        height: auto !important;
        overflow: hidden;
        display: block;
    }

    .hero-contenido {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* TEXTO */
    .hero-texto {
        width: 100%;
        padding: 45px 0 15px;
        text-align: center;
    }

    .hero-texto h1 {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .hero-texto p {
        width: 100%;
        max-width: 100%;
        margin: 20px auto;
        font-size: 15px;
        line-height: 1.6;
    }

    /* BOTONES */
    .hero-botones {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .hero-btn-principal,
    .hero-btn-secundario {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* DATOS */
    .hero-confianza {
        width: 100%;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
        padding-top: 20px;
    }

    /* ===============================
       ZONA DEL CARRO
       =============================== */

    .hero-vehiculo {
        width: 100%;
        max-width: 100%;
        min-height: 0 !important;
        height: 330px;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    /* CÍRCULO */
    .hero-circulo {
        width: 270px !important;
        height: 270px !important;
        max-width: 75vw;
        max-height: 75vw;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* CARRO */
    .hero-vehiculo img,
    .hero-car {
        position: relative;
        z-index: 2;
        display: block;
        width: 90% !important;
        max-width: 350px !important;
        height: auto !important;
        margin: 0 auto;
        object-fit: contain;
    }

    /* TARJETA */
    .hero-card {
        position: absolute !important;
        z-index: 5;
        right: 15px !important;
        left: auto !important;
        bottom: 20px !important;
        margin: 0 !important;
        max-width: 230px;
    }
}
/* =====================================================
   📱 CORRECCIÓN DEFINITIVA CELULAR
   HEADER + BANNER
===================================================== */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden !important;
    }

    /* =========================
       HEADER
    ========================= */

    header {
        position: relative !important;
        width: 100% !important;
        min-height: 70px;
        height: auto;
        padding: 15px 18px !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 0 !important;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .logo h2 {
        margin: 0;
        font-size: 22px;
        white-space: nowrap;
    }

    /* Ocultamos temporalmente el menú
       para que no destruya el banner */

    nav {
        display: none !important;
    }

    .telefono {
        display: none !important;
    }


    /* =========================
       BANNER
    ========================= */

    .hero-autos {
        width: 100% !important;
        max-width: 100% !important;

        min-height: auto !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        display: block !important;
    }


    /* CONTENEDOR */

    .hero-autos .hero-contenido {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 20px !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 0 !important;
    }


    /* =========================
       TEXTO
    ========================= */

    .hero-texto {
        width: 100% !important;
        max-width: 100% !important;

        padding: 45px 0 20px !important;

        text-align: center !important;
    }

    .hero-texto h1 {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        font-size: 38px !important;
        line-height: 1.08 !important;

        letter-spacing: -1px !important;

        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    .hero-texto h1 strong {
        display: block !important;
    }

    .hero-texto p {
        width: 100% !important;
        max-width: 100% !important;

        margin: 20px auto !important;

        font-size: 16px !important;
        line-height: 1.6 !important;

        overflow-wrap: break-word !important;
    }


    /* =========================
       BOTONES
    ========================= */

    .hero-botones {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 12px !important;

        margin-top: 20px !important;
    }

    .hero-btn-principal,
    .hero-btn-secundario {
        width: 100% !important;
        max-width: 100% !important;

        min-height: 54px;

        box-sizing: border-box !important;
    }


    /* =========================
       DATOS DE CONFIANZA
    ========================= */

    .hero-confianza {
        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        flex-wrap: wrap !important;

        justify-content: center !important;

        gap: 20px !important;

        margin-top: 30px !important;
        padding-top: 20px !important;

        text-align: center !important;
    }


    /* =========================
       ZONA DEL CARRO
    ========================= */

    .hero-vehiculo {
        width: 100% !important;
        max-width: 100% !important;

        min-height: 0 !important;
        height: 300px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        position: relative !important;

        overflow: hidden !important;
    }


    /* CÍRCULO */

    .hero-circulo {
        position: absolute !important;

        width: 260px !important;
        height: 260px !important;

        max-width: 75vw !important;
        max-height: 75vw !important;

        left: 50% !important;
        top: 50% !important;

        transform: translate(-50%, -50%) !important;
    }


    /* CARRO */

    .hero-vehiculo img,
    .hero-car {
        position: relative !important;

        z-index: 2 !important;

        display: block !important;

        width: 95% !important;
        max-width: 350px !important;

        height: auto !important;

        margin: 0 auto !important;
    }


    /* TARJETA SOBRE EL CARRO */

    .hero-card {
        position: absolute !important;

        right: 15px !important;
        left: auto !important;

        bottom: 15px !important;

        max-width: 220px !important;

        margin: 0 !important;
    }
}
/* =====================================================
   📱 BANNER CELULAR - CONFIGURACIÓN FINAL
   ===================================================== */

@media (max-width: 600px) {

    /* Evita que cualquier elemento ensanche la página */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    /* ===============================
       BANNER
       =============================== */

    .hero-autos {
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        overflow: hidden !important;
        display: block !important;
        padding: 0 !important;
    }

    .hero-contenido {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 18px !important;

        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* ===============================
       TEXTO
       =============================== */

    .hero-texto {
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 0 15px !important;
        text-align: center !important;
    }

    .hero-texto h1 {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        font-size: clamp(30px, 9vw, 38px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1px !important;

        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    .hero-texto p {
        width: 100% !important;
        max-width: 100% !important;

        margin: 18px auto !important;

        font-size: 15px !important;
        line-height: 1.55 !important;
    }

    /* ===============================
       BOTONES
       =============================== */

    .hero-botones {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 10px !important;
        margin-top: 18px !important;
    }

    .hero-btn-principal,
    .hero-btn-secundario {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* ===============================
       DATOS 9+ / ✓ / UBICACIÓN
       =============================== */

    .hero-confianza {
        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;

        gap: 18px !important;

        margin-top: 25px !important;
        padding-top: 18px !important;

        text-align: center !important;
    }

    /* ===============================
       CARRO
       =============================== */

    .hero-vehiculo {
        width: 100% !important;
        max-width: 100% !important;

        height: 280px !important;
        min-height: 280px !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        overflow: hidden !important;
    }

    /* Círculo detrás del carro */
    .hero-circulo {
        position: absolute !important;

        width: 240px !important;
        height: 240px !important;

        left: 50% !important;
        top: 50% !important;

        transform: translate(-50%, -50%) !important;

        max-width: none !important;
        max-height: none !important;
    }

    /* Imagen del carro */
    .hero-vehiculo img,
    .hero-car {
        position: relative !important;

        z-index: 2 !important;

        display: block !important;

        width: 100% !important;
        max-width: 330px !important;

        height: auto !important;

        margin: 0 auto !important;

        object-fit: contain !important;
    }

    /* Tarjeta blanca sobre el carro */
    .hero-card {
        position: absolute !important;

        right: 10px !important;
        left: auto !important;
        bottom: 10px !important;

        max-width: 210px !important;

        margin: 0 !important;

        z-index: 5 !important;
    }
}