/**
 * Respaldo
 * Remodelando Pixel
 */


/* =========================================================
   SECCIÓN
   ========================================================= */

.rmd-support {
    padding: 88px 0 92px;

    background: #f6f4ef;
}


/* =========================================================
   HEADER
   ========================================================= */

.rmd-support__header {
    margin-bottom: 42px;
}


.rmd-support__eyebrow {
    display: flex;

    margin-bottom: 18px;

    align-items: center;

    gap: 12px;

    color: var(--rmd-orange);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.rmd-support__eyebrow span {
    display: block;

    width: 38px;
    height: 2px;

    background: var(--rmd-orange);
}


.rmd-support__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, 0.85fr);

    gap: 60px;

    align-items: end;
}


.rmd-support__heading h2 {
    max-width: 760px;

    margin: 0;

    color: var(--rmd-brown-dark);

    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;

    letter-spacing: -0.04em;

    line-height: 1.04;
}


.rmd-support__heading p {
    max-width: 500px;

    margin: 0 0 5px;

    color: var(--rmd-text-soft);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   ITEMS
   ========================================================= */

.rmd-support__items {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    border-top: 1px solid rgba(40, 35, 28, 0.10);
    border-left: 1px solid rgba(40, 35, 28, 0.10);
}


/* =========================================================
   ITEM
   ========================================================= */

.rmd-support-item {
    display: flex;

    min-height: 110px;

    padding: 24px 20px;

    align-items: center;

    gap: 14px;

    border-right: 1px solid rgba(40, 35, 28, 0.10);
    border-bottom: 1px solid rgba(40, 35, 28, 0.10);

    background: rgba(255, 255, 255, 0.45);

    transition:
        background-color 0.22s ease,
        transform 0.22s ease;
}


.rmd-support-item:hover {
    background: var(--rmd-white);

    transform: translateY(-2px);
}


/* =========================================================
   ICONO
   ========================================================= */

.rmd-support-item__icon {
    display: inline-flex;

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--rmd-orange);
    border-radius: 50%;

    color: var(--rmd-orange);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   TEXTO
   ========================================================= */

.rmd-support-item__text {
    color: var(--rmd-brown-dark);

    font-size: 16px;
    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

    .rmd-support {
        padding: 76px 0 80px;
    }


    .rmd-support__heading {
        display: block;
    }


    .rmd-support__heading h2 {
        margin-bottom: 18px;
    }


    .rmd-support__heading p {
        max-width: 650px;
    }


    .rmd-support__items {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 560px) {

    .rmd-support {
        padding: 62px 0 66px;
    }


    .rmd-support__header {
        margin-bottom: 34px;
    }


    .rmd-support__eyebrow {
        margin-bottom: 14px;

        font-size: 11px;
    }


    .rmd-support__eyebrow span {
        width: 28px;
    }


    .rmd-support__heading h2 {
        margin-bottom: 16px;

        font-size: clamp(34px, 10vw, 44px);

        line-height: 1.05;
    }


    .rmd-support__heading p {
        font-size: 16px;

        line-height: 1.65;
    }


    .rmd-support__items {
        grid-template-columns: 1fr;
    }


    .rmd-support-item {
        min-height: 0;

        padding: 20px 18px;
    }


    .rmd-support-item__text {
        font-size: 17px;
    }

}