@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap");

@font-face {
    font-family: "Avenir-Light";
    src:
        url("../fonts/Avenir-Light.woff") format("woff"),
        url("../fonts/Avenir-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir-Heavy";
    src:
        url("../fonts/Avenir-Heavy.woff") format("woff"),
        url("../fonts/Avenir-Heavy.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Avenir-Light", sans-serif;
}

h1,
h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3,
h4,
h5,
h6 {
    font-family: "Avenir-Heavy", sans-serif;
}

strong,
b {
    font-family: "Avenir-Heavy", sans-serif;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* =========================
HEADER
========================= */

.main-header {
    width: 100%;
    background: #000;
    position: relative;
    z-index: 1000;
}

/* ==================================================
   NOSOTROS
================================================== */

#nosotrosHero,
.nosotros-band,
.nosotros-map {
    width: 100%;
}

/* Hero */

#nosotrosHero {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: #111;
}

.nosotros-hero__media {
    display: block;
    width: 100%;
    height: 100%;
}

.nosotros-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

#nosotrosHero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.38) 45%,
        rgba(0, 0, 0, 0.10) 100%
    );
}

.nosotros-hero__container {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.nosotros-hero__content {
    max-width: 620px;
    color: #fff;
}

.nosotros-hero__content > span {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.nosotros-hero__content h1 {
    margin: 0 0 18px;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;
    font-weight: 700;
    color: #fff;
}

.nosotros-hero__content p {
    max-width: 560px;
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

/* Franjas */

.nosotros-band {
    padding: 50px 0;
    background: #fff;
}

.nosotros-band:nth-of-type(even) {
    background: #f5f5f5;
}

.nosotros-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 50px;
    align-items: center;
}

.nosotros-band--reverse .nosotros-band__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.nosotros-band--reverse .nosotros-band__image {
    order: 2;
    margin-left: auto;
}

.nosotros-band--reverse .nosotros-band__content {
    order: 1;
}

.nosotros-band__image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.nosotros-band__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nosotros-band__content {
    max-width: 560px;
}

.nosotros-band__content h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 700;
    color: #111;
}

.nosotros-band__text {
    font-size: 17px;
    line-height: 1.65;
    color: #444;
}

.nosotros-band__text p {
    margin-top: 0;
    margin-bottom: 18px;
}

.nosotros-band__text p:last-child {
    margin-bottom: 0;
}

@media (hover: hover) {
    .nosotros-band__image img {
        transition: transform 0.5s ease;
    }

    .nosotros-band:hover .nosotros-band__image img {
        transform: scale(1.02);
    }
}

/* Mapa */

.nosotros-map {
    background: #111;
}

.nosotros-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Tablet */

@media (max-width: 991px) {
    #nosotrosHero {
        height: 420px;
    }

    .nosotros-band {
        padding: 50px 0;
    }

    .nosotros-band__grid,
    .nosotros-band--reverse .nosotros-band__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nosotros-band--reverse .nosotros-band__image,
    .nosotros-band--reverse .nosotros-band__content {
        order: initial;
    }

    .nosotros-band__content {
        max-width: 720px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    #nosotrosHero {
        height: 500px;
    }

    .nosotros-band__image,
    .nosotros-band--reverse .nosotros-band__image {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .nosotros-hero__media img {
        min-height: 0;
    }

    #nosotrosHero::after {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.38) 48%,
            rgba(0, 0, 0, 0.08) 100%
        );
    }

    .nosotros-hero__container {
        align-items: flex-start;
        padding-top: 45px;
        padding-bottom: 0;
    }

    .nosotros-hero__content {
        max-width: 100%;
    }

    .nosotros-hero__content h1 {
        font-size: 46px;
    }

    .nosotros-hero__content p {
        font-size: 16px;
    }

    .nosotros-band {
        padding: 40px 0;
    }

    .nosotros-band__grid,
    .nosotros-band--reverse .nosotros-band__grid {
        gap: 30px;
    }

    .nosotros-band__content h2 {
        font-size: 36px;
    }

    .nosotros-band__text {
        font-size: 16px;
    }

    .nosotros-map iframe {
        height: 360px;
    }
}

.main-header__inner {
    width: 100%;
    max-width: 1120px;
    min-height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 16px;
}

/* Logo */

.main-header__brand {
    flex-shrink: 0;
}

.main-header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header__logo img {
    display: block;
    width: 150px;
    height: auto;
}

/* Navegacion */

.main-header__nav {
    display: flex;
    flex: 1;
    align-items: center;
}

.main-header__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-header__item {
    position: relative;
}

.main-header__link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.main-header__link:hover {
    opacity: 0.75;
}

.main-header__menu > .menu-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-header__menu > .menu-item > a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.main-header__menu > .menu-item > a:hover {
    opacity: 0.75;
}

.main-header__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    transform: translateY(-1px);
}

/* Submenu */

.main-header__submenu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 180px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.main-header__submenu li {
    margin: 0;
}

