/* ==========================================================
   WOMPEA HOME — HERO PRINCIPAL
   HTML: snippets/elementor-home-hero.html
   ========================================================== */

.wompea-home-hero-wrap.e-con,
.wompea-home-hero-wrap {
    width: 100%;
    max-width: none;
    padding: 0 !important;
}

.wompea-home-hero-wrap > .e-con-inner {
    width: 100%;
    max-width: none;
    padding: 0;
}

.wompea-home-hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    color: var(--wompea-ink);
    background:
        radial-gradient(circle at 12% 18%, rgb(255 101 65 / 13%) 0, transparent 32%),
        radial-gradient(circle at 89% 80%, rgb(42 133 159 / 14%) 0, transparent 29%),
        linear-gradient(120deg, #fffafb 0%, #fff 47%, #f2fbfd 100%);
    font-family: var(--wompea-font);
}

.wompea-home-hero::before,
.wompea-home-hero::after {
    position: absolute;
    z-index: -1;
    width: 290px;
    height: 290px;
    border: 1px solid rgb(1 43 76 / 8%);
    border-radius: 50%;
    content: "";
}

.wompea-home-hero::before {
    top: -190px;
    left: 42%;
}

.wompea-home-hero::after {
    right: -190px;
    bottom: -170px;
}

.wompea-home-hero__grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .28;
    background-image: radial-gradient(rgb(1 43 76 / 17%) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(90deg, transparent 0, #000 18%, transparent 58%);
    pointer-events: none;
}

.wompea-home-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    align-items: center;
    gap: clamp(26px, 5vw, 74px);
    width: min(1240px, calc(100% - 48px));
    min-height: 620px;
    margin: 0 auto;
    padding: clamp(54px, 7vw, 92px) 0;
}

.wompea-home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.wompea-home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    padding: 9px 14px;
    border: 1px solid rgb(42 133 159 / 17%);
    border-radius: 999px;
    color: var(--wompea-ink);
    background: rgb(255 255 255 / 82%);
    box-shadow: 0 8px 26px rgb(1 43 76 / 7%);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wompea-home-hero__eyebrow svg {
    width: 18px;
    height: 18px;
    fill: rgb(251 56 86 / 13%);
    stroke: var(--wompea-secondary);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.wompea-home-hero__title {
    max-width: 780px;
    margin: 0;
    color: var(--wompea-ink);
    font-family: var(--wompea-font);
    font-size: clamp(42px, 5.15vw, 70px);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: .99;
    text-wrap: balance;
}

.wompea-home-hero__title span {
    display: block;
    color: var(--wompea-secondary);
}

.wompea-home-hero__description {
    max-width: 660px;
    margin: 25px 0 0;
    color: #405a6e;
    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 500;
    line-height: 1.62;
}

.wompea-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 31px;
}

.wompea-home-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 22px;
    border: 2px solid transparent;
    border-radius: 16px;
    font-family: var(--wompea-font);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.wompea-home-hero__button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.wompea-home-hero__button--primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--wompea-secondary), var(--wompea-primary));
    box-shadow: 0 14px 30px rgb(251 56 86 / 25%);
}

.wompea-home-hero__button--secondary {
    border-color: rgb(1 43 76 / 22%);
    color: var(--wompea-ink) !important;
    background: rgb(255 255 255 / 86%);
    box-shadow: 0 10px 24px rgb(1 43 76 / 7%);
}

.wompea-home-hero__button:hover {
    transform: translateY(-3px);
}

.wompea-home-hero__button--primary:hover {
    color: #fff !important;
    box-shadow: 0 18px 34px rgb(251 56 86 / 32%);
}

.wompea-home-hero__button--secondary:hover {
    border-color: var(--wompea-complementary);
    color: var(--wompea-complementary) !important;
    background: #fff;
    box-shadow: 0 15px 28px rgb(1 43 76 / 11%);
}

.wompea-home-hero__button:focus-visible {
    outline: 3px solid rgb(42 133 159 / 38%);
    outline-offset: 4px;
}

.wompea-home-hero__note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 22px 0 0;
    color: #5a7080;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.wompea-home-hero__note svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    fill: rgb(255 101 65 / 12%);
    stroke: var(--wompea-primary);
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.wompea-home-hero__media {
    position: relative;
    align-self: stretch;
    min-height: 500px;
}

.wompea-home-hero__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 500px);
    aspect-ratio: 1;
    border: 1px solid rgb(251 56 86 / 10%);
    border-radius: 48% 52% 45% 55% / 56% 42% 58% 44%;
    background:
        linear-gradient(145deg, rgb(255 255 255 / 88%), rgb(255 232 227 / 75%)),
        #fff;
    box-shadow:
        0 36px 80px rgb(1 43 76 / 12%),
        inset 0 1px 0 rgb(255 255 255 / 90%);
    transform: translate(-50%, -49%) rotate(-4deg);
}

.wompea-home-hero__halo::after {
    position: absolute;
    inset: 20px;
    border: 1px dashed rgb(42 133 159 / 17%);
    border-radius: inherit;
    content: "";
}

.wompea-home-hero__mascot {
    position: absolute;
    z-index: 2;
    bottom: -18px;
    left: 50%;
    width: min(108%, 555px);
    max-width: none;
    height: auto;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 22px 18px rgb(1 43 76 / 12%));
    transform: translateX(-50%);
}

.wompea-home-hero__badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 210px;
    padding: 12px 14px;
    border: 1px solid rgb(1 43 76 / 8%);
    border-radius: 15px;
    color: #405a6e;
    background: rgb(255 255 255 / 92%);
    box-shadow: 0 16px 35px rgb(1 43 76 / 13%);
    backdrop-filter: blur(10px);
    font-size: 12px;
    line-height: 1.3;
}

.wompea-home-hero__badge strong {
    display: block;
    color: var(--wompea-ink);
    font-size: 13px;
}

.wompea-home-hero__badge--price {
    top: 11%;
    left: -4%;
    animation: wompea-float 5s ease-in-out infinite;
}

.wompea-home-hero__badge--advice {
    right: -4%;
    bottom: 15%;
    animation: wompea-float 5.8s .6s ease-in-out infinite;
}

.wompea-home-hero__badge-icon,
.wompea-home-hero__badge svg {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, var(--wompea-secondary), var(--wompea-primary));
    font-size: 17px;
    font-weight: 900;
}

