/**
 * Testimonios
 * Remodelando Pixel
 */


/* =========================================================
   SECCIÓN
   ========================================================= */

.rmd-testimonials {
    padding: 100px 0 105px;

    background: var(--rmd-white);
}


/* =========================================================
   HEADER
   ========================================================= */

.rmd-testimonials__header {
    margin-bottom: 52px;
}


.rmd-testimonials__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-testimonials__eyebrow span {
    display: block;

    width: 38px;
    height: 2px;

    background: var(--rmd-orange);
}


.rmd-testimonials__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, 0.85fr);

    gap: 60px;

    align-items: end;
}


.rmd-testimonials__heading h2 {
    max-width: 750px;

    margin: 0;

    color: var(--rmd-brown-dark);

    font-size: clamp(38px, 4.4vw, 58px);
    font-weight: 700;

    letter-spacing: -0.04em;

    line-height: 1.03;
}


.rmd-testimonials__heading p {
    max-width: 500px;

    margin: 0 0 6px;

    color: var(--rmd-text-soft);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   GRID
   ========================================================= */

.rmd-testimonials__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   CARD
   ========================================================= */

.rmd-testimonial-card {
    display: flex;

    min-height: 330px;

    padding: 32px 30px;

    border: 1px solid rgba(40, 35, 28, 0.10);

    border-radius: 10px;

    flex-direction: column;

    background: #f8f6f2;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}


.rmd-testimonial-card:hover {
    background: var(--rmd-white);

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(40, 35, 28, 0.08);
}


/* =========================================================
   ESTRELLAS
   ========================================================= */

.rmd-testimonial-card__stars {
    margin-bottom: 28px;

    color: var(--rmd-orange);

    font-size: 17px;

    letter-spacing: 0.12em;
}


/* =========================================================
   TESTIMONIO
   ========================================================= */

.rmd-testimonial-card blockquote {
    margin: 0 0 30px;
    padding: 0;

    border: 0;
}


.rmd-testimonial-card blockquote p {
    margin: 0;

    color: var(--rmd-brown-dark);

    font-size: 19px;
    font-weight: 500;

    line-height: 1.65;
}


/* =========================================================
   AUTOR
   ========================================================= */

.rmd-testimonial-card footer {
    display: flex;

    margin-top: auto;

    flex-direction: column;

    gap: 4px;
}


.rmd-testimonial-card footer strong {
    color: var(--rmd-brown-dark);

    font-size: 15px;
    font-weight: 700;
}


.rmd-testimonial-card footer span {
    color: var(--rmd-text-soft);

    font-size: 12px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.rmd-testimonials__footer {
    display: flex;

    margin-top: 40px;

    justify-content: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 960px) {

    .rmd-testimonials {
        padding: 82px 0 86px;
    }


    .rmd-testimonials__heading {
        display: block;
    }


    .rmd-testimonials__heading h2 {
        margin-bottom: 18px;
    }


    .rmd-testimonials__heading p {
        max-width: 650px;
    }


    .rmd-testimonials__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 640px) {

    .rmd-testimonials {
        padding: 64px 0 68px;
    }


    .rmd-testimonials__header {
        margin-bottom: 36px;
    }


    .rmd-testimonials__eyebrow {
        margin-bottom: 14px;

        font-size: 11px;
    }


    .rmd-testimonials__eyebrow span {
        width: 28px;
    }


    .rmd-testimonials__heading h2 {
        margin-bottom: 17px;

        font-size: clamp(34px, 10vw, 44px);

        line-height: 1.05;
    }


    .rmd-testimonials__heading p {
        font-size: 16px;

        line-height: 1.65;
    }


    .rmd-testimonials__grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .rmd-testimonial-card {
        min-height: 0;

        padding: 26px 22px;
    }


    .rmd-testimonial-card__stars {
        margin-bottom: 20px;
    }


    .rmd-testimonial-card blockquote p {
        font-size: 18px;
    }


    .rmd-testimonials__footer {
        margin-top: 32px;
    }


    .rmd-testimonials__footer .rmd-btn {
        width: 100%;
    }

}