/* =========================
   HERO BLEND
========================= */
.hero-blend {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
}

.hero-blend__image,
.hero-blend__overlay {
    position: absolute;
    inset: 0;
}

.hero-blend__image {
    z-index: 1;
    background: url("../assets/img/mascota.HEIC") no-repeat 80% center / cover;
    transform: scaleX(-1) scale(1.02);
}

.hero-blend__overlay {
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(255, 240, 230, 0.92) 0%,
            rgba(255, 230, 210, 0.75) 40%,
            rgba(255, 200, 170, 0.35) 65%,
            rgba(255, 200, 170, 0.05) 85%,
            transparent 100%);
}

.hero-blend__container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 340px;
    align-items: center;
    gap: 48px;
    width: min(1200px, 92%);
    min-height: 100vh;
    margin: 0 auto;
    padding: 90px 0 48px;
}

.hero-blend__content {
    max-width: 680px;
    color: var(--hero-text);
}

.hero-blend__top {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-blend__eyebrow,
.hero-blend__location {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, var(--surface-light), var(--surface-soft));
    border: 1px solid var(--border-soft);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        var(--shadow-soft);
}

.hero-blend__eyebrow {
    padding: 0 16px;
    color: var(--hero-text-soft);
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-blend__location {
    gap: 8px;
    padding: 0 14px;
    color: var(--hero-text-soft);
    font-weight: 600;
    text-decoration: none;
}

.hero-blend__location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.hero-blend__location-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.hero-blend__location-text {
    color: var(--hero-text-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-blend__title {
    max-width: 780px;
    margin: 0 0 18px;
    color: var(--hero-text);
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.hero-blend__highlight {
    color: var(--hero-highlight);
}

.hero-blend__description {
    max-width: 620px;
    margin: 0 0 26px;
    color: var(--hero-text-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-blend__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 760px;
    margin-bottom: 26px;
}

.hero-blend__benefit,
.hero-blend__stat {
    border: 1px solid var(--border-soft-2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 10px 18px rgba(233, 197, 180, 0.1);
}

.hero-blend__benefit {
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 243, 236, 0.74));
    color: #7b5854;
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-blend__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-blend__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-blend__btn:hover {
    transform: translateY(-2px);
}

.hero-blend__btn--primary {
    background: linear-gradient(135deg, #f29b86, #e98070);
    color: #fff;
    border: 1px solid rgba(220, 117, 99, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 12px 24px rgba(233, 128, 112, 0.18);
}

.hero-blend__btn--secondary {
    background: linear-gradient(180deg, var(--surface-light), var(--surface-soft-2));
    color: var(--hero-text);
    border: 1px solid rgba(223, 193, 180, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 10px 20px rgba(233, 197, 180, 0.12);
}

.hero-blend__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-blend__stat {
    min-width: 130px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 241, 234, 0.78));
}

.hero-blend__stat strong {
    display: block;
    margin-bottom: 6px;
    color: var(--hero-stat);
    font-size: 1.75rem;
    line-height: 1;
}

.hero-blend__stat span {
    color: #8b6661;
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-blend__card {
    padding: 28px;
    border-radius: var(--radius-card-sm);
    background: rgba(255, 140, 90, 0.18);
    color: #5a2e2a;
    border: 1px solid rgba(255, 140, 90, 0.25);
    box-shadow:
        0 20px 40px rgba(255, 140, 90, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-blend__card h2 {
    margin: 0 0 10px;
    color: #7a3e36;
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 800;
}

.hero-blend__card p {
    margin: 0 0 16px;
    color: rgba(90, 46, 42, 0.8);
    line-height: 1.65;
}

.hero-blend__card ul {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.hero-blend__card li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px;
    color: #6b3a32;
    font-weight: 700;
}

.hero-blend__card li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #f29b86;
    font-weight: 900;
}

.hero-blend__card a {
    display: block;
    padding: 12px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #ff8c66, #ff6a4d);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 120, 80, 0.28);
}

/* =========================
   BENEFITS
========================= */
.benefits {
    padding: 40px 0 88px;
    background: linear-gradient(180deg, #fff7f3 0%, #fdf1eb 100%);
}

.benefits__container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.benefits__header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.benefits__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0 0 16px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    background: rgba(238, 148, 127, 0.12);
    color: #8a4f45;
    border: 1px solid rgba(238, 148, 127, 0.14);
    font-size: 0.92rem;
    font-weight: 700;
}

.benefits__title {
    margin: 0 0 14px;
    color: #4f2e2d;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.benefits__subtitle {
    margin: 0;
    color: #7a5f5b;
    font-size: 1.04rem;
    line-height: 1.8;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 20px;
    border-radius: var(--radius-card);
    background: var(--surface-card);
    border: 1px solid var(--border-accent-soft);
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-accent);
}

.benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 22px;
    background: linear-gradient(135deg, #fde4db, #f8d7ca);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.benefit-card__icon img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.benefit-card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-card__title {
    margin: 0;
    color: #4f2e2d;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 800;
}

.benefit-card__text {
    margin: 0;
    color: #6f5a57;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 1600px) {
    .hero-blend__image {
        background-position: 80% center;
        transform: scaleX(-1) scale(1.05);
    }

    .hero-blend__container {
        width: min(1320px, 90%);
    }
}

@media (max-width: 1100px) {
    .hero-blend__container {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-blend__content,
    .hero-blend__title {
        max-width: 100%;
    }

    .hero-blend__card {
        max-width: 480px;
    }

    .hero-blend__image {
        background-position: 72% center;
    }

    .hero-blend__overlay {
        background: linear-gradient(180deg,
                rgba(255, 248, 244, 0.95) 0%,
                rgba(255, 244, 237, 0.88) 25%,
                rgba(255, 239, 230, 0.68) 48%,
                rgba(255, 232, 220, 0.2) 100%);
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .hero-blend {
        min-height: auto;
    }

    .hero-blend__container {
        width: 92%;
        padding-top: 48px;
        padding-bottom: 28px;
    }

    .hero-blend__top {
        justify-content: center;
    }

    .hero-blend__content {
        text-align: center;
    }

    .hero-blend__title {
        font-size: 2.5rem;
    }

    .hero-blend__description {
        font-size: 0.98rem;
    }

    .hero-blend__benefits {
        grid-template-columns: 1fr;
    }

    .hero-blend__actions,
    .hero-blend__stats {
        flex-direction: column;
    }

    .hero-blend__btn,
    .hero-blend__stat,
    .hero-blend__location {
        width: 100%;
        text-align: center;
    }

    .hero-blend__location {
        justify-content: center;
    }

    .hero-blend__image {
        background-position: 68% center;
        transform: scaleX(-1);
    }
}

@media (max-width: 640px) {
    .benefits {
        padding: 24px 0 64px;
    }

    .benefits__header {
        margin-bottom: 26px;
    }

    .benefits__title {
        font-size: clamp(1.75rem, 7vw, 2.35rem);
    }

    .benefits__subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card {
        padding: 20px 18px;
        border-radius: var(--radius-card-sm);
    }

    .benefit-card__icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 18px;
    }

    .benefit-card__icon img {
        width: 24px;
        height: 24px;
    }

    .benefit-card__title {
        font-size: 1rem;
    }

    .benefit-card__text {
        font-size: 0.95rem;
    }
}

/**Nuevo section**/
/* =========================
   MODELOS DESTACADOS
========================= */
.models {
    padding: 44px 0 92px;
    background: linear-gradient(180deg, #fff8f4 0%, #fdf1eb 100%);
}

.models__container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.models__header {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.models__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    margin: 0 0 16px;
    border-radius: var(--radius-pill);
    background: rgba(238, 148, 127, 0.12);
    color: var(--text-main);
    border: 1px solid rgba(238, 148, 127, 0.16);
    font-size: 0.92rem;
    font-weight: 700;
}

.models__title {
    margin: 0 0 14px;
    color: var(--text-main);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.models__subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.8;
}

.models__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.model-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(238, 148, 127, 0.14);
    box-shadow: 0 16px 34px rgba(196, 145, 126, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(196, 145, 126, 0.14);
    border-color: rgba(238, 148, 127, 0.28);
}

.model-card__image-wrap {
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
    background: #f6ece6;
}

.model-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.model-card:hover .model-card__image {
    transform: scale(1.04);
}

.model-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}

.model-card__tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 36px;
    padding: 0 14px;
    margin-bottom: 16px;
    border-radius: var(--radius-pill);
    background: rgba(238, 148, 127, 0.12);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(238, 148, 127, 0.14);
}

.model-card__title {
    margin: 0 0 12px;
    color: var(--text-main);
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 800;
}

.model-card__text {
    margin: 0 0 18px;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.65;
}

.model-card__list {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.model-card__list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 0.97rem;
    line-height: 1.5;
}

.model-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

.model-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 48px;
    padding: 0 22px;
    margin-top: auto;
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, var(--surface-light), var(--surface-soft-2));
    border: 1px solid rgba(223, 193, 180, 0.4);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.model-card__btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: var(--white);
    border-color: rgba(220, 117, 99, 0.2);
    box-shadow: 0 12px 24px rgba(233, 128, 112, 0.16);
}

/* TABLET */
@media (max-width: 1180px) {
    .models__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 640px) {
    .models {
        padding: 28px 0 68px;
    }

    .models__header {
        margin-bottom: 28px;
    }

    .models__title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .models__subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .models__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .model-card {
        border-radius: 22px;
    }

    .model-card__body {
        padding: 20px 18px 22px;
    }

    .model-card__title {
        font-size: 1rem;
    }

    .model-card__text,
    .model-card__list li {
        font-size: 0.95rem;
    }

    .model-card__btn {
        width: 100%;
    }
}

/*
Videos
*/

/* ========================================
   SECCIÓN VIDEOS PREVIEW
======================================== */
.videos-preview {
    padding: 90px 20px;
    background:
        radial-gradient(circle at top left, rgba(246, 176, 157, 0.18), transparent 35%),
        linear-gradient(180deg, #fffaf7 0%, #fff4ef 100%);
}

.videos-preview__container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.videos-preview__header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.videos-preview__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(238, 148, 127, 0.14);
    border: 1px solid rgba(238, 148, 127, 0.22);
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.videos-preview__title {
    margin: 0 0 14px;
    color: var(--text-main);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.15;
    font-weight: 800;
}

.videos-preview__text {
    margin: 0;
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
}

/* ========================================
   GRID DE VIDEOS
======================================== */
.videos-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

/* ========================================
   TARJETA VIDEO
======================================== */
.video-box {
    position: relative;
}

.video-box__media {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 26px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(79, 46, 45, 0.03), rgba(79, 46, 45, 0.08)),
        #f7efea;
    border: 1px solid rgba(238, 148, 127, 0.16);
    box-shadow:
        0 16px 40px rgba(79, 46, 45, 0.12),
        0 8px 18px rgba(79, 46, 45, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.video-box:hover .video-box__media {
    transform: translateY(-6px);
    box-shadow:
        0 24px 52px rgba(79, 46, 45, 0.16),
        0 12px 24px rgba(79, 46, 45, 0.10);
    border-color: rgba(238, 148, 127, 0.28);
}

/* ========================================
   VIDEO
======================================== */
.video-box__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f3e8e2;
}

/* ========================================
   BOTÓN PLAY
======================================== */
.video-box__play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border: none;
    border-radius: 50%;
    background: rgba(20, 16, 16, 0.42);
    color: #fff;
    font-size: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.28s ease, background 0.28s ease, opacity 0.28s ease;
    z-index: 3;
}

.video-box:hover .video-box__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(238, 148, 127, 0.92);
}

/* ========================================
   CAPA SUAVE SOBRE LA PORTADA
======================================== */
.video-box__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.10), transparent 42%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent 18%);
    z-index: 1;
}

/* ========================================
   ESTADO CUANDO EL VIDEO REPRODUCE
======================================== */
.video-box.is-playing .video-box__play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Cuando reproduce, quitamos un poco la sensación de portada */
.video-box.is-playing .video-box__media::after {
    background: none;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .videos-preview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .videos-preview {
        padding: 70px 16px;
    }

    .videos-preview__header {
        margin-bottom: 32px;
    }

    .videos-preview__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .video-box__media {
        max-width: 420px;
        margin: 0 auto;
    }

    .video-box__play {
        width: 62px;
        height: 62px;
        font-size: 1.25rem;
    }
}

/*
Testimonios
*/

/* =========================
   TESTIMONIOS SHOWCASE
========================= */
.testimonials-showcase {
    padding: 100px 20px;
    background:
        radial-gradient(circle at top left, rgba(244, 194, 170, 0.18), transparent 20%),
        radial-gradient(circle at bottom right, rgba(235, 176, 152, 0.14), transparent 22%),
        linear-gradient(180deg, #f7f4f1 0%, #f1ece7 100%);
}

.testimonials-showcase__container {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: stretch;
}

/* =========================
   BLOQUE PRINCIPAL IZQUIERDO
========================= */
.testimonial-main {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 22%),
        linear-gradient(135deg, #5c3532 0%, #6d423d 48%, #875149 100%);
    box-shadow:
        0 24px 50px rgba(128, 87, 75, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: #fffaf7;
}

.testimonial-main::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 200, 170, 0.18), transparent 70%);
    pointer-events: none;
}