.main-header__submenu a {
    display: block;
    padding: 10px 18px;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.main-header__submenu a:hover {
    background: #f2f2f2;
}

/* Hover desktop */

.main-header__item--dropdown:hover .main-header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Acciones */

.main-header__actions {
    margin-left: auto;
    flex-shrink: 0;
}

.main-header__test-drive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    min-height: 40px;
    padding: 0 20px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.main-header__test-drive:hover {
    background: #e9e9e9;
    color: #000;
}

/* Boton mobile */

.main-header__toggle {
    display: none;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.main-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

/* Mega menu de modelos */

.main-header__item--models {
    position: static;
}

.main-header__models-trigger .main-header__arrow {
    transition: transform 0.2s ease;
}

.main-header__item--models.is-open .main-header__models-trigger .main-header__arrow {
    transform: translateY(-1px) rotate(180deg);
}

.models-mega-menu {
    position: absolute;
    z-index: 1100;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.main-header__item--models.is-open .models-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.models-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    padding: 44px 0 48px;
}

.models-mega-menu__item {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.models-mega-menu__image {
    display: flex;
    width: 100%;
    height: 200px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    text-decoration: none;
}

.models-mega-menu__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.models-mega-menu__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
}

.models-mega-menu__type {
    margin-bottom: 8px;
    color: #555;
    font-size: 13px;
    line-height: 1.4;
}

.models-mega-menu__title {
    margin: 0 0 22px;
    color: #111;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
}

.models-mega-menu__title a {
    color: inherit;
    text-decoration: none;
}

.models-mega-menu__title a:hover,
.models-mega-menu__link:hover {
    color: #555;
}

.models-mega-menu__link {
    margin-top: auto;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.models-mega-menu__quote {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 0 24px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.models-mega-menu__quote:hover {
    background: #fff;
    color: #111;
}

@media (min-width: 768px) and (max-width: 991px) {
    .models-mega-menu__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px;
    }
}

@media (max-width: 767px) {
    body.has-mobile-menu-open {
        overflow: hidden;
    }

    .main-header__inner {
        min-height: 72px;
        gap: 0;
    }

    .main-header__logo img {
        width: 130px;
    }

    .main-header__toggle {
        display: block;
        margin-left: auto;
    }

    .main-header.is-mobile-open .main-header__toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .main-header.is-mobile-open .main-header__toggle span:nth-child(2) {
        opacity: 0;
    }

    .main-header.is-mobile-open .main-header__toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        display: block;
        width: 100%;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        background: #000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .main-header.is-mobile-open .main-header__nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-header__menu {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-header__menu > .main-header__item,
    .main-header__menu > .menu-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .main-header__models-trigger,
    .main-header__menu > .menu-item > a {
        display: flex;
        min-height: 58px;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    .main-header__actions {
        margin: 0;
        padding: 20px;
    }

    .main-header__test-drive {
        width: 100%;
    }

    .models-mega-menu {
        position: static;
        width: 100%;
        max-height: 0;
        overflow-y: auto;
        box-shadow: none;
        transform: translateY(-8px);
        transition:
            max-height 0.3s ease,
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .main-header__item--models.is-open .models-mega-menu {
        max-height: calc(100vh - 130px);
        transform: translateY(0);
    }

    .models-mega-menu__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
        padding: 32px 0 40px;
    }

    .models-mega-menu__image {
        height: 180px;
    }
}

/* ==================================================
   HOME HERO
================================================== */

#inicio .home-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

#inicio .home-hero__slides,
#inicio .home-hero__slide,
#inicio .home-hero__media {
    width: 100%;
}

#inicio .home-hero__slide {
    position: relative;
}

#inicio picture.home-hero__media,
#inicio .home-hero__media img,
#inicio video.home-hero__media {
    display: block;
}

#inicio .home-hero__media img,
#inicio video.home-hero__media {
    width: 100%;
    object-fit: cover;
}

/* Controles */

#inicio .home-hero__controls {
    position: absolute;
    left: 50%;
    bottom: 42px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transform: translateX(-50%);
}

#inicio .home-hero__control,
#inicio .home-hero__prev,
#inicio .home-hero__next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    cursor: pointer;
    font-size: 0;
    line-height: 1;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

#inicio .home-hero__control--previous::before,
#inicio .home-hero__prev::before {
    content: "\2190";
    font-size: 17px;
}

#inicio .home-hero__control--next::before,
#inicio .home-hero__next::before {
    content: "\2192";
    font-size: 17px;
}

#inicio .home-hero__control:hover,
#inicio .home-hero__prev:hover,
#inicio .home-hero__next:hover {
    background: #fff;
    transform: scale(1.06);
}

/* Paginación preparada para el carrusel */

#inicio .home-hero__pagination {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

#inicio .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    background: #fff;
    opacity: 0.45;
}

#inicio .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.15);
}

/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 768px) {
    #inicio .home-hero__media img,
    #inicio video.home-hero__media {
        height: min(780px, calc(100vh - 86px));
        object-fit: cover;
    }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {
    #inicio .home-hero__media img,
    #inicio video.home-hero__media {
        width: 100%;
        height: max(520px, calc(100vh - 72px));
        min-height: 520px;
        object-fit: cover;
    }

    #inicio .home-hero__controls {
        bottom: 20px;
        gap: 10px;
        padding: 7px 10px;
    }

    #inicio .home-hero__control,
    #inicio .home-hero__prev,
    #inicio .home-hero__next {
        width: 34px;
        height: 34px;
    }

    #inicio .home-hero__control--previous::before,
    #inicio .home-hero__control--next::before,
    #inicio .home-hero__prev::before,
    #inicio .home-hero__next::before {
        font-size: 15px;
    }
}

/* ==================================================
   POSTVENTA
================================================== */

#postventa {
    background: #fff;
    color: #1b1b1b;
}

#postventa img {
    display: block;
    width: 100%;
    height: auto;
}

#postventa .section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #555;
}

#postventa h1,
#postventa h2,
#postventa h3,
#postventa p {
    margin-top: 0;
}

#postventa h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 700;
}

#postventa p {
    font-size: 17px;
    line-height: 1.65;
    color: #444;
}

