/*
    0. Variables y tipografía de secciones
	1. benefits-business
    2. vc-vehicles
    3. vc-contacto
    4. Animaciones de entrada
    10. Responsive
*/

/* 0. Variables y tipografía de secciones */
:root {
    --vc-title-size: 42px;
    --vc-title-weight: 700;
    --vc-title-color: #182533;
    --vc-title-lh: 1.15;
    --vc-title-mb: 15px;
    --vc-subtitle-size: 17px;
    --vc-subtitle-weight: 400;
    --vc-subtitle-color: #687586;
    --vc-subtitle-lh: 1.6;
}

.vc-section-title {
    margin: 0 0 var(--vc-title-mb);
    color: var(--vc-title-color);
    font-size: var(--vc-title-size);
    font-weight: var(--vc-title-weight);
    line-height: var(--vc-title-lh);
    font-family: var(--font-family-sans-serif);
}

.vc-section-subtitle {
    max-width: 85%;
    margin: 0 auto 2rem;
    color: var(--vc-subtitle-color);
    font-size: var(--vc-subtitle-size);
    font-weight: var(--vc-subtitle-weight);
    line-height: var(--vc-subtitle-lh);
    font-family: var(--font-family-sans-serif);
}

/* 1. benefits-business */
.benefits-business {
    position: relative;
    padding: 40px 0 80px;
}

.benefits-business__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #e30613;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.benefits-business__intro {
    max-width: 85%;
    margin: 0 auto 2rem;
    color: var(--vc-subtitle-color);
    font-size: var(--vc-subtitle-size);
    line-height: var(--vc-subtitle-lh);
}

.benefits-business__row {
    align-items: stretch;
}

.benefit-column {
    margin-bottom: 50px;
}

.benefit-card {
    position: relative;
    height: 100%;
    padding: 45px 25px 55px;
    border: 1px solid #edf0f2;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
}

.benefit-card h3 {
    min-height: 70px;
    margin: 0;
    color: #182533;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.benefit-card__line {
    display: block;
    width: 42px;
    height: 3px;
    margin: 18px auto 20px;
    background: #e30613;
}

.benefit-card p {
    min-height: 70px;
    margin: 0;
    color: #687586;
    font-size: 15px;
    line-height: 1.5;
}

.benefit-card__bottom-icon {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: -36px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    background: #e30613;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .18);
}

.benefit-card__bottom-icon img {
    width: 45px;
    height: 45px;
}

.benefit-icon-default:nth-child(1) .benefit-card__bottom-icon {
    background: #e30613 url('../../img/svg/vc-beneficio-condiciones.svg') no-repeat center center;
    background-size: 45px 45px;
}

.benefit-icon-default:nth-child(2) .benefit-card__bottom-icon {
    background: #e30613 url('../../img/svg/vc-beneficio-unidades.svg') no-repeat center center;
    background-size: 45px 45px;
}

.benefit-icon-default:nth-child(3) .benefit-card__bottom-icon {
    background: #e30613 url('../../img/svg/vc-beneficio-financiacion.svg') no-repeat center center;
    background-size: 45px 45px;
}

.benefit-icon-default:nth-child(4) .benefit-card__bottom-icon {
    background: #e30613 url('../../img/svg/vc-beneficio-gama.svg') no-repeat center center;
    background-size: 45px 45px;
}

.benefit-icon-default:nth-child(5) .benefit-card__bottom-icon {
    background: #e30613 url('../../img/svg/vc-beneficio-asesoramiento.svg') no-repeat center center;
    background-size: 45px 45px;
}

.benefit-bottom-svg {
    display: block;
    width: 45px;
    height: 45px;
}


/* 2. vc-vehicles */
.vc-vehicles-section {
    padding: 3rem 0 0;
}

.vc-vehicles-carousel {
    padding: 2rem 0;
}

.vc-vehicles-carousel .vc-vehicle-slide {
    padding: 0 15px;
}

.vc-vehicles-grid {
    padding: 2rem 0;
}

.vc-vehicle-col {
    display: flex;
}

.vc-vehicle-card {
    width: 100%;
}