.wompea-home-hero__badge svg {
    padding: 8px;
    fill: none;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

@keyframes wompea-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
    .wompea-home-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
        gap: 24px;
        width: min(100% - 40px, 980px);
    }

    .wompea-home-hero__title {
        font-size: clamp(42px, 5.8vw, 58px);
    }

    .wompea-home-hero__media {
        min-height: 450px;
    }

    .wompea-home-hero__badge--price {
        left: -2%;
    }

    .wompea-home-hero__badge--advice {
        right: -2%;
    }
}

@media (max-width: 767px) {
    .wompea-home-hero {
        min-height: 0;
    }

    .wompea-home-hero__inner {
        grid-template-columns: 1fr;
        gap: 12px;
        width: min(100% - 30px, 620px);
        min-height: 0;
        padding: 44px 0 24px;
        text-align: center;
    }

    .wompea-home-hero__content {
        margin: 0 auto;
    }

    .wompea-home-hero__eyebrow {
        margin-bottom: 17px;
        font-size: 10px;
        letter-spacing: .09em;
    }

    .wompea-home-hero__title {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.01;
    }

    .wompea-home-hero__description {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.55;
    }

    .wompea-home-hero__actions {
        justify-content: center;
        margin-top: 25px;
    }

    .wompea-home-hero__button {
        flex: 1 1 210px;
        max-width: 280px;
    }

    .wompea-home-hero__note {
        justify-content: center;
        margin-top: 18px;
        font-size: 13px;
    }

    .wompea-home-hero__media {
        width: min(100%, 520px);
        min-height: 430px;
        margin: 0 auto;
    }

    .wompea-home-hero__halo {
        width: min(92vw, 430px);
    }

    .wompea-home-hero__mascot {
        bottom: -12px;
        width: min(107%, 475px);
    }

    .wompea-home-hero__badge {
        padding: 10px 11px;
        font-size: 10px;
    }

    .wompea-home-hero__badge strong {
        font-size: 11px;
    }

    .wompea-home-hero__badge--price {
        top: 10%;
        left: 0;
    }

    .wompea-home-hero__badge--advice {
        right: 0;
        bottom: 12%;
    }
}

@media (max-width: 430px) {
    .wompea-home-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wompea-home-hero__button {
        width: 100%;
        max-width: none;
    }

    .wompea-home-hero__media {
        min-height: 350px;
    }

    .wompea-home-hero__badge--price {
        top: 7%;
    }

    .wompea-home-hero__badge--advice {
        bottom: 7%;
    }

    .wompea-home-hero__badge {
        max-width: 158px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wompea-home-hero__badge,
    .wompea-home-hero__button {
        animation: none;
        transition: none;
    }
}
/* Ajuste del Hero únicamente para escritorio */
@media (min-width: 1025px) {
    .wompea-home-hero,
    .wompea-home-hero__inner {
        min-height: clamp(500px, calc(100vh - 128px), 560px);
    }

    .wompea-home-hero__inner {
        grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
        gap: clamp(30px, 4vw, 58px);
        padding: 38px 0;
    }

    .wompea-home-hero__title {
        font-size: clamp(48px, 4.25vw, 59px);
        line-height: 1.01;
    }

    .wompea-home-hero__description {
        margin-top: 18px;
        font-size: 17px;
        line-height: 1.5;
    }

    .wompea-home-hero__actions {
        margin-top: 24px;
    }

    .wompea-home-hero__note {
        margin-top: 16px;
    }

    .wompea-home-hero__media {
        min-height: 440px;
    }

    .wompea-home-hero__halo {
        width: min(100%, 430px);
    }

    .wompea-home-hero__mascot {
        bottom: -10px;
        width: min(96%, 480px);
    }

    .wompea-home-hero__badge {
        transform: scale(.92);
    }
}
/* ==========================================================
   WOMPEA HOME — BARRA DE CONFIANZA
   ========================================================== */

.wompea-home-trust-wrap.e-con,
.wompea-home-trust-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: none;
    padding: 0 !important;
    overflow: visible;
}

.wompea-home-trust-wrap > .e-con-inner {
    width: 100%;
    max-width: none;
    padding: 0;
}

.wompea-home-trust {
    position: relative;
    width: min(1200px, calc(100% - 48px));
    margin: -24px auto 0;
    border: 1px solid rgb(1 43 76 / 8%);
    border-radius: 20px;
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 18px 45px rgb(1 43 76 / 11%);
    backdrop-filter: blur(12px);
    font-family: var(--wompea-font);
}

.wompea-home-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 22px 18px;
}

.wompea-home-trust__item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 4px 20px;
}

.wompea-home-trust__item + .wompea-home-trust__item {
    border-left: 1px solid rgb(1 43 76 / 10%);
}

.wompea-home-trust__icon {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    color: var(--wompea-secondary);
    background: linear-gradient(
        145deg,
        rgb(251 56 86 / 13%),
        rgb(255 101 65 / 7%)
    );
}

.wompea-home-trust__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wompea-home-trust__item h2 {
    margin: 0 0 4px;
    color: var(--wompea-ink);
    font-family: var(--wompea-font);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.wompea-home-trust__item p {
    margin: 0;
    color: #5c7181;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .wompea-home-trust__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .wompea-home-trust__item {
        padding: 18px 22px;
    }

    .wompea-home-trust__item + .wompea-home-trust__item {
        border-left: 0;
    }

    .wompea-home-trust__item:nth-child(even) {
        border-left: 1px solid rgb(1 43 76 / 10%);
    }

    .wompea-home-trust__item:nth-child(n + 3) {
        border-top: 1px solid rgb(1 43 76 / 10%);
    }
}

@media (max-width: 600px) {
    .wompea-home-trust {
        width: calc(100% - 30px);
        margin-top: 0;
        border-radius: 18px;
    }

    .wompea-home-trust__grid {
        grid-template-columns: 1fr;
        padding: 8px 18px;
    }

    .wompea-home-trust__item {
        padding: 16px 4px;
    }

    .wompea-home-trust__item:nth-child(even),
    .wompea-home-trust__item:nth-child(n + 3) {
        border-left: 0;
        border-top: 1px solid rgb(1 43 76 / 10%);
    }

    .wompea-home-trust__item:first-child {
        border-top: 0;
    }
}
/* ==========================================================
   WOMPEA HOME — INICIATIVA FAMILIAR
   ========================================================== */

.wompea-home-initiative-wrap.e-con,
.wompea-home-initiative-wrap {
    width: 100%;
    max-width: none;
    padding: 0 !important;
}