.testimonial-main__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffe7da;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    backdrop-filter: blur(8px);
}

.testimonial-main__stars {
    margin-bottom: 22px;
    color: #ffcf6b;
    font-size: 1.35rem;
    letter-spacing: 4px;
    font-weight: 700;
}

.testimonial-main__quote {
    margin: 0 0 32px;
    max-width: 640px;
    font-size: clamp(1.5rem, 2.1vw, 2.2rem);
    line-height: 1.42;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #fff7f3;
}

.testimonial-main__person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 34px;
}

.testimonial-main__person img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    background: #f7e9e2;
}

.testimonial-main__person h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 800;
}

.testimonial-main__person span {
    color: rgba(255, 241, 235, 0.85);
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-main__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-testimonial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    transition: all 0.28s ease;
}

.btn-testimonial--primary {
    background: linear-gradient(135deg, #ef9a84, #de7f6a);
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(222, 127, 106, 0.28);
}

.btn-testimonial--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(222, 127, 106, 0.35);
}

.btn-testimonial--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff4ee;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.btn-testimonial--secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

/* =========================
   BLOQUE DERECHO
========================= */
.testimonial-side {
    padding: 38px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 252, 249, 0.96), rgba(250, 245, 241, 0.94));
    border: 1px solid rgba(226, 204, 193, 0.75);
    box-shadow:
        0 22px 48px rgba(154, 132, 123, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.testimonial-side__label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #fdf0ea;
    color: #c97263;
    font-size: 0.9rem;
    font-weight: 700;
}

