/* =========================
   CONTACT SHOWCASE
========================= */
.contact-showcase {
    padding: 10px 20px 70px;
    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%);
}

.contact-showcase__container {
    width: min(1320px, 96%);
    margin: 0 auto;
    padding: 18px 18px 28px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(248, 241, 236, 0.98));
    border: 1px solid rgba(233, 216, 208, 0.88);
    box-shadow:
        0 26px 48px rgba(130, 98, 90, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    position: relative;
    overflow: hidden;
}

/* =========================
   CONTENIDO IZQUIERDA
========================= */
.contact-showcase__content {
    position: relative;
    z-index: 2;
    padding: 24px 20px 0 22px;
}

.contact-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #efb39e 0%, #e89a83 100%);
    color: #fff7f3;
    font-size: 0.96rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow:
        0 12px 22px rgba(227, 144, 117, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-showcase__eyebrow-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.contact-showcase__title {
    margin: 0 0 12px;
    color: #5b3333;
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.contact-showcase__title span {
    color: #e79680;
    font-style: italic;
    font-weight: 900;
}

.contact-showcase__divider {
    width: 260px;
    height: 5px;
    margin: 0 0 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ea9b84 0%, rgba(234, 155, 132, 0.16) 100%);
}

.contact-showcase__text {
    max-width: 560px;
    color: #6e5b57;
    font-size: 1.12rem;
    line-height: 1.72;
}

.contact-showcase__text p {
    margin: 0 0 14px;
}

.contact-showcase__text strong {
    color: #7a4a43;
    font-weight: 900;
}

.contact-showcase__highlight {
    color: #e79680;
    font-style: italic;
    font-weight: 800;
}

.contact-showcase__inline-paw {
    width: 26px;
    height: 26px;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 6px;
    opacity: 0.8;
}

/* =========================
   CONTACT CARDS
========================= */
.contact-showcase__cards {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.contact-card {
    min-height: 330px;
    padding: 22px 18px 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 252, 249, 0.99), rgba(246, 238, 233, 0.99));
    border: 1px solid rgba(232, 214, 206, 0.92);
    box-shadow:
        0 18px 30px rgba(128, 95, 88, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    text-align: center;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.contact-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 68px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00), rgba(233, 221, 215, 0.24));
    pointer-events: none;
}

