/* =========================
   TESTIMONIOS SHOWCASE
========================= */
.testimonios-showcase {
    position: relative;
    padding: 10px 20px 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(246, 216, 197, 0.48), transparent 18%),
        radial-gradient(circle at top right, rgba(245, 224, 212, 0.38), transparent 16%),
        radial-gradient(circle at bottom left, rgba(247, 228, 216, 0.32), transparent 16%),
        radial-gradient(circle at bottom right, rgba(246, 216, 197, 0.28), transparent 18%),
        linear-gradient(180deg, #fcf8f4 0%, #f8f1eb 100%);
}

.testimonios-showcase__container {
    position: relative;
    width: min(1320px, 94%);
    margin: 0 auto;
    z-index: 2;
}

/* =========================
   DECOR
========================= */
.testimonios-showcase__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.testimonios-showcase__paw {
    position: absolute;
    object-fit: contain;
    display: block;
    opacity: 0.36;
}

.testimonios-showcase__paw--one {
    top: 82px;
    left: 160px;
    width: 52px;
    transform: rotate(-14deg);
}

.testimonios-showcase__paw--two {
    top: 132px;
    left: 110px;
    width: 42px;
    transform: rotate(12deg);
}

.testimonios-showcase__paw--three {
    top: 118px;
    right: 146px;
    width: 66px;
    transform: rotate(8deg);
}

.testimonios-showcase__paw--four {
    top: 242px;
    right: 62px;
    width: 50px;
    transform: rotate(-10deg);
}

.testimonios-showcase__paw--five {
    bottom: 58px;
    right: 188px;
    width: 44px;
    transform: rotate(16deg);
}

.testimonios-showcase__paw--six {
    bottom: 76px;
    left: 120px;
    width: 46px;
    transform: rotate(-16deg);
}

/* =========================
   HEADER
========================= */
.testimonios-showcase__header {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.testimonios-showcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #e9a088 0%, #dc886f 100%);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow:
        0 14px 24px rgba(220, 136, 111, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.testimonios-showcase__badge-icon {
    width: 17px;
    height: 17px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.testimonios-showcase__title {
    margin: 0 0 20px;
    color: #5a3736;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.testimonios-showcase__title span {
    display: block;
    margin-top: 8px;
    color: #e5967f;
}

.testimonios-showcase__subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #7b6661;
    font-size: 1.12rem;
    line-height: 1.7;
    font-weight: 600;
}

/* =========================
   GRID
========================= */
.testimonios-showcase__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
    align-items: start;
}

/* =========================
   CARD
========================= */
.testimonio-card {
    position: relative;
    padding-top: 38px;
}

.testimonio-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 250px;
    margin: 0 auto -42px;
    border-radius: 50%;
    overflow: hidden;
    background: #f6eee9;
    border: 10px solid rgba(255, 250, 246, 0.92);
    box-shadow:
        0 18px 34px rgba(126, 94, 85, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    z-index: 3;
}

.testimonio-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonio-card__quote {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #e9a088 0%, #dc886f 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    box-shadow:
        0 10px 18px rgba(220, 136, 111, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.testimonio-card__body {
    position: relative;
    min-height: 360px;
    padding: 64px 22px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 240, 234, 0.98));
    border: 1px solid rgba(233, 216, 208, 0.92);
    box-shadow:
        0 18px 32px rgba(122, 91, 83, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonio-card__stars {
    margin-bottom: 18px;
    color: #ebb849;
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    text-align: center;
}

.testimonio-card__text {
    margin: 0 0 26px;
    color: #5f4b47;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
    font-weight: 500;
}

.testimonio-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.testimonio-card__user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonio-card__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid rgba(255, 251, 247, 0.92);
    box-shadow: 0 8px 16px rgba(114, 85, 77, 0.10);
}

.testimonio-card__user h3 {
    margin: 0 0 3px;
    color: #5a3736;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
}

.testimonio-card__user span {
    color: #8b7570;
    font-size: 0.92rem;
    line-height: 1.3;
    font-weight: 600;
}

.testimonio-card__paw-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: linear-gradient(180deg, #ea9f87 0%, #dc886f 100%);
    box-shadow:
        0 10px 18px rgba(220, 136, 111, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.testimonio-card__paw-badge img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.testimonio-card__line {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 160px;
    height: 5px;
    border-radius: 999px;
    transform: translateX(-50%);
}

.testimonio-card__line--coral {
    background: linear-gradient(90deg, #eea18b 0%, #e08a72 100%);
}

.testimonio-card__line--green {
    background: linear-gradient(90deg, #91a77c 0%, #778f63 100%);
}

/* =========================
   BOTTOM TAG
========================= */
.testimonios-showcase__bottom {
    position: relative;
    z-index: 2;
    width: fit-content;
    max-width: 100%;
    margin: 36px auto 0;
    padding: 16px 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f3dfd1 0%, #efddd0 100%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    box-shadow:
        0 14px 24px rgba(145, 110, 98, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.testimonios-showcase__bottom-icon {
    color: #e38d79;
    font-size: 1.2rem;
    line-height: 1;
}

.testimonios-showcase__bottom p {
    margin: 0;
    color: #5c4540;
    font-size: 1.05rem;
    font-weight: 800;
}

.testimonios-showcase__bottom-paw {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    opacity: 0.8;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1280px) {
    .testimonios-showcase__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .testimonios-showcase {
        padding: 80px 16px 70px;
    }

    .testimonios-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .testimonios-showcase__paw--three,
    .testimonios-showcase__paw--four,
    .testimonios-showcase__paw--five,
    .testimonios-showcase__paw--six {
        display: none;
    }
}

@media (max-width: 640px) {
    .testimonios-showcase__header {
        margin-bottom: 28px;
    }

    .testimonios-showcase__title {
        font-size: clamp(2.3rem, 10vw, 3.5rem);
    }

    .testimonios-showcase__subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonios-showcase__grid {
        grid-template-columns: 1fr;
    }

    .testimonio-card__body {
        min-height: auto;
    }

    .testimonios-showcase__bottom {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        text-align: center;
    }

    .testimonios-showcase__bottom p {
        font-size: 0.98rem;
    }
}