.testimonial-side__title {
    margin: 0 0 14px;
    color: #4f2e2d;
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.testimonial-side__title span {
    color: #de7f6a;
}

.testimonial-side__text {
    margin: 0 0 26px;
    color: #74625d;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 500px;
}

.testimonial-side__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
    gap: 14px;
    margin-bottom: 24px;
}

.testimonial-side__grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 22px;
    background: #f4ece7;
    box-shadow: 0 14px 28px rgba(143, 123, 115, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
    filter: saturate(0.92) contrast(0.96) brightness(1.02);
}

.testimonial-side__grid img:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(143, 123, 115, 0.18);
    filter: saturate(1) contrast(1);
}

.testimonial-side__grid img:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.testimonial-side__grid img:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.testimonial-side__grid img:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.testimonial-side__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #c97263;
    font-size: 1rem;
    font-weight: 800;
    transition: transform 0.25s ease, color 0.25s ease;
}

.testimonial-side__link:hover {
    transform: translateX(4px);
    color: #b86152;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
    .testimonials-showcase__container {
        grid-template-columns: 1fr;
    }

    .testimonial-main,
    .testimonial-side {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .testimonials-showcase {
        padding: 70px 16px;
    }

    .testimonial-main__quote {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .testimonial-main__person h3 {
        font-size: 1.3rem;
    }

    .testimonial-side__grid {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 220px 220px;
    }

    .testimonial-side__grid img:nth-child(1),
    .testimonial-side__grid img:nth-child(2),
    .testimonial-side__grid img:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }

    .btn-testimonial {
        width: 100%;
    }
}

/*
Acerca de nosotros
*/
/* =========================
   PURPOSE STORY
========================= */
.purpose-story {
    padding: 100px 20px;
    background:
        radial-gradient(circle at top left, rgba(246, 195, 180, 0.10), transparent 20%),
        radial-gradient(circle at bottom right, rgba(239, 154, 132, 0.08), transparent 18%),
        linear-gradient(180deg, #fcf9f7 0%, #f6efea 100%);
}

.purpose-story__container {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 52px;
    align-items: center;
}

/* =========================
   TEXTO IZQUIERDA
========================= */
.purpose-story__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.purpose-story__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fffdfb 0%, #f8efea 100%);
    border: 1px solid rgba(229, 201, 190, 0.85);
    color: #633a37;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow:
        0 12px 24px rgba(177, 145, 132, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.purpose-story__badge-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.purpose-story__title {
    margin: 0 0 28px;
    max-width: 660px;
    color: #5a302f;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    font-weight: 900;
    text-wrap: balance;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.50),
        0 8px 18px rgba(122, 73, 63, 0.06);
}

.purpose-story__title span {
    color: #eb927e;
    display: inline-block;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.28),
        0 8px 18px rgba(235, 146, 126, 0.14);
}

.purpose-story__text {
    max-width: 590px;
    margin: 0 0 46px;
    color: #6d5954;
    font-size: 1.12rem;
    line-height: 1.95;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* VALORES */
.purpose-story__values {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.purpose-story__value {
    min-width: 150px;
    flex: 1 1 150px;
    max-width: 180px;
}

.purpose-story__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fffefd 0%, #f9eee8 100%);
    color: #de7f6a;
    font-size: 2rem;
    border: 1px solid rgba(231, 204, 191, 0.82);
    box-shadow:
        0 16px 28px rgba(185, 155, 143, 0.10),
        inset 0 2px 0 rgba(255, 255, 255, 0.95),
        inset 0 -8px 18px rgba(233, 205, 193, 0.14);
}

.purpose-story__value h3 {
    margin: 0 0 6px;
    color: #4f2f31;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.purpose-story__value p {
    margin: 0;
    color: #9a7d76;
    font-size: 0.98rem;
    line-height: 1.45;
    font-weight: 600;
}

/* =========================
   MEDIA DERECHA
========================= */
.purpose-story__media {
    position: relative;
    min-height: 690px;
    border-radius: 40px;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(252, 249, 247, 0.96) 0%,
            rgba(252, 249, 247, 0.92) 10%,
            rgba(252, 249, 247, 0.82) 22%,
            rgba(252, 249, 247, 0.62) 36%,
            rgba(252, 249, 247, 0.34) 52%,
            rgba(252, 249, 247, 0.12) 68%,
            rgba(252, 249, 247, 0.00) 84%),
        linear-gradient(180deg, rgba(87, 47, 42, 0.02), rgba(87, 47, 42, 0.12)),
        #eadfd7;
    box-shadow:
        0 28px 60px rgba(145, 112, 99, 0.20),
        0 10px 24px rgba(145, 112, 99, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    isolation: isolate;
}

.purpose-story__image {
    width: 100%;
    height: 100%;
    min-height: 690px;
    object-fit: cover;
    object-position: center 90%;
    display: block;
    filter:
        saturate(0.96) contrast(0.97) brightness(1.01) sepia(0.04);
    transform: scale(1.01);
    position: relative;
    z-index: 0;
    opacity: 0.96;
}

.purpose-story__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(87, 47, 42, 0.01) 0%,
            rgba(87, 47, 42, 0.04) 48%,
            rgba(87, 47, 42, 0.10) 100%);
}