.contact-card__icon-wrap {
    width: 100%;
    min-height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.contact-card__icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    background: linear-gradient(180deg, #e79a84 0%, #db856e 100%);
    box-shadow:
        0 14px 24px rgba(194, 128, 109, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.contact-card__icon::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: rgba(255, 251, 248, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.contact-card--featured .contact-card__icon {
    background: linear-gradient(180deg, #78ad77 0%, #5f9662 100%);
    box-shadow:
        0 14px 24px rgba(89, 140, 92, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-card__icon img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
}

.contact-card__body {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    min-height: 170px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.contact-card h3 {
    margin: 0 0 12px;
    color: #5b3333;
    font-size: 1.22rem;
    line-height: 1.2;
    font-weight: 900;
    min-height: 2.4em;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-card p {
    margin: 0 0 8px;
    color: #7b6660;
    font-size: 1rem;
    line-height: 1.55;
    text-align: center;
    width: 100%;
}

.contact-card a,
.contact-card strong {
    display: block;
    color: #e18871;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    width: 100%;
    word-break: break-word;
}

.contact-card a {
    margin-top: auto;
}

.contact-card strong {
    margin-bottom: 8px;
}

.contact-card--featured a {
    color: #5ea56d;
}

.contact-showcase__message {
    margin-top: 16px;
    min-height: 64px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(248, 232, 223, 0.96), rgba(242, 225, 216, 0.96));
    border: 1px solid rgba(232, 210, 200, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.contact-showcase__message p {
    margin: 0;
    color: #734845;
    font-size: 1.02rem;
    font-weight: 800;
    text-align: center;
}

.contact-showcase__message-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    opacity: 0.78;
}

/* =========================
   VISUAL DERECHA
========================= */
.contact-showcase__visual {
    position: relative;
    min-height: 820px;
    isolation: isolate;
}

.contact-showcase__paw {
    position: absolute;
    object-fit: contain;
    display: block;
    opacity: 0.13;
    z-index: 1;
}

.contact-showcase__paw--one {
    top: 34px;
    right: 66px;
    width: 98px;
    transform: rotate(-12deg);
}

.contact-showcase__paw--two {
    top: 122px;
    right: 10px;
    width: 84px;
    transform: rotate(16deg);
}

.contact-showcase__paw--three {
    bottom: 54px;
    right: 18px;
    width: 82px;
    transform: rotate(10deg);
}

.contact-showcase__paw--four {
    bottom: 122px;
    left: 18px;
    width: 52px;
    transform: rotate(-10deg);
}

.contact-showcase__organic {
    position: absolute;
    border-radius: 50%;
    background: rgba(241, 225, 216, 0.52);
    z-index: 0;
}

.contact-showcase__organic--one {
    top: 20px;
    right: 28px;
    width: 220px;
    height: 220px;
}

.contact-showcase__organic--two {
    bottom: 52px;
    right: 70px;
    width: 180px;
    height: 180px;
}

.contact-showcase__photo-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    height: 760px;
    margin-left: auto;
    margin-top: 8px;
    border-radius: 34% 29% 32% 28% / 22% 18% 24% 20%;
    overflow: hidden;
    background: #efe3da;
    box-shadow:
        0 28px 54px rgba(118, 85, 78, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    z-index: 2;
}

.contact-showcase__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-showcase__badge {
    position: absolute;
    right: 28px;
    bottom: 96px;
    width: 176px;
    height: 176px;
    border-radius: 50%;
    background: linear-gradient(180deg, #e9967f 0%, #de8871 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff8f5;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    box-shadow:
        0 20px 34px rgba(135, 81, 69, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    z-index: 4;
}

.contact-showcase__badge span {
    font-size: 0.92rem;
}

.contact-showcase__badge-heart {
    font-size: 2rem;
    line-height: 1;
}

/* =========================
   FOOTER CTA
========================= */
.contact-showcase__footer {
    grid-column: 1 / -1;
    margin-top: 14px;
    min-height: 140px;
    padding: 22px 28px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 252, 249, 0.98), rgba(247, 239, 234, 0.98));
    border: 1px solid rgba(232, 214, 206, 0.92);
    box-shadow:
        0 20px 34px rgba(128, 96, 88, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    position: relative;
    overflow: hidden;
}

.contact-showcase__footer-left {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.contact-showcase__footer-icon {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fff9f5 0%, #f6ece6 100%);
    border: 1px solid rgba(231, 210, 200, 0.90);
    box-shadow:
        0 16px 28px rgba(126, 92, 84, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    flex-shrink: 0;
}

.contact-showcase__footer-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}

.contact-showcase__footer-text h3 {
    margin: 0 0 8px;
    color: #5b3333;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 900;
}

.contact-showcase__footer-text p {
    margin: 0;
    color: #6f5c58;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-showcase__footer-paw {
    width: 22px;
    height: 22px;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 4px;
    opacity: 0.8;
}

.contact-showcase__footer-btn {
    min-width: 330px;
    min-height: 74px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(180deg, #789566 0%, #5f7e50 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow:
        0 18px 30px rgba(94, 125, 80, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    position: relative;
    z-index: 2;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.contact-showcase__footer-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.contact-showcase__footer-btn img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.contact-showcase__footer-arrow {
    font-size: 1.4rem;
    line-height: 1;
}

.contact-showcase__footer-deco {
    position: absolute;
    object-fit: contain;
    display: block;
    opacity: 0.11;
}

.contact-showcase__footer-deco--one {
    width: 96px;
    right: 26px;
    top: 6px;
    transform: rotate(-10deg);
}

.contact-showcase__footer-deco--two {
    width: 84px;
    right: 94px;
    bottom: 0;
    transform: rotate(14deg);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .contact-showcase__container {
        grid-template-columns: 1fr;
    }

    .contact-showcase__visual {
        min-height: 720px;
    }

    .contact-showcase__photo-wrap {
        margin: 0 auto;
    }

    .contact-showcase__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-showcase__footer-btn {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .contact-showcase {
        padding: 78px 16px 60px;
    }

    .contact-showcase__title {
        font-size: clamp(2.5rem, 10vw, 4.2rem);
    }

    .contact-showcase__text {
        font-size: 1rem;
        line-height: 1.68;
    }

    .contact-showcase__cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: auto;
        padding: 22px 18px 24px;
    }

    .contact-card__icon-wrap {
        min-height: 102px;
    }

    .contact-card__body {
        max-width: 100%;
        min-height: auto;
    }

    .contact-showcase__visual {
        min-height: 560px;
    }

    .contact-showcase__photo-wrap {
        height: 470px;
        border-radius: 30px;
    }

    .contact-showcase__badge {
        width: 138px;
        height: 138px;
        right: 14px;
        bottom: 46px;
    }

    .contact-showcase__footer-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-showcase__footer-text h3 {
        font-size: 1.55rem;
    }

    .contact-showcase__footer-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .contact-showcase__container {
        padding: 14px;
        border-radius: 26px;
    }

    .contact-showcase__content {
        padding: 18px 10px 0;
    }

    .contact-showcase__eyebrow {
        font-size: 0.84rem;
        padding: 10px 14px;
    }

    .contact-showcase__divider {
        width: 180px;
    }

    .contact-showcase__message {
        padding: 12px 14px;
        border-radius: 24px;
        min-height: auto;
    }

    .contact-showcase__message p {
        font-size: 0.94rem;
    }

    .contact-showcase__visual {
        min-height: 460px;
    }

    .contact-showcase__photo-wrap {
        height: 390px;
    }

    .contact-showcase__badge {
        width: 118px;
        height: 118px;
        right: 10px;
        bottom: 24px;
    }

    .contact-showcase__badge span {
        font-size: 0.75rem;
    }

    .contact-showcase__badge-heart {
        font-size: 1.5rem;
    }

    .contact-showcase__footer {
        padding: 18px;
        border-radius: 24px;
    }

    .contact-showcase__footer-icon {
        width: 88px;
        height: 88px;
    }

    .contact-showcase__footer-icon img {
        width: 46px;
        height: 46px;
    }

    .contact-card__icon {
        width: 80px;
        height: 80px;
    }

    .contact-card__icon::before {
        inset: 13px;
    }

    .contact-card__icon img {
        width: 34px;
        height: 34px;
    }
}