/* Hero */

#postventa .postventa-hero {
    position: relative;
    overflow: hidden;
}

#postventa .postventa-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.38) 45%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

#postventa .postventa-hero__media {
    display: block;
    width: 100%;
}

#postventa .postventa-hero__media img {
    display: block;
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

#postventa .postventa-hero__container {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

#postventa .postventa-hero__content {
    width: min(520px, 100%);
    color: #fff;
}

#postventa .postventa-hero__content h1,
#postventa .postventa-hero__content p,
#postventa .postventa-hero__content span {
    color: #fff;
}

#postventa .postventa-hero__content span {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

#postventa .postventa-hero__content h1 {
    margin-bottom: 18px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.95;
    font-weight: 700;
}

#postventa .postventa-hero__content p {
    max-width: 500px;
    margin-bottom: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.55;
}

/* Introduccion */

#postventa .postventa-intro {
    padding: 90px 0;
    text-align: center;
}

#postventa .postventa-intro__content {
    max-width: 820px;
    margin: 0 auto;
}

#postventa .postventa-intro__content p {
    max-width: 760px;
    margin: 0 auto;
}

/* Servicio autorizado */

#postventa .postventa-service {
    padding: 90px 0;
    background: #f5f5f5;
}

#postventa .postventa-service__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}

#postventa .postventa-service__content {
    max-width: 520px;
}

#postventa .postventa-service__content p:last-child {
    margin-bottom: 0;
}

#postventa .postventa-service__image {
    overflow: hidden;
}

#postventa .postventa-service__image img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* Mantenimiento */

#postventa .postventa-maintenance {
    padding: 90px 0;
}

#postventa .postventa-maintenance__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 70px;
    align-items: center;
}

#postventa .postventa-maintenance__image img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

#postventa .postventa-maintenance__content {
    max-width: 520px;
}

#postventa .postventa-maintenance__content h2 {
    margin-bottom: 10px;
    font-size: clamp(42px, 5vw, 64px);
}

#postventa .postventa-maintenance__lead {
    margin-bottom: 24px;
    font-size: 20px !important;
    font-weight: 700;
    color: #111 !important;
}

/* Beneficios */

#postventa .postventa-benefits {
    padding: 90px 0;
    background: #1b1b1b;
    color: #fff;
}

#postventa .postventa-benefits .section-eyebrow,
#postventa .postventa-benefits h2,
#postventa .postventa-benefits h3,
#postventa .postventa-benefits p {
    color: #fff;
}

#postventa .postventa-benefits__heading {
    max-width: 780px;
    margin-bottom: 50px;
}

#postventa .postventa-benefits__heading p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.75);
}

#postventa .postventa-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

#postventa .postventa-benefit {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

#postventa .postventa-benefit i {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 1;
}

#postventa .postventa-benefit h3 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.2;
}

#postventa .postventa-benefit p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

/* CTA final */

#postventa .postventa-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
}

#postventa .postventa-cta__media {
    position: absolute;
    inset: 0;
}

#postventa .postventa-cta__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.48) 45%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

#postventa .postventa-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#postventa .postventa-cta__container {
    position: relative;
    z-index: 2;
    min-height: 470px;
    display: flex;
    align-items: center;
}

#postventa .postventa-cta__content {
    max-width: 580px;
}

#postventa .postventa-cta .section-eyebrow,
#postventa .postventa-cta h2,
#postventa .postventa-cta p {
    color: #fff;
}

#postventa .postventa-cta__content p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.85);
}

#postventa .postventa-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 12px;
    padding: 0 28px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#postventa .postventa-cta__button:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 991px) {
    #postventa .postventa-service__grid,
    #postventa .postventa-maintenance__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #postventa .postventa-service__content,
    #postventa .postventa-maintenance__content {
        max-width: 700px;
    }

    #postventa .postventa-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    #postventa .postventa-hero::after {
        background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.35) 55%,
            rgba(0, 0, 0, 0.12) 100%
        );
    }

    #postventa .postventa-hero__media img {
        min-height: 560px;
    }

    #postventa .postventa-hero__container {
        align-items: flex-center;
        padding-bottom: 45px;
    }

    #postventa .postventa-hero__content {
        max-width: 100%;
    }

    #postventa .postventa-hero__content h1 {
        font-size: 48px;
    }

    #postventa .postventa-hero__content p {
        font-size: 16px;
    }

    #postventa .postventa-intro,
    #postventa .postventa-service,
    #postventa .postventa-maintenance,
    #postventa .postventa-benefits {
        padding: 65px 0;
    }

    #postventa .postventa-service__grid,
    #postventa .postventa-maintenance__grid {
        gap: 30px;
    }

    #postventa .postventa-maintenance__image {
        order: 2;
    }

    #postventa .postventa-maintenance__content {
        order: 1;
    }

    #postventa .postventa-benefits__grid {
        grid-template-columns: 1fr;
    }

    #postventa .postventa-benefit {
        padding: 28px;
    }

    #postventa .postventa-cta__container {
        min-height: 520px;
        align-items: flex-end;
        padding-bottom: 50px;
    }

    #postventa .postventa-cta__media::after {
        background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.42) 55%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }
}

@media (max-width: 575px) {
    #postventa h2 {
        font-size: 34px;
    }

    #postventa p {
        font-size: 16px;
    }

    #postventa .postventa-intro,
    #postventa .postventa-service,
    #postventa .postventa-maintenance,
    #postventa .postventa-benefits {
        padding: 55px 0;
    }

    #postventa .postventa-maintenance__content h2 {
        font-size: 42px;
    }

    #postventa .postventa-cta__button {
        width: 100%;
    }
}