.purpose-story__media::after {
    content: "";
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle, rgba(239, 154, 132, 0.18), rgba(239, 154, 132, 0));
}

/* BADGE FOTO */
.purpose-story__overlay-top {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 4;
}

.purpose-story__media-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 252, 250, 0.96), rgba(248, 239, 234, 0.92));
    color: #6a423c;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    border: 1px solid rgba(238, 214, 202, 0.95);
    box-shadow:
        0 14px 26px rgba(115, 84, 76, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
}

/* BOTONES */
.purpose-story__overlay-bottom {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 4;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.purpose-story__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 66px;
    padding: 0 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.purpose-story__btn--whatsapp {
    background: linear-gradient(180deg, #39b56f 0%, #279658 100%);
    color: #ffffff;
    box-shadow:
        0 18px 32px rgba(34, 138, 82, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -10px 18px rgba(23, 105, 60, 0.18);
}

.purpose-story__btn--whatsapp:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
        0 24px 38px rgba(34, 138, 82, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -10px 18px rgba(23, 105, 60, 0.18);
}

.purpose-story__btn--contact {
    background: linear-gradient(180deg, rgba(255, 251, 248, 0.96), rgba(246, 237, 232, 0.96));
    color: #5f3936;
    border: 1px solid rgba(236, 214, 203, 0.98);
    box-shadow:
        0 14px 26px rgba(110, 83, 75, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        inset 0 -8px 16px rgba(231, 210, 201, 0.24);
    backdrop-filter: blur(10px);
}

.purpose-story__btn--contact:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 30px rgba(110, 83, 75, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        inset 0 -8px 16px rgba(231, 210, 201, 0.24);
}

.purpose-story__btn-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.purpose-story__btn-arrow {
    font-size: 1.14rem;
    line-height: 1;
}

/* FOTO CIRCULAR */
.purpose-story__pet-bubble {
    position: absolute;
    right: 22px;
    bottom: 92px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 4;
    border: 6px solid rgba(255, 250, 246, 0.95);
    box-shadow:
        0 18px 36px rgba(92, 62, 55, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    background: #fff8f4;
}

.purpose-story__pet-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .purpose-story__container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .purpose-story__content,
    .purpose-story__title,
    .purpose-story__text {
        max-width: 100%;
    }

    .purpose-story__media,
    .purpose-story__image {
        min-height: 580px;
    }
}

@media (max-width: 768px) {
    .purpose-story {
        padding: 78px 16px;
    }

    .purpose-story__title {
        font-size: clamp(2.3rem, 10vw, 3.8rem);
        line-height: 1;
    }

    .purpose-story__text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .purpose-story__values {
        gap: 16px;
    }

    .purpose-story__value {
        min-width: calc(50% - 8px);
        max-width: none;
    }

    .purpose-story__media,
    .purpose-story__image {
        min-height: 470px;
    }

    .purpose-story__overlay-bottom {
        left: 18px;
        right: 18px;
        bottom: 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .purpose-story__btn {
        width: 100%;
        justify-content: center;
    }

    .purpose-story__overlay-top {
        top: 18px;
        left: 18px;
    }

    .purpose-story__pet-bubble {
        width: 140px;
        height: 140px;
        right: 18px;
        bottom: 150px;
    }
}

@media (max-width: 520px) {
    .purpose-story__value {
        min-width: 100%;
    }

    .purpose-story__icon {
        width: 66px;
        height: 66px;
        font-size: 1.7rem;
    }

    .purpose-story__media,
    .purpose-story__image {
        min-height: 410px;
    }

    .purpose-story__media {
        border-radius: 28px;
    }

    .purpose-story__pet-bubble {
        width: 118px;
        height: 118px;
        right: 14px;
        bottom: 168px;
        border-width: 4px;
    }
}