/* Start custom CSS for html, class: .elementor-element-1e9e95f *//* =====================================================
   BAMBU PLA LITE - AMARILLO
===================================================== */

.bambu-filament {
    /* PALETA AMARILLO */
    --bambu-accent: #e3b600;
    --bambu-accent-dark: #8a6900;
    --bambu-accent-middle: #f2c515;
    --bambu-accent-light: #f8e48a;

    --bambu-soft: #fff9df;
    --bambu-soft-hover: #fffdf4;
    --bambu-border-hover: #f0dfa0;

    --bambu-dark-bg: #3b3218;
    --bambu-dark-hover: #514522;
    --bambu-dark-border: #716133;
    --bambu-dark-label: #f6df83;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 55px 24px;
    color: #525252;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

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

.bambu-filament h2,
.bambu-filament h3,
.bambu-filament p {
    overflow-wrap: normal;
    word-break: normal;
}

.bambu-filament h2 {
    margin: 0 0 18px;
    color: #171717;
    font-size: clamp(29px, 4vw, 43px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.7px;
}

.bambu-filament h3 {
    margin: 0 0 12px;
    color: #1e1e1e;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
}

.bambu-filament p {
    margin: 0 0 18px;
}

.bambu-filament strong {
    color: #252525;
    font-weight: 700;
}

/* INTRODUCCIÓN */

.bambu-filament__intro {
    max-width: 920px;
    margin-bottom: 55px;
}

.bambu-filament__label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--bambu-accent-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.bambu-filament__lead {
    color: #626262;
    font-size: 18px;
    line-height: 1.75;
}

/* SECCIONES */

.bambu-filament__section {
    margin-top: 62px;
}

.bambu-filament__heading {
    max-width: 820px;
    margin-bottom: 31px;
}

.bambu-filament__heading p {
    margin-bottom: 0;
    color: #6b6b6b;
}

/* DATOS DESTACADOS */

.bambu-highlight {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
    margin-top: 32px;
}

.bambu-highlight__item {
    min-height: 145px;
    padding: 24px 21px;
    border: 1px solid #e7e7e7;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.bambu-highlight__item:hover {
    transform: translateY(-4px);
    border-color: var(--bambu-border-hover);
    box-shadow: 0 15px 32px rgba(138, 105, 0, 0.14);
}

.bambu-highlight__value {
    display: block;
    margin-bottom: 8px;
    color: var(--bambu-accent-dark);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.15;
}

.bambu-highlight__name {
    display: block;
    color: #303030;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.bambu-highlight__description {
    display: block;
    margin-top: 7px;
    color: #757575;
    font-size: 13px;
    line-height: 1.5;
}

/* TARJETAS DE CARACTERÍSTICAS */

.bambu-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.bambu-feature-card {
    position: relative;
    padding: 31px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(0, 0, 0, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.bambu-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--bambu-accent-dark) 0%,
        var(--bambu-accent-middle) 50%,
        var(--bambu-accent-light) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bambu-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--bambu-border-hover);
    box-shadow: 0 16px 38px rgba(138, 105, 0, 0.15);
}

.bambu-feature-card:hover::before {
    opacity: 1;
}

.bambu-feature-card__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--bambu-soft);
    color: var(--bambu-accent-dark);
    font-size: 13px;
    font-weight: 700;
}

.bambu-feature-card p:last-child {
    margin-bottom: 0;
}

/* ESPECIFICACIONES */

.bambu-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.bambu-spec-card {
    min-height: 135px;
    padding: 23px;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    background: #fff;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.bambu-spec-card:hover {
    transform: translateY(-3px);
    border-color: var(--bambu-border-hover);
    background: var(--bambu-soft-hover);
    box-shadow: 0 11px 27px rgba(138, 105, 0, 0.1);
}

.bambu-spec-card__label {
    display: block;
    margin-bottom: 11px;
    color: #737373;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.35;
    text-transform: uppercase;
}

.bambu-spec-card__value {
    display: block;
    color: #222;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
}

/* TARJETAS OSCURAS */

.bambu-spec-grid--dark .bambu-spec-card {
    border-color: var(--bambu-dark-border);
    background: var(--bambu-dark-bg);
}

.bambu-spec-grid--dark .bambu-spec-card:hover {
    border-color: #927d44;
    background: var(--bambu-dark-hover);
    box-shadow: 0 12px 29px rgba(0, 0, 0, 0.2);
}

.bambu-spec-grid--dark .bambu-spec-card__label {
    color: var(--bambu-dark-label);
}

.bambu-spec-grid--dark .bambu-spec-card__value {
    color: #fff;
}

/* LISTAS */

.bambu-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bambu-list li {
    position: relative;
    padding: 15px 18px 15px 47px;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    background: #fff;
    color: #515151;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.bambu-list li:hover {
    transform: translateY(-2px);
    border-color: var(--bambu-border-hover);
    background: var(--bambu-soft-hover);
}

.bambu-list li::before {
    content: "✓";
    position: absolute;
    top: 14px;
    left: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bambu-soft);
    color: var(--bambu-accent-dark);
    font-size: 12px;
    font-weight: 700;
}

/* NOTA */

.bambu-note {
    margin-top: 28px;
    padding: 25px 27px;
    border-left: 4px solid var(--bambu-accent);
    border-radius: 0 16px 16px 0;
    background: var(--bambu-soft);
}

.bambu-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--bambu-accent-dark);
}

.bambu-note p:last-child {
    margin-bottom: 0;
}

/* CIERRE */

.bambu-closing {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 27px;
}

.bambu-closing__content,
.bambu-closing__summary {
    padding: 34px;
    border-radius: 22px;
}

.bambu-closing__content {
    border: 1px solid #e7e7e7;
    background: #fff;
}

.bambu-closing__summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bambu-dark-bg);
    color: rgba(255, 255, 255, 0.82);
}

.bambu-closing__summary h3 {
    color: #fff;
    font-size: 25px;
}

.bambu-closing__summary .bambu-filament__label {
    color: var(--bambu-dark-label);
}

.bambu-closing__content p:last-child,
.bambu-closing__summary p:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .bambu-highlight,
    .bambu-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .bambu-feature-grid,
    .bambu-closing {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .bambu-filament {
        padding: 38px 15px;
        font-size: 15px;
        line-height: 1.7;
    }

    .bambu-filament h2 {
        font-size: 29px;
        letter-spacing: -0.4px;
    }

    .bambu-filament h3 {
        font-size: 20px;
    }

    .bambu-filament__lead {
        font-size: 16px;
    }

    .bambu-filament__intro {
        margin-bottom: 42px;
    }

    .bambu-filament__section {
        margin-top: 47px;
    }

    .bambu-feature-card {
        padding: 25px 21px;
        border-radius: 18px;
    }

    .bambu-highlight,
    .bambu-spec-grid,
    .bambu-list {
        grid-template-columns: 1fr;
    }

    .bambu-highlight__item,
    .bambu-spec-card {
        min-height: auto;
    }

    .bambu-closing__content,
    .bambu-closing__summary {
        padding: 27px 22px;
        border-radius: 18px;
    }
}/* End custom CSS */