/* =========================
MODELO - HERO
========================= */

#modeloHero {
    position: relative;
    overflow: hidden;
    background: #111;
    color: #fff;
}

#modeloHero .modelo-hero__picture,
#modeloHero .modelo-hero__image {
    display: block;
    width: 100%;
}

#modeloHero .modelo-hero__image {
    height: auto;
}

#modeloHero .modelo-hero__container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    display: flex;
    width: 100%;
    align-items: flex-end;
    transform: translateX(-50%);
}

#modeloHero .modelo-hero__content {
    max-width: 560px;
    padding-bottom: clamp(32px, 5vw, 76px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

#modeloHero .modelo-hero__eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

#modeloHero .modelo-hero__title {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 700;
    line-height: 1;
}

#modeloHero .modelo-hero__description {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.55;
}

#modeloHero .modelo-hero__description > :last-child {
    margin-bottom: 0;
}

#modeloHero .modelo-hero__quote {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    padding: 0 30px;
    background: #fff;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-shadow: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

#modeloHero .modelo-hero__quote:hover {
    background: #e9e9e9;
    color: #000;
}

@media (min-width: 768px) {
    #modeloHero .modelo-hero__content {
        transform: translateY(-80px);
    }
}

@media (max-width: 767px) {
    #modeloHero .modelo-hero__container {
        align-items: flex-start;
    }

    #modeloHero .modelo-hero__content {
        max-width: min(78%, 440px);
        padding-top: clamp(24px, 8vw, 48px);
        padding-bottom: 0;
    }

    #modeloHero .modelo-hero__eyebrow {
        margin-bottom: 8px;
        font-size: 12px;
    }

    #modeloHero .modelo-hero__title {
        margin-bottom: 12px;
        font-size: clamp(34px, 10vw, 48px);
    }

    #modeloHero .modelo-hero__description {
        font-size: 15px;
        line-height: 1.45;
    }

    #modeloHero .modelo-hero__quote {
        min-height: 44px;
        margin-top: 20px;
        padding: 0 26px;
    }
}

/* =========================
MODELO - HIGHLIGHTS
========================= */

#modeloHighlights {
    background: #1b1b1b;
    color: #fff;
    padding: 34px 0;
}

#modeloHighlights .modelo-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#modeloHighlights .modelo-highlight {
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.65);
}

#modeloHighlights .modelo-highlight:first-child {
    padding-left: 0;
}

#modeloHighlights .modelo-highlight:last-child {
    padding-right: 0;
    border-right: 0;
}

/* Header de cada bloque */

#modeloHighlights .modelo-highlight__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 16px;
}

#modeloHighlights .modelo-highlight__header h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

#modeloHighlights .modelo-highlight__header i {
    flex-shrink: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

/* Contenido */

#modeloHighlights .modelo-highlight__content {
    font-size: 16px;
    line-height: 1.55;
}

#modeloHighlights .modelo-highlight__content ul {
    margin: 0;
    padding-left: 18px;
}

#modeloHighlights .modelo-highlight__content li {
    margin-bottom: 2px;
}

#modeloHighlights .modelo-highlight__content li:last-child {
    margin-bottom: 0;
}

#modeloHighlights .modelo-highlight__content p:last-child {
    margin-bottom: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    #modeloHighlights .modelo-highlights {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    #modeloHighlights .modelo-highlight {
        padding: 0 25px;
    }

    #modeloHighlights .modelo-highlight:nth-child(2) {
        border-right: 0;
    }

    #modeloHighlights .modelo-highlight:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    #modeloHighlights {
        padding: 30px 0;
    }

    #modeloHighlights .modelo-highlights {
        grid-template-columns: 1fr;
    }

    #modeloHighlights .modelo-highlight,
    #modeloHighlights .modelo-highlight:first-child,
    #modeloHighlights .modelo-highlight:last-child {
        padding: 0 0 25px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    }

    #modeloHighlights .modelo-highlight:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

/* =========================
MODELO - INTRO
========================= */

#modeloIntro {
    background: #fff;
    padding: 42px 0;
}

#modeloIntro .modelo-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 70px;
    align-items: center;
}

/* Visual */

#modeloIntro .modelo-intro__visual {
    min-width: 0;
}

#modeloIntro .modelo-intro__image {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 0.25s ease;
}

#modeloIntro .modelo-intro__image.is-changing {
    opacity: 0.15;
}

/* Colores */

#modeloIntro .modelo-intro__colors {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 14px;
}

#modeloIntro .modelo-intro__colors > strong {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

#modeloIntro .modelo-intro__swatches {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

#modeloIntro .modelo-color {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #aaa;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

#modeloIntro .modelo-color:hover {
    transform: scale(1.06);
}

#modeloIntro .modelo-color.is-active {
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 4px #111;
}

/* Contenido */

#modeloIntro .modelo-intro__content {
    min-width: 0;
}

#modeloIntro .modelo-intro__content h1 {
    margin: 0 0 12px;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.05;
}

#modeloIntro .modelo-intro__description {
    max-width: 540px;
    font-size: 17px;
    line-height: 1.55;
}

#modeloIntro .modelo-intro__description p:last-child {
    margin-bottom: 0;
}

/* Botones */

#modeloIntro .modelo-intro__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

#modeloIntro .modelo-intro__actions a {
    min-height: 42px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

#modeloIntro .modelo-intro__quote {
    background: #1b1b1b;
    color: #fff;
    border: 1px solid #1b1b1b;
}