.wompea-home-initiative-wrap > .e-con-inner {
    width: 100%;
    max-width: none;
    padding: 0;
}

.wompea-home-initiative {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 110px) 24px;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgb(255 101 65 / 9%),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 85%,
            rgb(42 133 159 / 8%),
            transparent 27%
        ),
        #fff;
    font-family: var(--wompea-font);
}

.wompea-home-initiative__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    align-items: center;
    gap: clamp(34px, 5vw, 72px);
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgb(1 43 76 / 8%);
    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            rgb(255 255 255 / 98%),
            rgb(255 248 246 / 96%)
        );
    box-shadow: 0 28px 70px rgb(1 43 76 / 10%);
}

.wompea-home-initiative__media {
    position: relative;
    overflow: visible;
    border-radius: 25px;
}

.wompea-home-initiative__media::before {
    position: absolute;
    z-index: 0;
    inset: -12px;
    border: 1px dashed rgb(251 56 86 / 20%);
    border-radius: 30px;
    content: "";
}

.wompea-home-initiative__media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 45px rgb(1 43 76 / 16%);
}

.wompea-home-initiative__family {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: -24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgb(1 43 76 / 8%);
    border-radius: 16px;
    color: #5b7080;
    background: rgb(255 255 255 / 94%);
    box-shadow: 0 14px 32px rgb(1 43 76 / 15%);
    backdrop-filter: blur(10px);
    font-size: 12px;
    line-height: 1.25;
}

.wompea-home-initiative__family strong {
    display: block;
    color: var(--wompea-ink);
    font-size: 14px;
}

.wompea-home-initiative__family svg {
    width: 32px;
    height: 32px;
    padding: 7px;
    border-radius: 10px;
    fill: rgb(251 56 86 / 13%);
    stroke: var(--wompea-secondary);
    stroke-width: 1.8;
}

.wompea-home-initiative__content {
    padding: 20px 12px;
}

.wompea-home-initiative__eyebrow {
    display: inline-flex;
    margin: 0 0 17px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--wompea-ink);
    background: rgb(42 133 159 / 10%);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wompea-home-initiative__title {
    margin: 0;
    color: var(--wompea-ink);
    font-family: var(--wompea-font);
    font-size: clamp(37px, 3.5vw, 51px);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.04;
    text-wrap: balance;
}

.wompea-home-initiative__title span {
    display: block;
    color: var(--wompea-secondary);
}

.wompea-home-initiative__text {
    margin: 19px 0 0;
    color: #4c6475;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

.wompea-home-initiative__commitment {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding: 15px 17px;
    border-left: 4px solid var(--wompea-primary);
    border-radius: 0 15px 15px 0;
    background: rgb(255 101 65 / 8%);
}

.wompea-home-initiative__commitment svg {
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--wompea-primary);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.wompea-home-initiative__commitment p {
    margin: 0;
    color: #4c6475;
    font-size: 13px;
    line-height: 1.5;
}

.wompea-home-initiative__commitment strong {
    color: var(--wompea-ink);
}

.wompea-home-initiative__actions {
    margin-top: 25px;
}

.wompea-home-initiative__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 21px;
    border-radius: 15px;
    color: #fff !important;
    background:
        linear-gradient(
            135deg,
            var(--wompea-secondary),
            var(--wompea-primary)
        );
    box-shadow: 0 14px 28px rgb(251 56 86 / 24%);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none !important;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.wompea-home-initiative__button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.wompea-home-initiative__button:hover {
    color: #fff !important;
    box-shadow: 0 18px 34px rgb(251 56 86 / 32%);
    transform: translateY(-3px);
}

.wompea-home-initiative__button:focus-visible {
    outline: 3px solid rgb(42 133 159 / 35%);
    outline-offset: 4px;
}

.wompea-home-initiative__signature {
    margin: 14px 0 0;
    color: var(--wompea-muted);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 960px) {
    .wompea-home-initiative__inner {
        grid-template-columns: 1fr;
        width: min(760px, 100%);
    }

    .wompea-home-initiative__content {
        padding: 28px 10px 12px;
    }
}

@media (max-width: 600px) {
    .wompea-home-initiative {
        padding: 58px 15px;
    }

    .wompea-home-initiative__inner {
        gap: 28px;
        padding: 14px;
        border-radius: 24px;
    }

    .wompea-home-initiative__media,
    .wompea-home-initiative__media img {
        border-radius: 18px;
    }

    .wompea-home-initiative__media::before {
        display: none;
    }

    .wompea-home-initiative__family {
        right: 10px;
        bottom: -22px;
        padding: 9px 12px;
    }

    .wompea-home-initiative__family svg {
        width: 28px;
        height: 28px;
    }

    .wompea-home-initiative__content {
        padding: 25px 5px 10px;
    }

    .wompea-home-initiative__title {
        font-size: clamp(34px, 10vw, 42px);
    }

    .wompea-home-initiative__text {
        font-size: 14px;
    }

    .wompea-home-initiative__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wompea-home-initiative__button {
        transition: none;
    }
}
/* Ajuste de proporciones — Iniciativa familiar en escritorio */
@media (min-width: 961px) {
    .wompea-home-initiative__inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
        gap: clamp(34px, 4vw, 52px);
        padding: 28px;
    }

    .wompea-home-initiative__media img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center;
    }

    .wompea-home-initiative__content {
        padding: 6px 4px;
    }

    .wompea-home-initiative__eyebrow {
        margin-bottom: 12px;
        padding: 7px 12px;
        font-size: 10px;
    }

    .wompea-home-initiative .wompea-home-initiative__title {
        font-size: clamp(35px, 3vw, 41px);
        line-height: 1.02;
        letter-spacing: -.035em;
    }

    .wompea-home-initiative__text {
        margin-top: 13px;
        font-size: 14px;
        line-height: 1.55;
    }

    .wompea-home-initiative__commitment {
        margin-top: 16px;
        padding: 12px 14px;
    }

    .wompea-home-initiative__commitment p {
        font-size: 12px;
        line-height: 1.45;
    }

    .wompea-home-initiative__actions {
        margin-top: 18px;
    }

    .wompea-home-initiative__button {
        min-height: 48px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .wompea-home-initiative__signature {
        margin-top: 11px;
        font-size: 11px;
    }
}
.wompea-planes,
.wompea-planes * {
    box-sizing: border-box;
}

