/* Start custom CSS for html, class: .elementor-element-0052676 */<style>
/* =========================================
   SECCIÓN GENERAL
========================================= */

.bambu-split-features {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
    font-family: Arial, Helvetica, sans-serif;
}

.bambu-split-features *,
.bambu-split-features *::before,
.bambu-split-features *::after {
    box-sizing: border-box;
}

.bambu-split-features__header {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.bambu-split-features__title {
    margin: 0 0 14px;
    color: #151515;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.bambu-split-features__subtitle {
    margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.65;
}

/* =========================================
   LISTA
========================================= */

.bambu-split-features__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* =========================================
   TARJETA
========================================= */

.bambu-split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 410px;
    overflow: hidden;

    border: 1px solid #e7e7e7;
    border-radius: 26px;
    background: #fff;

    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.bambu-split-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* =========================================
   IMAGEN COMO BACKGROUND
========================================= */

.bambu-split-card__image {
    width: 100%;
    min-height: 410px;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #111;

    transition: transform 0.45s ease;
}

.bambu-split-card:hover .bambu-split-card__image {
    transform: scale(1.025);
}

/* =========================================
   TEXTO
========================================= */

.bambu-split-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    min-width: 0;
    padding: 50px 52px;
    background: #fff;
}

.bambu-split-card__title {
    width: 100%;
    margin: 0 0 12px;

    color: #151515;
    font-size: clamp(27px, 2.3vw, 38px);
    font-weight: 700;
    line-height: 1.15;

    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

.bambu-split-card__label {
    display: inline-flex;
    align-items: center;

    max-width: 100%;
    margin: 0 0 20px;
    padding: 9px 16px;

    border-radius: 30px;
    background: #e9f6ec;
    color: #148548;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.bambu-split-card__description {
    width: 100%;
    max-width: 530px;
    margin: 0;

    color: #616161;
    font-size: 17px;
    line-height: 1.7;

    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

/* =========================================
   ALTERNAR POSICIONES
========================================= */

.bambu-split-card:nth-child(even) .bambu-split-card__image {
    grid-column: 2;
    grid-row: 1;
}

.bambu-split-card:nth-child(even) .bambu-split-card__content {
    grid-column: 1;
    grid-row: 1;
}

/* =========================================
   AJUSTE INDIVIDUAL DE POSICIÓN
========================================= */

.bambu-split-card--1 .bambu-split-card__image {
    background-position: center center;
}

.bambu-split-card--2 .bambu-split-card__image {
    background-position: center center;
}

.bambu-split-card--3 .bambu-split-card__image {
    background-position: center center;
}

.bambu-split-card--4 .bambu-split-card__image {
    background-position: center center;
}

.bambu-split-card--5 .bambu-split-card__image {
    background-position: center center;
}

.bambu-split-card--6 .bambu-split-card__image {
    background-position: center center;
}

.bambu-split-card--7 .bambu-split-card__image {
    background-position: center center;
}

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

@media (max-width: 1024px) {

    .bambu-split-features {
        padding: 50px 20px;
    }

    .bambu-split-card {
        min-height: 360px;
    }

    .bambu-split-card__image {
        min-height: 360px;
    }

    .bambu-split-card__content {
        padding: 40px 38px;
    }

    .bambu-split-card__description {
        font-size: 16px;
    }
}

/* =========================================
   MÓVIL
========================================= */

@media (max-width: 767px) {

    .bambu-split-features {
        padding: 38px 15px;
    }

    .bambu-split-features__header {
        margin-bottom: 28px;
        text-align: left;
    }

    .bambu-split-features__title {
        font-size: 29px;
    }

    .bambu-split-features__subtitle {
        font-size: 15px;
    }

    .bambu-split-features__list {
        gap: 20px;
    }

    .bambu-split-card {
        display: flex;
        flex-direction: column;
        min-height: 0;
        border-radius: 21px;
    }

    .bambu-split-card__image,
    .bambu-split-card:nth-child(even) .bambu-split-card__image {
        order: 1;
        width: 100%;
        min-height: 300px;
        grid-column: auto;
        grid-row: auto;
        background-position: center center;
    }

    .bambu-split-card__content,
    .bambu-split-card:nth-child(even) .bambu-split-card__content {
        order: 2;
        width: 100%;
        padding: 28px 24px 32px;
        grid-column: auto;
        grid-row: auto;
    }

    .bambu-split-card__title {
        font-size: 24px;
    }

    .bambu-split-card__description {
        font-size: 15px;
        line-height: 1.65;
    }
}
</style>/* End custom CSS */