#modeloIntro .modelo-intro__quote:hover {
    background: #000;
    color: #fff;
}

#modeloIntro .modelo-intro__sheet {
    background: #fff;
    color: #111;
    border: 1px solid #111;
}

#modeloIntro .modelo-intro__sheet:hover {
    background: #111;
    color: #fff;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    #modeloIntro .modelo-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    #modeloIntro .modelo-intro__content {
        max-width: 700px;
    }
}

@media (max-width: 575px) {
    #modeloIntro {
        padding: 28px 0;
    }

    #modeloIntro .modelo-intro__colors {
        align-items: flex-start;
        gap: 15px;
    }

    #modeloIntro .modelo-intro__colors > strong {
        font-size: 24px;
    }

    #modeloIntro .modelo-color {
        width: 36px;
        height: 36px;
    }

    #modeloIntro .modelo-intro__actions {
        flex-direction: column;
        align-items: stretch;
    }

    #modeloIntro .modelo-intro__actions a {
        width: 100%;
    }
}

/* =========================
MODELO - CYBERSTER VIDEO
========================= */

.cyberster-video {
    width: 100%;
    margin: 22px 0 64px;
    overflow: hidden;
    background: #000;
}

.cyberster-video__media {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .cyberster-video {
        width: 100%;
        aspect-ratio: 3 / 4;
        margin: 0 0 28px;
        overflow: hidden;
        background: #000;
    }

    .cyberster-video__media {
        display: block;
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
}

/* =========================
MODELO - VERSIONES
========================= */

#modeloVersiones {
    padding: 64px 0;
    overflow: hidden;
    background: #1b1b1b;
    color: #fff;
}

#modeloVersiones .modelo-versiones__heading {
    margin-bottom: 32px;
}

#modeloVersiones .modelo-versiones__model {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

#modeloVersiones .modelo-versiones__heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.05;
}

#modeloVersiones .modelo-versiones__grid {
    overflow: visible;
}

#modeloVersiones .swiper-wrapper {
    align-items: stretch;
}

#modeloVersiones .modelo-version {
    display: flex;
    height: auto;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    color: #111;
}

#modeloVersiones .modelo-version__image {
    display: flex;
    aspect-ratio: 16 / 10;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f3f3f3;
}

#modeloVersiones .modelo-version__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#modeloVersiones .modelo-version__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

#modeloVersiones .modelo-version__content h3 {
    margin: 0 0 24px;
    color: #111;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

#modeloVersiones .modelo-version__actions {
    margin-top: auto;
}

#modeloVersiones .modelo-version__quote {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 1px solid #1b1b1b;
    background: #1b1b1b;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

#modeloVersiones .modelo-version__quote:hover {
    background: #000;
    color: #fff;
}

#modeloVersiones .swiper-button-prev,
#modeloVersiones .swiper-button-next {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

#modeloVersiones .swiper-button-prev::after,
#modeloVersiones .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

#modeloVersiones .swiper-button-disabled {
    opacity: 0.35;
}

#modeloVersiones .swiper-button-lock {
    display: none;
}

@media (max-width: 575px) {
    #modeloVersiones {
        padding: 44px 0;
    }

    #modeloVersiones .modelo-versiones__heading {
        margin-bottom: 24px;
    }

    #modeloVersiones .modelo-version__content {
        padding: 20px;
    }

    #modeloVersiones .swiper-button-prev,
    #modeloVersiones .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}

/* =========================
MODELO - DISEÑO
========================= */

#modeloDiseno {
    padding: 80px 0;
    background: #fff;
    color: #111;
}

#modeloDiseno .modelo-diseno__tabs {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 34px;
    margin-bottom: 52px;
    border-bottom: 1px solid #c8c8c8;
}

#modeloDiseno .modelo-diseno__tab {
    flex: 0 0 auto;
    margin-bottom: -1px;
    padding: 0 0 14px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #777;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

#modeloDiseno .modelo-diseno__tab.is-active {
    border-bottom-color: #111;
    color: #111;
}

#modeloDiseno .modelo-diseno__panel[hidden] {
    display: none;
}

#modeloDiseno .modelo-diseno__layout {
    display: grid;
    grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
    gap: 76px;
    align-items: center;
}

#modeloDiseno .modelo-diseno__visual,
#modeloDiseno .modelo-diseno__content {
    min-width: 0;
}

#modeloDiseno .modelo-diseno__slider {
    width: 100%;
}

#modeloDiseno .modelo-diseno__slider .swiper-slide {
    overflow: hidden;
}

#modeloDiseno .modelo-diseno__slider img {
    display: block;
    width: 100%;
    height: auto;
}

#modeloDiseno .modelo-diseno__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 20px;
}

#modeloDiseno .modelo-diseno__pagination {
    position: static;
    display: flex;
    width: auto;
    align-items: center;
    gap: 8px;
}

#modeloDiseno .modelo-diseno__pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0;
    background: #111;
}

#modeloDiseno .modelo-diseno__arrows {
    display: flex;
    gap: 10px;
}

#modeloDiseno .modelo-diseno__prev,
#modeloDiseno .modelo-diseno__next {
    display: inline-flex;
    width: 48px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #1b1b1b;
    border-radius: 0;
    background: #1b1b1b;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#modeloDiseno .modelo-diseno__prev:hover,
#modeloDiseno .modelo-diseno__next:hover {
    background: #000;
}

#modeloDiseno .modelo-diseno__prev::before {
    content: "\2190";
}