.wompea-planes {
    --wompea-navy: #002f4f;
    --wompea-blue: #2e8fa6;
    --wompea-coral: #ff3856;
    --wompea-orange: #ff6848;
    --wompea-ink: #173b55;
    --wompea-muted: #60798c;
    --wompea-line: #dce8ee;
    --wompea-soft: #f5f9fb;
    padding: clamp(56px, 7vw, 94px) 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    color: var(--wompea-ink);
}

.wompea-planes__container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.wompea-planes__header {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.wompea-planes__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--wompea-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
}

.wompea-planes__header h2 {
    margin: 0;
    color: var(--wompea-navy);
    font-size: clamp(31px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.wompea-planes__header h2 span {
    color: var(--wompea-coral);
}

.wompea-planes__header p {
    max-width: 650px;
    margin: 17px auto 0;
    color: var(--wompea-muted);
    font-size: 16px;
    line-height: 1.6;
}

.wompea-planes__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.wompea-plan {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 30px 27px 24px;
    overflow: hidden;
    border: 1px solid var(--wompea-line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 42px rgba(0, 47, 79, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.wompea-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 47, 79, .13);
}

.wompea-plan--featured {
    border: 2px solid var(--wompea-coral);
    box-shadow: 0 18px 52px rgba(255, 56, 86, .18);
}

.wompea-plan__featured-label {
    margin: -30px -27px 24px;
    padding: 10px 20px;
    background: linear-gradient(100deg, var(--wompea-coral), var(--wompea-orange));
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.wompea-plan__top {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 15px;
    align-items: start;
}

.wompea-plan__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    background: #eaf7fa;
    color: var(--wompea-blue);
    font-size: 24px;
    font-weight: 800;
}

.wompea-plan--business .wompea-plan__icon {
    background: #eaf0f5;
    color: var(--wompea-navy);
}

.wompea-plan--store .wompea-plan__icon {
    background: #fff0f2;
    color: var(--wompea-coral);
}

.wompea-plan__label {
    margin: 0 0 4px;
    color: var(--wompea-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
}

.wompea-plan--business .wompea-plan__label {
    color: var(--wompea-navy);
}

.wompea-plan--store .wompea-plan__label {
    color: var(--wompea-coral);
}

.wompea-plan h3 {
    margin: 0;
    color: var(--wompea-navy);
    font-size: clamp(22px, 2vw, 27px);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.wompea-plan__audience {
    margin: 7px 0 0;
    color: var(--wompea-muted);
    font-size: 14px;
    line-height: 1.45;
}

.wompea-plan__price {
    margin: 25px 0 23px;
    padding: 20px 18px;
    border-radius: 16px;
    background: var(--wompea-soft);
    text-align: center;
}

.wompea-plan__price > p:first-child {
    margin: 0 0 5px;
    color: var(--wompea-muted);
    font-size: 13px;
}

.wompea-plan__price del {
    margin-left: 3px;
}

.wompea-plan__price > div {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 7px;
    color: var(--wompea-coral);
}

.wompea-plan__price > div span {
    font-size: 14px;
    font-weight: 700;
}

.wompea-plan__price strong {
    font-size: clamp(34px, 3vw, 43px);
    line-height: 1;
    letter-spacing: -.045em;
}

.wompea-plan__saving {
    display: inline-flex;
    margin: 13px 0 0;
    padding: 7px 10px;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: #ffe5e9;
    color: var(--wompea-coral);
    font-size: 13px;
    font-weight: 800;
}

.wompea-plan__saving b {
    padding: 3px 7px;
    border-radius: 999px;
    background: var(--wompea-coral);
    color: #ffffff;
    font-size: 11px;
}

.wompea-plan--store .wompea-plan__price {
    background: linear-gradient(135deg, #fff6f7, #fff0e9);
}

.wompea-plan__scope {
    flex: 1;
}

.wompea-plan__scope-title {
    min-height: 42px;
    margin: 0 0 15px;
    color: var(--wompea-navy);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.wompea-plan__scope ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wompea-plan__scope li {
    position: relative;
    padding: 10px 0 10px 25px;
    border-bottom: 1px solid #e8eff3;
    color: #466478;
    font-size: 14px;
    line-height: 1.35;
}

.wompea-plan__scope li::before {
    position: absolute;
    top: 10px;
    left: 1px;
    color: var(--wompea-coral);
    content: "✓";
    font-size: 15px;
    font-weight: 900;
}

.wompea-plan__cta {
    display: flex;
    min-height: 50px;
    margin-top: 25px;
    padding: 12px 18px;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border: 2px solid currentColor;
    border-radius: 11px;
    color: var(--wompea-blue);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.wompea-plan__cta:hover,
.wompea-plan__cta:focus-visible {
    background: var(--wompea-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.wompea-plan--business .wompea-plan__cta {
    border-color: var(--wompea-navy);
    background: var(--wompea-navy);
    color: #ffffff;
}

.wompea-plan--business .wompea-plan__cta:hover,
.wompea-plan--business .wompea-plan__cta:focus-visible {
    background: #001f35;
}

.wompea-plan--store .wompea-plan__cta {
    border-color: var(--wompea-coral);
    background: linear-gradient(100deg, var(--wompea-coral), var(--wompea-orange));
    color: #ffffff;
}

.wompea-plan--store .wompea-plan__cta:hover,
.wompea-plan--store .wompea-plan__cta:focus-visible {
    background: var(--wompea-coral);
}

.wompea-plan__delivery {
    margin: 12px 0 0;
    color: var(--wompea-muted);
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
}

.wompea-planes__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 25px;
    padding: 18px 24px;
    border: 1px solid var(--wompea-line);
    border-radius: 16px;
    background: #ffffff;
    color: var(--wompea-navy);
    box-shadow: 0 10px 30px rgba(0, 47, 79, .06);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.wompea-planes__legal {
    margin: 18px auto 0;
    color: #718593;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 1024px) {
    .wompea-planes__grid {
        gap: 15px;
    }

    .wompea-plan {
        padding-right: 20px;
        padding-left: 20px;
    }

    .wompea-plan__featured-label {
        margin-right: -20px;
        margin-left: -20px;
    }

    .wompea-plan__top {
        grid-template-columns: 46px 1fr;
        gap: 11px;
    }

    .wompea-plan__icon {
        width: 46px;
        height: 46px;
    }

    .wompea-plan__scope li {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .wompea-planes {
        padding: 50px 15px;
    }

    .wompea-planes__header {
        margin-bottom: 30px;
    }

    .wompea-planes__header p {
        font-size: 15px;
    }

    .wompea-planes__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wompea-plan--featured {
        order: -1;
    }

    .wompea-plan:hover {
        transform: none;
    }

    .wompea-plan__scope-title {
        min-height: 0;
    }

    .wompea-planes__trust {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wompea-plan,
    .wompea-plan__cta {
        transition: none;
    }
}
.wompea-advice,
.wompea-advice * {
    box-sizing: border-box;
}

.wompea-advice {
    --wompea-advice-navy: #002f4f;
    --wompea-advice-ink: #173b55;
    --wompea-advice-muted: #557086;
    --wompea-advice-coral: #ff3856;
    --wompea-advice-orange: #ff6848;
    position: relative;
    display: grid;
    width: min(1180px, calc(100% - 32px));
    min-height: 320px;
    margin: 34px auto;
    padding: 30px 40px;
    grid-template-columns: 310px minmax(330px, 1fr) 285px;
    gap: 36px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 56, 86, .12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 255, 255, .95) 0 4%, transparent 26%),
        linear-gradient(110deg, #fff5f6 0%, #ffe9e6 54%, #fff6ee 100%);
    box-shadow: 0 20px 50px rgba(0, 47, 79, .1);
    color: var(--wompea-advice-ink);
    isolation: isolate;
}

.wompea-advice::before,
.wompea-advice::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.wompea-advice::before {
    top: -90px;
    right: -45px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 56, 86, .12);
}

.wompea-advice::after {
    right: 22%;
    bottom: -115px;
    width: 190px;
    height: 190px;
    background: rgba(255, 255, 255, .27);
}

.wompea-advice__visual {
    position: relative;
    height: 260px;
    align-self: end;
}

.wompea-advice__halo {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 245px;
    height: 245px;
    border: 1px solid rgba(255, 56, 86, .15);
    border-radius: 50%;
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 15px 38px rgba(255, 56, 86, .09);
}

.wompea-advice__visual img {
    position: absolute;
    z-index: 1;
    bottom: -39px;
    left: -12px;
    display: block;
    width: 315px;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 16px 18px rgba(0, 47, 79, .16));
}

.wompea-advice__content {
    position: relative;
    z-index: 2;
}

.wompea-advice__eyebrow {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 7px 11px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(0, 47, 79, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    color: var(--wompea-advice-navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wompea-advice__eyebrow > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .13);
}

.wompea-advice__content h2 {
    margin: 0;
    color: var(--wompea-advice-navy);
    font-size: clamp(32px, 3.3vw, 44px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.wompea-advice__content > p {
    max-width: 510px;
    margin: 12px 0 18px;
    color: var(--wompea-advice-muted);
    font-size: 15px;
    line-height: 1.55;
}

.wompea-advice__button {
    display: inline-flex;
    min-height: 50px;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    background: linear-gradient(100deg, var(--wompea-advice-coral), var(--wompea-advice-orange));
    box-shadow: 0 10px 25px rgba(255, 56, 86, .23);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.wompea-advice__button svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.wompea-advice__button > span {
    font-size: 19px;
    line-height: 1;
}

.wompea-advice__button:hover,
.wompea-advice__button:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 56, 86, .3);
}

.wompea-advice__content small {
    display: block;
    margin-top: 8px;
    color: #718593;
    font-size: 11px;
}

.wompea-advice__benefits {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
    padding-left: 28px;
    border-left: 1px solid rgba(0, 47, 79, .12);
}

.wompea-advice__benefits > div {
    display: grid;
    min-height: 57px;
    padding: 10px 12px;
    grid-template-columns: 27px 1fr;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 12px;
    background: rgba(255, 255, 255, .48);
}

.wompea-advice__benefits span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    background: var(--wompea-advice-coral);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.wompea-advice__benefits p {
    margin: 0;
    color: var(--wompea-advice-muted);
    font-size: 12px;
    line-height: 1.35;
}

.wompea-advice__benefits strong {
    color: var(--wompea-advice-navy);
}

@media (max-width: 1024px) {
    .wompea-advice {
        min-height: 370px;
        padding: 26px 30px;
        grid-template-columns: 270px 1fr;
        gap: 25px;
    }

    .wompea-advice__visual {
        height: 280px;
        grid-row: 1 / span 2;
    }

    .wompea-advice__visual img {
        bottom: -33px;
        left: -18px;
        width: 290px;
    }

    .wompea-advice__halo {
        width: 225px;
        height: 225px;
    }

    .wompea-advice__benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
        padding: 12px 0 0;
        border-top: 1px solid rgba(0, 47, 79, .12);
        border-left: 0;
    }

    .wompea-advice__benefits > div {
        min-height: 68px;
        padding: 8px;
        grid-template-columns: 24px 1fr;
        gap: 7px;
    }
}

@media (max-width: 767px) {
    .wompea-advice {
        width: min(100% - 24px, 520px);
        min-height: 0;
        margin: 25px auto;
        padding: 0 20px 24px;
        grid-template-columns: 1fr;
        gap: 16px;
        border-radius: 22px;
        text-align: center;
    }

    .wompea-advice__visual {
        width: 100%;
        height: 192px;
        grid-row: auto;
        align-self: auto;
    }

    .wompea-advice__halo {
        top: 8px;
        left: 50%;
        width: 190px;
        height: 190px;
        transform: translateX(-50%);
    }

    .wompea-advice__visual img {
        right: auto;
        bottom: -28px;
        left: 50%;
        width: 225px;
        transform: translateX(-50%);
    }

    .wompea-advice__content h2 {
        font-size: 32px;
    }

    .wompea-advice__content > p {
        margin-right: auto;
        margin-left: auto;
        font-size: 14px;
    }

    .wompea-advice__button {
        width: 100%;
    }

    .wompea-advice__benefits {
        grid-template-columns: 1fr;
        gap: 7px;
        padding-top: 14px;
        text-align: left;
    }

    .wompea-advice__benefits > div {
        min-height: 49px;
        padding: 8px 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wompea-advice__button {
        transition: none;
    }
}
.wompea-payment,
.wompea-payment * {
    box-sizing: border-box;
}

.wompea-payment {
    --wompea-payment-navy: #002f4f;
    --wompea-payment-blue: #075476;
    --wompea-payment-coral: #ff4963;
    position: relative;
    display: grid;
    width: min(1180px, calc(100% - 32px));
    min-height: 230px;
    margin: 30px auto;
    padding: 29px 34px 20px;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 18px 28px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 25px;
    background:
        radial-gradient(circle at 93% 4%, rgba(255, 73, 99, .19), transparent 28%),
        linear-gradient(120deg, var(--wompea-payment-navy) 0%, #003d61 56%, var(--wompea-payment-blue) 100%);
    box-shadow: 0 20px 48px rgba(0, 47, 79, .18);
    color: #ffffff;
    isolation: isolate;
}

.wompea-payment::before,
.wompea-payment::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.wompea-payment::before {
    top: -105px;
    left: -75px;
    width: 230px;
    height: 230px;
}

.wompea-payment::after {
    right: -35px;
    bottom: -115px;
    width: 220px;
    height: 220px;
}

.wompea-payment__intro {
    position: relative;
    z-index: 1;
}

.wompea-payment__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #ff9aab;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.wompea-payment__intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(27px, 2.5vw, 35px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.wompea-payment__intro h2 span {
    color: #ff7d91;
}

.wompea-payment__intro p {
    margin: 11px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    line-height: 1.5;
}

.wompea-payment__points {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.wompea-payment__points article {
    min-width: 0;
    min-height: 115px;
    padding: 14px 13px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(5px);
}

.wompea-payment__points article > span {
    display: grid;
    width: 28px;
    height: 28px;
    margin-bottom: 9px;
    place-items: center;
    border-radius: 9px;
    background: var(--wompea-payment-coral);
    box-shadow: 0 6px 14px rgba(255, 73, 99, .25);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
}

.wompea-payment__points h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.wompea-payment__points p {
    margin: 0;
    color: rgba(255, 255, 255, .69);
    font-size: 11px;
    line-height: 1.42;
}

.wompea-payment__note {
    position: relative;
    z-index: 1;
    margin: 0;
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    line-height: 1.45;
    text-align: right;
}

.wompea-payment__note strong {
    color: rgba(255, 255, 255, .82);
}

@media (max-width: 1024px) {
    .wompea-payment {
        min-height: 0;
        grid-template-columns: 260px 1fr;
    }

    .wompea-payment__points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wompea-payment__points article {
        min-height: 104px;
    }
}

@media (max-width: 767px) {
    .wompea-payment {
        width: min(100% - 24px, 520px);
        margin: 24px auto;
        padding: 27px 20px 20px;
        grid-template-columns: 1fr;
        gap: 22px;
        border-radius: 22px;
    }

    .wompea-payment__intro {
        text-align: center;
    }

    .wompea-payment__intro p {
        max-width: 410px;
        margin-right: auto;
        margin-left: auto;
    }

    .wompea-payment__points {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wompea-payment__points article {
        display: grid;
        min-height: 0;
        padding: 12px;
        grid-template-columns: 32px 1fr;
        column-gap: 10px;
        align-items: center;
    }

    .wompea-payment__points article > span {
        margin: 0;
        grid-row: 1 / span 2;
    }

    .wompea-payment__points h3 {
        margin-bottom: 2px;
    }

    .wompea-payment__note {
        grid-column: auto;
        text-align: center;
    }
}
.wompea-allies,
.wompea-allies * {
    box-sizing: border-box;
}

.wompea-allies {
    --wompea-allies-navy: #002f4f;
    --wompea-allies-blue: #278ca4;
    --wompea-allies-coral: #ff3f5c;
    --wompea-allies-orange: #ff6848;
    --wompea-allies-ink: #173b55;
    --wompea-allies-muted: #5b7487;
    position: relative;
    display: grid;
    width: min(1180px, calc(100% - 32px));
    min-height: 370px;
    margin: 34px auto;
    padding: 38px 42px 27px;
    grid-template-columns: minmax(320px, .88fr) minmax(480px, 1.12fr);
    gap: 26px 45px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #d9e9ef;
    border-radius: 28px;
    background:
        radial-gradient(circle at 7% 10%, rgba(255, 255, 255, .95), transparent 28%),
        radial-gradient(circle at 94% 90%, rgba(255, 63, 92, .08), transparent 27%),
        linear-gradient(120deg, #f7fbfd 0%, #eaf7fa 100%);
    box-shadow: 0 18px 48px rgba(0, 47, 79, .09);
    color: var(--wompea-allies-ink);
    isolation: isolate;
}

.wompea-allies::before,
.wompea-allies::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.wompea-allies::before {
    top: -95px;
    right: 31%;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(39, 140, 164, .12);
}

.wompea-allies::after {
    right: -45px;
    bottom: -75px;
    width: 170px;
    height: 170px;
    border: 24px solid rgba(255, 255, 255, .32);
}

.wompea-allies__intro,
.wompea-allies__ways,
.wompea-allies__note {
    position: relative;
    z-index: 1;
}

.wompea-allies__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--wompea-allies-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
}

.wompea-allies__intro h2 {
    max-width: 440px;
    margin: 0;
    color: var(--wompea-allies-navy);
    font-size: clamp(34px, 3.5vw, 47px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.wompea-allies__intro h2 span {
    color: var(--wompea-allies-coral);
}

.wompea-allies__intro > p {
    max-width: 475px;
    margin: 15px 0 20px;
    color: var(--wompea-allies-muted);
    font-size: 14px;
    line-height: 1.55;
}

.wompea-allies__button {
    display: inline-flex;
    min-height: 49px;
    padding: 12px 19px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    background: linear-gradient(100deg, var(--wompea-allies-coral), var(--wompea-allies-orange));
    box-shadow: 0 10px 24px rgba(255, 63, 92, .2);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.wompea-allies__button > span {
    font-size: 19px;
    line-height: 1;
}

.wompea-allies__button:hover,
.wompea-allies__button:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 63, 92, .28);
}

.wompea-allies__audiences {
    display: flex;
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 6px;
}

.wompea-allies__audiences span {
    padding: 6px 9px;
    border: 1px solid rgba(0, 47, 79, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    color: #547083;
    font-size: 10px;
    font-weight: 700;
}

.wompea-allies__ways {
    display: grid;
    gap: 10px;
}

.wompea-allies__ways article {
    display: grid;
    min-height: 86px;
    padding: 15px 17px;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(0, 47, 79, .09);
    border-radius: 16px;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 8px 22px rgba(0, 47, 79, .055);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wompea-allies__ways article:hover {
    border-color: rgba(255, 63, 92, .25);
    box-shadow: 0 12px 26px rgba(0, 47, 79, .09);
    transform: translateX(4px);
}

.wompea-allies__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: #fff0f2;
    color: var(--wompea-allies-coral);
}

.wompea-allies__icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.wompea-allies__ways article:nth-child(2) .wompea-allies__icon {
    background: #eaf7fa;
    color: var(--wompea-allies-blue);
}

.wompea-allies__ways article:nth-child(3) .wompea-allies__icon {
    background: #eef3f7;
    color: var(--wompea-allies-navy);
}

.wompea-allies__ways article > div:last-child > span {
    display: block;
    margin-bottom: 3px;
    color: var(--wompea-allies-coral);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
}

.wompea-allies__ways article:nth-child(2) > div:last-child > span {
    color: var(--wompea-allies-blue);
}

.wompea-allies__ways article:nth-child(3) > div:last-child > span {
    color: var(--wompea-allies-navy);
}

.wompea-allies__ways h3 {
    margin: 0 0 4px;
    color: var(--wompea-allies-navy);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.wompea-allies__ways p {
    margin: 0;
    color: var(--wompea-allies-muted);
    font-size: 12px;
    line-height: 1.4;
}

.wompea-allies__note {
    margin: 0;
    padding-top: 13px;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(0, 47, 79, .08);
    color: #6c8291;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1024px) {
    .wompea-allies {
        min-height: 0;
        padding: 34px 30px 24px;
        grid-template-columns: minmax(270px, .8fr) minmax(380px, 1.2fr);
        gap: 24px;
    }

    .wompea-allies__intro h2 {
        font-size: 36px;
    }

    .wompea-allies__ways article {
        padding: 13px;
    }
}

@media (max-width: 767px) {
    .wompea-allies {
        width: min(100% - 24px, 540px);
        margin: 25px auto;
        padding: 30px 18px 22px;
        grid-template-columns: 1fr;
        gap: 24px;
        border-radius: 22px;
    }

    .wompea-allies__intro {
        text-align: center;
    }

    .wompea-allies__intro h2 {
        max-width: 470px;
        margin-right: auto;
        margin-left: auto;
        font-size: 34px;
    }

    .wompea-allies__intro > p {
        margin-right: auto;
        margin-left: auto;
    }

    .wompea-allies__button {
        width: 100%;
    }

    .wompea-allies__audiences {
        justify-content: center;
    }

    .wompea-allies__ways article:hover {
        transform: none;
    }

    .wompea-allies__note {
        grid-column: auto;
        line-height: 1.45;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wompea-allies__button,
    .wompea-allies__ways article {
        transition: none;
    }
}
/* ==========================================================
   WOMPEA — RECURSOS EN EL HOME
   Contenedor: wompea-resources
   Loop Grid: wompea-resources__grid
   Loop Item: wompea-resource-card
   ========================================================== */

.wompea-resources {
    --wompea-resources-navy: #002f4f;
    --wompea-resources-coral: #ff3f5c;
    --wompea-resources-orange: #ff6848;
    --wompea-resources-blue: #278ca4;
    --wompea-resources-text: #526f83;
    --wompea-resources-line: #dfe9ee;
    width: 100%;
    padding: clamp(66px, 8vw, 105px) 0;
    background:
        radial-gradient(circle at 9% 8%, rgba(255, 63, 92, .06), transparent 23%),
        linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
}

.wompea-resources__inner.e-con,
.wompea-resources__inner {
    width: min(1120px, calc(100% - 40px));
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
}

.wompea-resources__heading {
    display: flex;
    margin-bottom: 34px;
    justify-content: space-between;
    align-items: flex-end;
    gap: 26px;
}

.wompea-resources__heading-copy {
    max-width: 720px;
}

.wompea-resources__eyebrow {
    display: inline-flex;
    margin-bottom: 11px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffecef;
    color: var(--wompea-resources-coral);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.wompea-resources__heading h2 {
    margin: 0;
    color: var(--wompea-resources-navy);
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.wompea-resources__heading p {
    max-width: 650px;
    margin: 13px 0 0;
    color: var(--wompea-resources-text);
    font-size: 15px;
    line-height: 1.65;
}

.wompea-resources__all {
    display: inline-flex;
    min-height: 46px;
    padding: 11px 16px;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border: 1px solid #ffc6cf;
    border-radius: 12px;
    background: #ffffff;
    color: var(--wompea-resources-coral);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 9px 24px rgba(0, 47, 79, .06);
    transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.wompea-resources__all:hover,
.wompea-resources__all:focus-visible {
    border-color: var(--wompea-resources-coral);
    color: #d92745;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 47, 79, .1);
}

.wompea-resources__all span {
    font-size: 18px;
    line-height: 1;
}

.wompea-resources__grid .elementor-loop-container {
    align-items: stretch;
}

.wompea-resources__grid .e-loop-item {
    height: 100%;
}

.wompea-resources__grid .e-loop-item > .elementor {
    height: 100%;
}

.wompea-resource-card.e-con,
.wompea-resource-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 100%;
    padding: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--wompea-resources-line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 13px 36px rgba(0, 47, 79, .07);
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.wompea-resource-card:hover {
    border-color: #ffc6cf;
    transform: translateY(-6px);
    box-shadow: 0 21px 46px rgba(0, 47, 79, .12);
}

.wompea-resource-card__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #edf3f6;
}

.wompea-resource-card__media::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 36%;
    background: linear-gradient(180deg, transparent, rgba(0, 47, 79, .2));
    content: "";
    pointer-events: none;
}

.wompea-resource-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .45s ease;
}

.wompea-resource-card:hover .wompea-resource-card__media img {
    transform: scale(1.035);
}

.wompea-resource-card__body.e-con,
.wompea-resource-card__body {
    display: flex;
    min-height: 0;
    padding: 23px 23px 24px;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
}

.wompea-resource-card__meta.e-con,
.wompea-resource-card__meta {
    display: flex;
    width: 100%;
    margin-bottom: 13px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.wompea-resource-card__category,
.wompea-resource-card__date {
    width: auto;
}

.wompea-resource-card__category .elementor-icon-list-items,
.wompea-resource-card__date .elementor-icon-list-items {
    margin: 0;
    padding: 0;
}

.wompea-resource-card__category .elementor-icon-list-item,
.wompea-resource-card__date .elementor-icon-list-item {
    margin: 0;
    padding: 0;
}

.wompea-resource-card__category .elementor-icon-list-text,
.wompea-resource-card__category a {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: #ffecef;
    color: var(--wompea-resources-coral) !important;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.wompea-resource-card__category a {
    pointer-events: none;
}

.wompea-resource-card__date .elementor-icon-list-text {
    color: #7b909e;
    font-size: 11px;
    font-weight: 700;
}

.wompea-resource-card__category .elementor-icon-list-icon,
.wompea-resource-card__date .elementor-icon-list-icon {
    display: none;
}

.wompea-resource-card__title {
    margin-bottom: 12px;
}

.wompea-resource-card__title .elementor-heading-title {
    margin: 0;
    color: var(--wompea-resources-navy);
    font-size: clamp(21px, 2vw, 25px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.025em;
    text-wrap: balance;
}

.wompea-resource-card__title a {
    color: inherit;
    text-decoration: none;
}

.wompea-resource-card__title a:hover,
.wompea-resource-card__title a:focus-visible {
    color: var(--wompea-resources-coral);
}

.wompea-resource-card__read {
    margin-top: auto;
    padding-top: 10px;
}

.wompea-resource-card__read .elementor-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--wompea-resources-blue);
    font-size: 12px;
    font-weight: 800;
    box-shadow: none;
}

.wompea-resource-card__read .elementor-button:hover,
.wompea-resource-card__read .elementor-button:focus-visible {
    background: transparent;
    color: var(--wompea-resources-coral);
}

.wompea-resource-card__read .elementor-button-text::after {
    margin-left: 7px;
    content: "→";
    font-size: 15px;
}

@media (max-width: 767px) {
    .wompea-resources {
        padding: 58px 0;
    }

    .wompea-resources__inner.e-con,
    .wompea-resources__inner {
        width: min(100% - 24px, 620px);
    }

    .wompea-resources__heading {
        margin-bottom: 25px;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .wompea-resources__heading h2 {
        font-size: 34px;
    }

    .wompea-resources__heading p {
        font-size: 14px;
    }

    .wompea-resources__all {
        width: 100%;
    }

    .wompea-resource-card__body.e-con,
    .wompea-resource-card__body {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wompea-resource-card,
    .wompea-resource-card__media img,
    .wompea-resources__all {
        transition: none;
    }
}

/* ==========================================================
   CORRECCIÓN V1.2
   Restablece hasta tres tarjetas y neutraliza la versión 1.1.
   Este bloque debe permanecer al final del archivo.
   ========================================================== */

.wompea-resources__grid .elementor-loop-container {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.wompea-resources__grid .e-loop-item,
.wompea-resources__grid .e-loop-item:nth-child(n + 2) {
    display: block !important;
}

.wompea-resource-card.e-con-boxed > .e-con-inner {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.wompea-resource-card__media {
    width: 100%;
    height: auto;
    min-height: 0;
}

.wompea-resource-card__media .elementor-widget-container,
.wompea-resource-card__media a {
    display: block;
    width: 100%;
    height: auto;
}

.wompea-resource-card__media img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.wompea-resource-card__body.e-con,
.wompea-resource-card__body {
    width: 100%;
    padding: 23px 23px 24px;
    justify-content: flex-start;
}

.wompea-resource-card__body > .e-con,
.wompea-resource-card__title {
    width: 100%;
    max-width: none;
}

.wompea-resource-card__title .elementor-heading-title {
    font-size: clamp(21px, 2vw, 25px);
}

@media (max-width: 1024px) {
    .wompea-resources__grid .elementor-loop-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .wompea-resources__grid .elementor-loop-container {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .wompea-resource-card__body.e-con,
    .wompea-resource-card__body {
        padding: 20px;
    }
}

/* ==========================================================
   DISEÑO V1.3
   Tarjetas más compactas, título azul y extracto uniforme.
   Este bloque debe permanecer al final del archivo.
   ========================================================== */

.wompea-resources {
    padding: clamp(56px, 6vw, 78px) 0;
}

.wompea-resources__heading {
    margin-bottom: 28px;
}

.wompea-resource-card__media img {
    aspect-ratio: 16 / 8.5;
}

.wompea-resource-card__body.e-con,
.wompea-resource-card__body {
    padding: 18px 20px 21px;
    gap: 0;
}

.wompea-resource-card__body > .e-con {
    width: 100%;
    max-width: none;
    gap: 0;
}

.wompea-resource-card__meta.e-con,
.wompea-resource-card__meta {
    margin-bottom: 10px;
}

.wompea-resource-card__title {
    width: 100%;
    max-width: none;
    margin: 0 0 9px;
}

.wompea-resource-card__title .elementor-heading-title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--wompea-resources-navy) !important;
    font-size: clamp(20px, 1.75vw, 23px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.025em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.wompea-resource-card__title a,
.wompea-resource-card__title a:hover,
.wompea-resource-card__title a:focus-visible {
    color: inherit !important;
}

.wompea-resource-card__excerpt {
    width: 100%;
    margin: 0;
    color: var(--wompea-resources-text);
    font-size: 13.5px;
    line-height: 1.5;
}

.wompea-resource-card__excerpt .elementor-widget-container,
.wompea-resource-card__excerpt p {
    margin: 0;
}

.wompea-resource-card__excerpt .elementor-widget-container {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wompea-resource-card__read {
    margin-top: auto;
    padding-top: 13px;
}

@media (max-width: 767px) {
    .wompea-resources {
        padding: 50px 0;
    }

    .wompea-resource-card__body.e-con,
    .wompea-resource-card__body {
        padding: 18px;
    }

    .wompea-resource-card__title .elementor-heading-title {
        font-size: 20px;
    }
}

/* ==========================================================
   AJUSTE V1.4
   Corrige el ancho del widget H3 y mejora su lectura.
   Este bloque debe permanecer al final del archivo.
   ========================================================== */

.wompea-resource-card__body .wompea-resource-card__title.elementor-widget,
.wompea-resource-card__title {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    align-self: stretch !important;
    --container-widget-width: 100% !important;
    --container-widget-flex-grow: 0 !important;
}

.wompea-resource-card__title .elementor-widget-container {
    width: 100%;
    max-width: 100%;
}

.wompea-resource-card__title .elementor-heading-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(17px, 1.35vw, 19px);
    line-height: 1.24;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: wrap;
    hyphens: none;
    -webkit-line-clamp: 3;
}

@media (max-width: 767px) {
    .wompea-resource-card__title .elementor-heading-title {
        font-size: 18px;
    }
}