.vc-vehicles-section .card-vehicle--figure img {
    max-width: 80%;
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.vc-vehicles-desc {
    margin-top: 2rem;
}

.vc-vehicles-desc p {
    color: #687586;
    font-size: 14px;
}

.vc-vehicles-carousel .slick-prev,
.vc-vehicles-carousel .slick-next {
    z-index: 1;
    position: absolute;
    top: 45%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #182533;
    font-size: 1.4rem;
    background-color: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: color .2s ease;
}

.vc-vehicles-carousel .slick-prev:hover,
.vc-vehicles-carousel .slick-next:hover {
    color: #e30613;
}

.vc-vehicles-carousel .slick-prev {
    left: -30px;
    right: auto;
}

.vc-vehicles-carousel .slick-next {
    right: -30px;
    left: auto;
}

/* 4. Animaciones de entrada */
.vc-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.vc-anim.vc-anim-active {
    opacity: 1;
    transform: translateY(0);
}

.vc-anim[data-section="hero"] {
    transition-delay: 0s;
}

.vc-anim[data-section="title"] {
    transition-delay: 0.15s;
}

.vc-anim[data-section="description"] {
    transition-delay: 0.1s;
}

.vc-anim[data-section="benefits"] {
    transition-delay: 0.1s;
}

.vc-anim[data-section="vehicles"] {
    transition-delay: 0.1s;
}

.vc-anim[data-section="contact"] {
    transition-delay: 0.1s;
}

.benefits-business .benefit-column {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefits-business.vc-anim-active .benefit-column {
    opacity: 1;
    transform: translateY(0);
}

.benefits-business.vc-anim-active .benefit-column:nth-child(1) {
    transition-delay: 0.1s;
}

.benefits-business.vc-anim-active .benefit-column:nth-child(2) {
    transition-delay: 0.2s;
}

.benefits-business.vc-anim-active .benefit-column:nth-child(3) {
    transition-delay: 0.3s;
}

.benefits-business.vc-anim-active .benefit-column:nth-child(4) {
    transition-delay: 0.4s;
}

.benefits-business.vc-anim-active .benefit-column:nth-child(5) {
    transition-delay: 0.5s;
}

.vc-vehicles-section .vc-vehicle-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.vc-vehicles-section.vc-anim-active .vc-vehicle-col {
    opacity: 1;
    transform: translateY(0);
}

.vc-vehicles-section.vc-anim-active .vc-vehicle-col:nth-child(1) {
    transition-delay: 0.1s;
}

.vc-vehicles-section.vc-anim-active .vc-vehicle-col:nth-child(2) {
    transition-delay: 0.2s;
}

.vc-vehicles-section.vc-anim-active .vc-vehicle-col:nth-child(3) {
    transition-delay: 0.3s;
}

.vc-vehicles-section .vc-vehicles-carousel .vc-vehicle-slide {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.vc-vehicles-section.vc-anim-active .vc-vehicles-carousel .vc-vehicle-slide {
    opacity: 1;
    transform: translateY(0);
}

.vc-vehicles-section.vc-anim-active .vc-vehicles-carousel .slick-slide:nth-child(1) {
    transition-delay: 0.1s;
}

.vc-vehicles-section.vc-anim-active .vc-vehicles-carousel .slick-slide:nth-child(2) {
    transition-delay: 0.2s;
}

.vc-vehicles-section.vc-anim-active .vc-vehicles-carousel .slick-slide:nth-child(3) {
    transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {

    .vc-anim,
    .benefits-business .benefit-column,
    .vc-vehicles-section .vc-vehicle-col,
    .vc-vehicles-section .vc-vehicles-carousel .vc-vehicle-slide {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* 3. vc-contacto */
.vc-contacto {
    padding: 5rem 0;
}

.vc-contacto .vc-contact-form {
    text-align: right;
}

.vc-contacto .wpcf7 input[type="submit"],
.vc-contacto .wpcf7 .wpcf7-submit {
    width: auto;
    display: inline-block;
}

@media (max-width: 575.98px) {
    .vc-contacto .vc-contact-form {
        text-align: center;
    }

    .vc-contacto .wpcf7 input[type="submit"],
    .vc-contacto .wpcf7 .wpcf7-submit {
        width: 100%;
    }
}

/* 10. Responsive */
@media (min-width: 1200px) {
    .benefit-column {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 991.98px) {
    :root {
        --vc-title-size: 36px;
    }

    .benefits-business {
        padding: 60px 0;
    }

    .benefit-card h3 {
        min-height: auto;
    }

    .benefit-card p {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    :root {
        --vc-title-size: 28px;
        --vc-subtitle-size: 15px;
    }

    .benefits-business {
        padding: 45px 0;
    }

    .benefits-business__intro {
        margin-bottom: 35px;
    }

    .benefit-column {
        margin-bottom: 55px;
    }

    .benefit-card {
        padding: 35px 20px 50px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .benefit-card__bottom-icon {
        width: 72px;
        height: 72px;
        bottom: -36px;
    }

    .benefit-bottom-svg {
        width: 45px;
        height: 45px;
    }

    .vc-vehicles-carousel .slick-next {
        right: 0px;
    }

    .vc-vehicles-carousel .slick-prev {
        left: 0px;
    }
}