#modeloDiseno .modelo-diseno__next::before {
    content: "\2192";
}

#modeloDiseno .swiper-button-disabled,
#modeloDiseno .swiper-button-lock,
#modeloDiseno .swiper-pagination-lock {
    display: none;
}

#modeloDiseno .modelo-diseno__label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#modeloDiseno .modelo-diseno__content h2 {
    margin: 0 0 22px;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.08;
}

#modeloDiseno .modelo-diseno__text {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.65;
}

#modeloDiseno .modelo-diseno__text > :last-child {
    margin-bottom: 0;
}

#modeloDiseno .modelo-diseno__quote {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 0 26px;
    border: 1px solid #1b1b1b;
    background: #1b1b1b;
    color: #fff;
    text-decoration: none;
}

#modeloDiseno .modelo-diseno__quote:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 991px) {
    #modeloDiseno {
        padding: 60px 0;
    }

    #modeloDiseno .modelo-diseno__layout {
        gap: 38px;
    }

    #modeloDiseno .modelo-diseno__tabs {
        margin-bottom: 38px;
    }

    #modeloDiseno .modelo-diseno__content h2 {
        font-size: clamp(32px, 4vw, 42px);
    }
}

@media (max-width: 767px) {
    #modeloDiseno .modelo-diseno__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 575px) {
    #modeloDiseno {
        padding: 44px 0;
    }

    #modeloDiseno .modelo-diseno__tabs {
        gap: 18px;
        margin-bottom: 30px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
    }

    #modeloDiseno .modelo-diseno__tab {
        flex: 0 0 auto;
        font-size: 16px;
    }

    #modeloDiseno .modelo-diseno__layout {
        gap: 30px;
    }

    #modeloDiseno .modelo-diseno__content h2 {
        font-size: 32px;
    }

    #modeloDiseno .modelo-diseno__quote {
        width: auto;
    }
}

/* =========================
FOOTER
========================= */

#mainFooter {
    padding: 68px 0 66px;
    background: #1b1b1b;
    color: #fff;
}

#mainFooter .main-footer__brand {
    margin-bottom: 48px;
    text-align: center;
}

#mainFooter .main-footer__brand a {
    display: inline-block;
}

#mainFooter .main-footer__brand img {
    display: block;
    width: 150px;
    height: auto;
}

#mainFooter .main-footer__grid {
    display: grid;
    width: 100%;
    max-width: 960px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px;
    margin: 0 auto;
}

#mainFooter .main-footer__column {
    min-width: 0;
}

#mainFooter .main-footer__title,
#mainFooter .main-footer__widget-title {
    margin: 0 0 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

#mainFooter .main-footer__list,
#mainFooter .main-footer__widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#mainFooter .main-footer__list + .main-footer__list,
#mainFooter .main-footer__menu + .main-footer__list {
    margin-top: 11px;
}

#mainFooter .main-footer__list li,
#mainFooter .main-footer__widget li {
    margin: 0 0 11px;
    padding: 0;
}

#mainFooter .main-footer__list li:last-child,
#mainFooter .main-footer__widget li:last-child {
    margin-bottom: 0;
}

#mainFooter .main-footer__column a,
#mainFooter .main-footer__widget a {
    color: #f1f1f1;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

#mainFooter .main-footer__column a:hover,
#mainFooter .main-footer__widget a:hover {
    color: #fff;
    opacity: 0.65;
}

#mainFooter .main-footer__widget {
    margin: 0;
    padding: 0;
}

#mainFooter .main-footer__widget + .main-footer__widget {
    margin-top: 24px;
}

#mainFooter .main-footer__widget p {
    margin: 0 0 12px;
    color: #f1f1f1;
    font-size: 15px;
    line-height: 1.6;
}

#mainFooter .main-footer__widget p:last-child,
#mainFooter .main-footer__widget > :last-child {
    margin-bottom: 0;
}

#mainFooter .main-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

#mainFooter .main-footer__legal a {
    color: #f1f1f1;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

#mainFooter .main-footer__legal a:hover {
    color: #fff;
    opacity: 0.65;
}

#mainFooter .main-footer__social {
    display: flex;
    align-items: center;
    gap: 14px;
}

#mainFooter .main-footer__social span {
    margin-right: 2px;
    color: #f1f1f1;
    font-size: 14px;
    line-height: 1.5;
}

#mainFooter .main-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

#mainFooter .main-footer__social a:hover {
    color: #fff;
    opacity: 0.65;
}

/* ==================================================
   HOME - DESTACADOS
================================================== */

.home-featured {
    width: 100%;
    padding: 90px max(24px, calc((100% - 1320px) / 2));
    background: #fff;
}

.home-featured__header {
    margin-bottom: 36px;
}

.home-featured__eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
}

.home-featured__title {
    max-width: 900px;
    margin: 0;
    color: #111;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 700;
    line-height: 1.02;
}

/* Grid */

.home-featured__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* Tarjeta */

.home-featured__card {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    background: #111;
}

.home-featured__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-featured__card::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.04) 25%,
        rgba(0, 0, 0, 0.22) 55%,
        rgba(0, 0, 0, 0.82) 100%
    );
    content: "";
    pointer-events: none;
}

/* Contenido */

.home-featured__content {
    position: absolute;
    right: 32px;
    bottom: 28px;
    left: 32px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.home-featured__text {
    max-width: 68%;
    color: #fff;
}

.home-featured__text,
.home-featured__text p {
    color: #fff;
}

.home-featured__text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
}

.home-featured__text > :last-child {
    margin-bottom: 0;
}

/* Botón */

