    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: Arial, sans-serif;
        overflow-x: hidden;
    }

    header {
        position: fixed;
        top: 0;
        width: 100%;
        background: #000;
        color: white;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
    }

    header .logo {
        font-weight: bold;
        display: flex;
        align-items: center;
    }

    .contact-info {
        display: flex;
        gap: 1rem;
        align-items: center;
        font-size: 0.9rem;
    }

    .contact-info div {
        cursor: pointer;
    }

    .language-switch {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .language-switch img {
        width: 20px;
        vertical-align: middle;
    }

    .language-switch select {
        background: none;
        border: none;
        color: #fff;
    }

    .language-switch option {
        background: #000;
        color: #fff;
    }

    .hero {
        position: relative;
        margin-top: 0px;
        background: url('../IMG/fondo-naranja.png') no-repeat bottom center/cover;
        text-align: center;
        padding: 2rem;
        padding-top: 100px;
    }

    .hero-text {
        position: relative;
        z-index: 2;
        color: #333;
        max-width: 800px;
        margin: 0 auto 2rem auto;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        font-weight: normal;
        margin-bottom: 1rem;
    }

    .hero-text h1 span {
        display: block;
    }

    .hero-text .dioses {
        color: #f28c28;
        font-weight: bold;
    }

    .hero-text .vehiculo {
        font-weight: bold;
        font-size: 2rem;
        color: #000;
    }

    .vehiculos {
        position: relative;
        width: 100%;
        max-width: 600px;
        height: auto;
        z-index: 5;
        margin-top: 20px;
    }

    .box-negro {
        background: black;
        color: white;
        padding: 2rem;
        margin-top: -60px;
        z-index: 4;
        position: relative;
        width: 90%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 12px;
        text-align: center;
        margin-bottom: -60px;
    }

    .box-negro span {
        color: orange;
    }

    .slider-section {
        background: url('../IMG/fondo-gris.png') no-repeat center center/cover;
        padding: calc(4rem + 60px) 2rem 4rem 2rem;
        position: relative;
        z-index: 1;
        aspect-ratio: 1.58 / 1;
    }

    .slider-for {
        position: relative;
        width: 95%;
        max-width: 900px;
        margin: 16% auto 3rem auto;
    }

    .slider-for::before {
        display: block;
        position: absolute;
        bottom: -2vw;
        left: -30vw;
        content: '';
        width: 70vw;
        height: 7vw;
        background: url('../IMG/Base.png');
        background-size: 100% 100%;
        aspect-ratio: 8.65/1;
    }

    .slider-for img {
        width: 100%;
        height: auto;
    }

    .slider-nav-wrapper {
        background: url(../IMG/fondo-blanco.png) no-repeat center top / 100%;
        padding: 20vw 2rem 5rem;
        position: relative;
        z-index: 1;
        margin-top: -18vw;
        text-align: right;
    }

    .slider-nav-wrapper h1,
    .slider-nav-wrapper h2 {
        width: 100%;
        max-width: 900px;
        line-height: 1em;
        margin: 0 auto 0.5rem auto;
    }

    .slider-nav-wrapper h1{
        font-weight: 600;
    }
    .slider-nav-wrapper h1 strong{
        font-size: 1.2em;
        font-weight: 900;
    }
    .slider-nav-wrapper h2{
        font-weight: 100;
    }

    .slider-nav {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 1rem;
        z-index: 1000;
    }

    .slider-nav img {
        width: 150px;
        height: auto;
        cursor: pointer;
        border-bottom: 4px solid transparent;
        transition: border 0.3s;
    }

    .slider-nav .slick-current img {
        border-bottom: 4px solid #000;
    }

    .fichas-section {
        background: #E0E4ED;
        background: linear-gradient(0deg, rgba(224, 228, 237, 1) 80%, rgba(255, 255, 255, 1) 100%);
        padding: 4rem 2rem;
        text-align: center;
    }

    .fichas-section h1 {
        font-size: 2rem;
        font-weight: 200;
    }

    .fichas-section h1 strong {
        font-weight: 900;
    }

    .fichas-section h1 span {
        color: #000;
    }

    .fichas-section h2 {
        color: #f28c28;
        margin-bottom: 2rem;
    }

    .fichas-slider {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .ficha {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ficha img {
        margin: 10px auto;
        max-width: 100%;
    }

    .btn-descarga {
        width: 120px;
        margin: auto;
        cursor: pointer;
    }


    /* Contenedor del botón */
    .slick-arrow-custom {
        background: none;
        border: none;
        position: absolute;
        top: 50%;
        transform: translateY(-70%);
        z-index: 10;
        cursor: pointer;
    }

    /* Imagen de la flecha */
    .arrow {
        width: 30px;
        height: auto;
        transition: transform 0.3s ease;
    }

    /* Flecha izquierda girada */
    .arrow-left {
        transform: rotate(180deg);
    }

    /* Posiciones */
    .slick-prev {
        left: -50px;
        /* ajusta según tu layout */
    }

    .slick-next {
        right: -50px;
    }

    .slick-next:before,
    .slick-prev:before {
        content: '';
        background: none;
    }

    .ficha-banner-section {
        padding: 5rem 0rem 0rem 0rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .ficha-banner-section .content-wrapper {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .ficha-banner-section .top-text {
        font-size: 2.5rem;
        font-weight: 100;
        margin-bottom: 1rem;
        color: #222;
        line-height: 0.8em;
    }

    .ficha-banner-section .top-text strong {
        font-weight: 800;
    }

    .ficha-banner-section .top-text span {
        font-size: 1.2rem;
    }

    .ficha-banner-section .bottom-text {
    font-size: 1.5rem;
    color: #121d49;
    font-weight: 600;
    text-transform: uppercase;
    }

    .ficha-banner-section .bottom-text span {
        font-size: 1rem;
        color: #868686;
        font-weight: 100;
    }

    .ficha-banner-section .bottom-text span strong {
        color: #608503;
        font-weight: 100;
    }

    .ficha-banner-section .image-wrapper {
        margin-top: -26%;
        display: flex;
        justify-content: center;

    }

    .ficha-banner-section .image-wrapper img {
        width: 100%;
        aspect-ratio: 1.26 / 1;
        object-fit: contain;
        z-index: -1;
    }

    .ubicacion-section {
        background-color: #000;
        color: #fff;
        text-align: center;
        padding: 4rem 2rem 0;
        position: relative;
    }

    .ubicacion-section .titulo {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }

    .ubicacion-section .subtitulo {
        color: #ff5722;
        font-weight: bold;
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .ubicacion-section .direccion {
        font-size: 1rem;
        margin-bottom: 3rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .mapa-wrapper img {
        width: 95%;
        max-width: 700px;
        height: auto;
        margin: 0 auto;
        display: block;
        z-index: 1;
        margin-bottom: -20%;
        position: relative;
    }

    .edificio-wrapper {
        width: 95%;
        max-width: 900px;
        position: relative;
        margin: auto;
        z-index: 2;
        display: flex;
        justify-content: center;
    }

    .edificio-wrapper img {
        width: 100%;
        max-width: 1000px;
        height: auto;
        margin-bottom: -17%;
        z-index: 2;
    }

    .formulario-prueba {
        padding: 4rem 2rem;
        position: relative;
        color: #fff;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        min-height: 600px;
    }

    .formulario-prueba .form-wrapper {
        background: #131313;
        width: 100%;
        max-width: 900px;
        /* opcional para contraste */
        padding: 0;
        border-radius: 1rem;
        margin: auto;
        margin-top: 10rem;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .formulario-prueba .form-wrapper img {
        width: 40%;
    }

    .formulario-prueba .form-wrapper form {
        padding: 40px;
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 20%);
        height: 100%;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .formulario-prueba form h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: normal;
    }

    .formulario-prueba form h3 span {
        color: #ff5722;
        font-weight: bold;
    }

    .formulario-prueba input[type="text"],
    .formulario-prueba input[type="email"],
    .formulario-prueba input[type="tel"] {
        width: 100%;
        padding: 0.75rem;
        margin-bottom: 1rem;
        border: none;
        border-radius: 0.5rem;
    }

    .checkbox {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        display: block;
        color: #ccc;
    }

    .formulario-prueba button {
        border: none;
        background: none;
        padding: 0;
        margin: auto;
        cursor: pointer;
    }

    .formulario-prueba button img {
        max-width: 90%;
        margin: auto;
    }

    .cta-whatsapp {
        background: url('../IMG/cta-fondo.png') no-repeat center / 100% 100%;
        color: white;
        text-align: center;
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-whatsapp p {
        font-size: 1.2rem;
        margin: 0;
        line-height: 1em;
        vertical-align: middle;
    }

    .cta-whatsapp strong {
        font-weight: bold;
    }

    .cta-whatsapp span {
        color: #ff0044;
    }

    .cta-whatsapp .boton-whatsapp img {
        max-height: 45px;
        margin-left: 20px;
        vertical-align: middle;
    }

    .footer {
        background: #0a0a0a;
        color: white;
        padding: 3rem 2rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        align-items: flex-start;
    }

    .footer-logo img {
        max-height: 50px;
    }

    .footer-contacto h4 {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .footer-contacto p {
        margin: 0.3rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-social a img {
        height: 24px;
        margin-right: 0.5rem;
    }

    .footer-bottom {
        border-top: 1px solid #666;
        margin-top: 2rem;
        padding-top: 1rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footer-bottom .aviso {
        color: #ccc;
        text-decoration: underline;
        font-size: 0.85rem;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        header {
            flex-direction: column;
            align-items: flex-start;
        }

        .contact-info {
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
            padding-top: 0.5rem;
        }

        .contact-info div {
            margin: auto;
        }

        .hero {
            flex-direction: column;
            height: auto;
            padding-top: 15rem;
        }

        .vehiculos {
            margin-top: 0px;
        }

        .box-negro {
            margin-top: -60px;
            margin-bottom: -60px;
        }

        .slider-nav {
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .slider-nav-wrapper {
            padding: 8rem 2rem 5rem;
            margin-top: -8rem;
        }

        .slider-nav-wrapper {
            background-image:
                url('../IMG/fondo-blanco.png'),
                linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%);
            background-repeat: no-repeat;
            background-size: 100%;
            background-position: center top;
        }

        .slick-prev {
            left: -10px;
        }

        .slick-next {
            right: -10px;
        }

            .formulario-prueba .form-wrapper {
        background: #131313;
        width: 100%;
        max-width: 900px;
        /* opcional para contraste */
        padding: 0;
        border-radius: 1rem;
        margin: auto;
        margin-top: 10rem;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .formulario-prueba .form-wrapper img {
        width: 90%;
        margin: auto;
    }

    .formulario-prueba .form-wrapper form {
        padding: 40px;
        background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 20%);
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .footer-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-social {
            margin-top: 1rem;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
        }
    }