.home-featured__link {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    background: #fff;
    color: #111;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-featured__link:hover {
    background: #111;
    color: #fff;
}

@media (hover: hover) {
    .home-featured__card:hover .home-featured__image {
        transform: scale(1.025);
    }
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {
    .home-featured {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .home-featured__card {
        min-height: 360px;
    }

    .home-featured__content {
        right: 24px;
        bottom: 24px;
        left: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .home-featured__text {
        max-width: 100%;
    }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {
    .home-featured {
        padding: 55px 20px;
    }

    .home-featured__header {
        margin-bottom: 28px;
    }

    .home-featured__title {
        font-size: 36px;
    }

    .home-featured__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-featured__card {
        min-height: 420px;
    }

    .home-featured__content {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .home-featured__text p {
        font-size: 16px;
    }
}

/* =========================
HOME TEST DRIVE
========================= */

.home-testdrive {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    color: #fff;
}

.home-testdrive::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
    content: "";
    pointer-events: none;
}

.home-testdrive__media {
    display: block;
    width: 100%;
}

.home-testdrive__media img {
    display: block;
    width: 100%;
    height: auto;
}

.home-testdrive__container {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.home-testdrive__content {
    width: 50%;
    max-width: 620px;
    text-align: left;
}

.home-testdrive__eyebrow {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
}

.home-testdrive__content h2 {
    max-width: 100%;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 700;
    line-height: 0.98;
}

.home-testdrive__content p,
.home-testdrive__content span {
    color: #fff;
}

.home-testdrive__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    background: #fff;
    color: #111;
    text-decoration: none;
}

/* =========================
MOBILE
========================= */

@media (max-width: 767px) {
    .home-testdrive {
        min-height: 500px;
        aspect-ratio: 4 / 5;
    }

    .home-testdrive::after {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.55) 28%,
            rgba(0, 0, 0, 0.08) 58%,
            rgba(0, 0, 0, 0) 100%
        );
    }

    .home-testdrive__media,
    .home-testdrive__media img {
        width: 100%;
        height: 100%;
    }

    .home-testdrive__media img {
        object-fit: cover;
    }

    .home-testdrive__container {
        align-items: flex-start;
        padding-top: 36px;
    }

    .home-testdrive__content {
        width: 100%;
        max-width: 420px;
    }

    .home-testdrive__content h2 {
        max-width: 92%;
        margin-bottom: 20px;
        font-size: clamp(32px, 9vw, 40px);
        line-height: 1.02;
    }
}

@media (max-width: 991px) {
    #mainFooter .main-footer__grid {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    #mainFooter {
        padding: 54px 0;
    }

    #mainFooter > .container {
        padding-right: 24px;
        padding-left: 24px;
    }

    #mainFooter .main-footer__brand {
        margin-bottom: 42px;
    }

    #mainFooter .main-footer__brand img {
        width: 140px;
    }

    #mainFooter .main-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    #mainFooter .main-footer__list li,
    #mainFooter .main-footer__widget li {
        margin-bottom: 12px;
    }

    #mainFooter .main-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 55px;
    }
}

/* ==================================================
PAGE TEST DRIVE
================================================== */

#testDrivePage {
    background: #1b1b1b;
    color: #fff;
}

.test-drive-page {
    min-height: 70vh;
    padding: 80px 0 100px;
}

.test-drive-page__heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.test-drive-page__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.test-drive-page__heading h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.05;
    font-weight: 700;
}

.test-drive-page__heading p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.5;
}

/* Form */

.test-drive-page__form {
    max-width: 1000px;
    margin: 0 auto;
}

/* Fluent Forms */

#testDrivePage .fluentform {
    color: #fff;
}

#testDrivePage .fluentform label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

#testDrivePage .fluentform input,
#testDrivePage .fluentform select,
#testDrivePage .fluentform textarea {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: #fff;
    color: #111;
}

#testDrivePage .fluentform textarea {
    min-height: 120px;
}

#testDrivePage .fluentform input:focus,
#testDrivePage .fluentform select:focus,
#testDrivePage .fluentform textarea:focus {
    border-color: #fff;
    box-shadow: none;
    outline: none;
}

/* Submit */

#testDrivePage .fluentform .ff-btn-submit {
    min-height: 48px;
    padding: 0 32px;
    border: 1px solid #fff;
    border-radius: 0;
    background: #fff;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#testDrivePage .fluentform .ff-btn-submit:hover {
    background: transparent;
    color: #fff;
}

/* Mobile */

@media (max-width: 767px) {
    .test-drive-page {
        padding: 55px 0 70px;
    }

    .test-drive-page__heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .test-drive-page__heading h1 {
        font-size: 38px;
    }

    .test-drive-page__heading p {
        margin: 0;
        font-size: 16px;
    }

    #testDrivePage .fluentform .ff-btn-submit {
        width: 100%;
    }
}

/* ==================================================
CONTACTO POSTVENTA
================================================== */

#postventaContactoPage {
    background: #1b1b1b;
    color: #fff;
}

#postventaContactoPage .postventa-contacto {
    min-height: 70vh;
    padding: 80px 0 100px;
}

#postventaContactoPage .postventa-contacto__heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

#postventaContactoPage .postventa-contacto__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

#postventaContactoPage .postventa-contacto__heading h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.05;
    font-weight: 700;
}

#postventaContactoPage .postventa-contacto__heading p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.5;
}

#postventaContactoPage .postventa-contacto__form {
    max-width: 1000px;
    margin: 0 auto;
}

#postventaContactoPage .fluentform {
    color: #fff;
}

#postventaContactoPage .fluentform label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

#postventaContactoPage .fluentform input,
#postventaContactoPage .fluentform select,
#postventaContactoPage .fluentform textarea {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: #fff;
    color: #111;
}

#postventaContactoPage .fluentform textarea {
    min-height: 120px;
}

#postventaContactoPage .fluentform input:focus,
#postventaContactoPage .fluentform select:focus,
#postventaContactoPage .fluentform textarea:focus {
    border-color: #fff;
    box-shadow: none;
    outline: none;
}

#postventaContactoPage .fluentform .ff-btn-submit {
    min-height: 48px;
    padding: 0 32px;
    border: 1px solid #fff;
    border-radius: 0;
    background: #fff;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#postventaContactoPage .fluentform .ff-btn-submit:hover {
    background: transparent;
    color: #fff;
}

@media (max-width: 767px) {
    #postventaContactoPage .postventa-contacto {
        padding: 55px 0 70px;
    }

    #postventaContactoPage .postventa-contacto__heading {
        margin-bottom: 38px;
        text-align: left;
    }

    #postventaContactoPage .postventa-contacto__heading h1 {
        font-size: 38px;
    }

    #postventaContactoPage .postventa-contacto__heading p {
        margin: 0;
        font-size: 16px;
    }

    #postventaContactoPage .postventa-contacto__form,
    #postventaContactoPage .fluentform .ff-btn-submit {
        width: 100%;
    }
}

/* ==================================================
COTIZAR MODELO
================================================== */

#cotizarModeloPage {
    background: #fff;
    color: #1b1b1b;
}

#cotizarModeloPage .cotizar-modelo {
    padding: 80px 0 100px;
}

#cotizarModeloPage .cotizar-modelo__heading {
    max-width: 820px;
    margin: 0 auto 45px;
    text-align: center;
}

#cotizarModeloPage .cotizar-modelo__heading .eyebrow,
#cotizarModeloPage .cotizar-modelo__heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#cotizarModeloPage .cotizar-modelo__heading h1 {
    margin: 0 0 14px;
    color: #111;
    font-size: clamp(38px, 4.5vw, 56px);
    line-height: 1.05;
    font-weight: 700;
}

#cotizarModeloPage .cotizar-modelo__heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #555;
    font-size: 17px;
    line-height: 1.5;
}

/* Vehículo */

#cotizarModeloPage .cotizar-modelo__vehicle {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto 45px;
    padding: 25px 30px;
    background: #f5f5f5;
}

#cotizarModeloPage .cotizar-modelo__vehicle-image {
    flex: 0 0 320px;
}

#cotizarModeloPage .cotizar-modelo__vehicle-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

#cotizarModeloPage .cotizar-modelo__vehicle-name {
    margin: 0;
    color: #111;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 700;
}

/* Formulario */

#cotizarModeloPage .cotizar-modelo__form {
    max-width: 1000px;
    margin: 0 auto;
}

#cotizarModeloPage .fluentform {
    color: #111;
}

#cotizarModeloPage .fluentform label {
    color: #111;
    font-size: 14px;
    font-weight: 500;
}

#cotizarModeloPage .fluentform input,
#cotizarModeloPage .fluentform select,
#cotizarModeloPage .fluentform textarea {
    min-height: 48px;
    border: 1px solid #d5d5d5;
    border-radius: 0;
    background: #fff;
    color: #111;
    box-shadow: none;
}

#cotizarModeloPage .fluentform input:focus,
#cotizarModeloPage .fluentform select:focus,
#cotizarModeloPage .fluentform textarea:focus {
    border-color: #111;
    box-shadow: none;
    outline: none;
}

#cotizarModeloPage .fluentform textarea {
    min-height: 120px;
}

#cotizarModeloPage select[name="dropdown"] {
    font-weight: 600;
}

#cotizarModeloPage .fluentform input[type="checkbox"] {
    min-height: 0;
}

#cotizarModeloPage .fluentform .ff-btn-submit {
    min-height: 48px;
    padding: 0 30px;
    border: 1px solid #111;
    border-radius: 0;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#cotizarModeloPage .fluentform .ff-btn-submit:hover {
    background: #fff;
    color: #111;
}

/* Tablet */

@media (max-width: 991px) {
    #cotizarModeloPage .cotizar-modelo {
        padding: 65px 0 80px;
    }

    #cotizarModeloPage .cotizar-modelo__vehicle {
        gap: 25px;
    }

    #cotizarModeloPage .cotizar-modelo__vehicle-image {
        flex-basis: 260px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    #cotizarModeloPage .cotizar-modelo {
        padding: 50px 0 65px;
    }

    #cotizarModeloPage .cotizar-modelo__heading {
        margin-bottom: 35px;
        text-align: left;
    }

    #cotizarModeloPage .cotizar-modelo__heading h1 {
        font-size: 38px;
    }

    #cotizarModeloPage .cotizar-modelo__heading p {
        margin: 0;
        font-size: 16px;
    }

    #cotizarModeloPage .cotizar-modelo__vehicle {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 35px;
        padding: 24px;
    }

    #cotizarModeloPage .cotizar-modelo__vehicle-image {
        flex: none;
        width: 100%;
    }

    #cotizarModeloPage .cotizar-modelo__vehicle-img {
        max-height: 260px;
        object-fit: contain;
    }

    #cotizarModeloPage .cotizar-modelo__vehicle-name {
        font-size: 30px;
    }

    #cotizarModeloPage .fluentform .ff-btn-submit {
        width: 100%;
    }
}
