:root {
    --cream:       #FBE4B5;
    --cream-dark:  #F4D79A;
    --pink:        #E63888;
    --pink-dark:   #C2236E;
    --orange:      #F26B38;
    --orange-dark: #D84B18;
    --yellow:      #FFD23F;
    --blue:        #4E89C9;
    --ink:         #1A1A1A;
    --ink-soft:    #3B3228;
    --muted:       #7A6A5C;
    --line:        rgba(26, 26, 26, .12);
    --white:       #FFFFFF;

    --font-display: 'Boldonse', Impact, "Arial Black", sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --radius:      18px;
    --radius-lg:   28px;
    --radius-pill: 999px;
    --shadow:      0 20px 40px rgba(0, 0, 0, .08);

    --header-h: max(60px, calc(clamp(32px, 3.68vw, 44px) + 1rem));

    --bp-desktop: 992px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
}
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .15s ease; }
a:hover { opacity: .85; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 9999;
    background: var(--ink);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 8px 0;
    font-weight: 700;
    text-decoration: none;
    transition: left .15s ease;
}
.skip-link:focus {
    left: 0;
    opacity: 1;
    outline: 2px solid var(--pink);
    outline-offset: -2px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(22px, 4vw, 32px);
}
.site-content {
    min-height: 40vh;
    min-height: 40dvh;
}

.site-header {
    background: var(--cream);
    border-bottom: 1px solid rgba(26, 26, 26, .08);
    position: sticky; top: 0; z-index: 100;
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: var(--header-h); position: relative;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.site-title {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: .03em;
    color: var(--ink);
    line-height: 1;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.custom-logo-link:hover { opacity: .9; }
.custom-logo {
    height: clamp(32px, 3.68vw, 44px);
    width: auto;
    max-width: 100%;
    display: block;
}

.site-header__toggle {
    display: inline-flex;
    position: fixed;
    top: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pink);
    border: 0;
    cursor: pointer;
    z-index: 150;
    padding: 0;
    box-shadow: 0 10px 28px rgba(230, 56, 136, .4);
    transition: transform .25s ease, background .25s ease;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-direction: column;
}
.site-header__toggle:hover { transform: scale(1.05); }
.site-header__toggle:active { transform: scale(.95); }
.site-header__toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
    transform-origin: center;
}
.site-header__toggle.is-open {
    background: var(--ink);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .4);
}
.site-header__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header__toggle.is-open span:nth-child(2) { opacity: 0; }
.site-header__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.admin-bar .site-header__toggle { top: 50px; }
@media (max-width: 782px) {
    .admin-bar .site-header__toggle { top: 64px; }
}

.site-nav {
    position: fixed;
    top: 84px;
    right: 18px;
    width: min(280px, calc(100vw - 36px));
    background: var(--cream);
    color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: 18px;
    padding: 14px 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(.85) translateY(-8px);
    transform-origin: top right;
    transition: opacity .2s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1), visibility .3s;
    z-index: 140;
}
.site-nav::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: var(--cream);
    border-top: 1.5px solid var(--ink);
    border-left: 1.5px solid var(--ink);
    transform: rotate(45deg);
}
.site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}
.admin-bar .site-nav { top: 116px; }
@media (max-width: 782px) { .admin-bar .site-nav { top: 130px; } }

.primary-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.primary-menu li { width: 100%; }
.primary-menu a {
    display: block;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 12px 14px;
    border-radius: 10px;
    transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .2s ease;
}
.primary-menu a:hover {
    background: rgba(26, 26, 26, .08);
    color: var(--pink);
    opacity: 1;
}
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    background: rgba(230, 56, 136, .12);
    color: var(--pink);
}
.primary-menu a[href*="/empezar"] {
    background: var(--pink);
    color: #fff;
    text-align: center;
    margin-top: 8px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 14px rgba(230, 56, 136, .3);
}
.primary-menu a[href*="/empezar"]:hover {
    background: var(--pink-dark);
    color: #fff;
}

@media (min-width: 992px) {
    .site-header__toggle { display: none; }

    .site-nav {
        position: fixed;
        top: 0;
        right: max(clamp(22px, 4vw, 32px), calc((100vw - 1200px) / 2 + clamp(22px, 4vw, 32px)));
        height: var(--header-h);
        width: auto;
        display: flex;
        align-items: center;
        background: transparent;
        color: inherit;
        border: 0;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
        z-index: 101;
    }
    .admin-bar .site-nav { top: 32px; }
    .site-nav::after { display: none; }

    .primary-menu {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
    .primary-menu li { width: auto; }
    .primary-menu a {
        display: inline-block;
        font-family: inherit;
        font-size: .9rem;
        font-weight: 500;
        text-transform: none;
        letter-spacing: normal;
        padding: 0;
        border-radius: 0;
        color: var(--ink);
    }
    .primary-menu a:hover {
        background: transparent;
        color: var(--pink);
    }
    .primary-menu .current-menu-item > a,
    .primary-menu .current_page_item > a {
        background: transparent;
        color: var(--pink);
    }
    .primary-menu a[href*="/empezar"] {
        background: var(--pink);
        color: #fff;
        padding: .5rem 1rem;
        border-radius: var(--radius-pill);
        font-size: .9rem;
        font-weight: 700;
        letter-spacing: .3px;
        line-height: 1;
        margin-top: 0;
        box-shadow: none;
    }
    .primary-menu a[href*="/empezar"]:hover {
        background: var(--pink-dark);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(230, 56, 136, .35);
    }
    .primary-menu .current-menu-item > a[href*="/empezar"],
    .primary-menu .current_page_item  > a[href*="/empezar"] {
        background: var(--pink-dark);
        color: #fff;
    }
}

.site-main {
    padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 5vw, 5rem);
}
.site-main > article {
    max-width: 780px;
    margin: 0 auto;
}
.entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--pink);
}
.entry-title {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: 0;
    margin: 0;
    color: var(--ink);
}
body.page .entry-title { text-align: center; }
.entry-thumbnail {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.entry-content {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.75;
    text-align: justify;
}
.entry-content h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: none;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.3;
    letter-spacing: 0;
    color: var(--ink);
    margin: 2.25rem 0 .75rem;
    border-bottom: 2px solid var(--line);
    padding-bottom: .4rem;
}
.entry-content h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: none;
    font-size: 1rem;
    margin: 1.5rem 0 .5rem;
    color: var(--ink);
    letter-spacing: 0;
}
.entry-content p { margin: 0 0 1rem; }
.entry-content ul,
.entry-content ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
    text-align: left;
}
.entry-content li { margin-bottom: .4rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content a {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.entry-content strong { color: var(--ink); font-weight: 700; }
.entry-content em:first-child {
    display: block;
    background: rgba(230, 56, 136, .08);
    border-left: 3px solid var(--pink);
    padding: .8rem 1rem;
    border-radius: 4px;
    margin: 0 0 1.75rem;
    font-style: normal;
    font-size: .92rem;
    color: var(--muted);
    text-align: left;
}
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0 1.75rem;
    font-size: .92rem;
    text-align: left;
}
.entry-content table th,
.entry-content table td {
    border: 1px solid var(--line);
    padding: .6rem .9rem;
    vertical-align: top;
    line-height: 1.5;
}
.entry-content table th {
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.entry-content table tr:nth-child(even) td {
    background: rgba(0, 0, 0, .03);
}

.cr-footer {
    background: #0A0A0A;
    color: rgba(255, 255, 255, .72);
    font-size: .95rem;
    border-top: 4px solid var(--pink);
}
.cr-footer__legal {
    background: #0A0A0A;
    padding: 1.5rem 0;
}
.cr-footer__legal-inner {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 2rem;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    text-align: center;
}
.cr-footer__legal-inner p { margin: 0; }
.cr-footer-legal-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
}
.cr-footer-legal-menu li {
    position: relative;
    padding: 0 1rem;
}
.cr-footer-legal-menu li + li::before {
    content: '·';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .25);
}
.cr-footer-legal-menu a {
    color: rgba(255, 255, 255, .65);
    transition: color .15s ease;
    font-size: .85rem;
}
.cr-footer-legal-menu a:hover { color: var(--pink); opacity: 1; }

.btn {
    display: inline-block;
    padding: .75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; }

.error-404 { text-align: center; padding: 5rem 0; }
.error-404 h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(4rem, 10vw, 6.5rem);
    margin: 0 0 1rem;
    line-height: 1;
}

.cr-hero,
.cr-vs,
.cr-hola,
.cr-faq,
.cr-final,
.cr-footer {
    scroll-margin-top: calc(var(--header-h) + 6px);
}

.admin-bar .cr-hero,
.admin-bar .cr-vs,
.admin-bar .cr-hola,
.admin-bar .cr-faq,
.admin-bar .cr-final,
.admin-bar .cr-footer {
    scroll-margin-top: calc(var(--header-h) + 38px);
}
@media (max-width: 782px) {
    .admin-bar .cr-hero,
    .admin-bar .cr-vs,
    .admin-bar .cr-hola,
    .admin-bar .cr-faq,
    .admin-bar .cr-final,
    .admin-bar .cr-footer {
        scroll-margin-top: calc(var(--header-h) + 52px);
    }
}

@media (max-width: 991px) {
    .cr-hero,
    .cr-vs,
    .cr-hola,
    .cr-faq,
    .cr-final,
    .cr-footer {
        scroll-margin-top: 0;
    }
}

.cr-display {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: .035em;
    margin: 0 0 1rem;
    color: var(--ink);
}
.cr-display--xl  { font-size: clamp(2.5rem, 5.5vw, 4.4rem); }
.cr-display--xxl { font-size: clamp(2.6rem, 6.8vw, 5.1rem); }
.cr-display--lg  { font-size: clamp(2.2rem, 4.8vw, 3.5rem); }

.cr-pink   { color: var(--pink); }
.cr-orange { color: var(--orange); }

.cr-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .2em;
    color: var(--pink);
    background: rgba(230, 56, 136, .1);
    padding: .35rem .75rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.25rem;
}
.cr-eyebrow--block {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--ink);
    padding: .55rem 1rem;
}

.cr-lead, .cr-sub {
    font-size: 1.08rem;
    color: var(--ink-soft);
    max-width: 48ch;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}
.cr-sub { font-size: 1.02rem; }

.cr-btn {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .06em;
    border: 0; cursor: pointer;
    border-radius: var(--radius-pill);
    padding: .9rem 1.9rem;
    font-size: .9rem;
    text-align: center;
    line-height: 1.35;
    transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
    box-shadow: 0 8px 20px rgba(230, 56, 136, .25);
}
.cr-btn:hover {
    transform: translateY(-2px) scale(1.02);
    opacity: 1;
    box-shadow: 0 12px 28px rgba(230, 56, 136, .35);
}
.cr-btn--pink  { background: var(--pink); color: #fff; }
.cr-btn--pink:hover { background: var(--pink-dark); box-shadow: 0 14px 32px rgba(230, 56, 136, .45); }
.cr-btn--white { background: #fff; color: var(--ink); box-shadow: 0 8px 20px rgba(0, 0, 0, .15); }
.cr-btn--white:hover { background: var(--yellow); }
.cr-btn--xl  { padding: 1.05rem 2.2rem; font-size: 1rem; }

.cr-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: center;
}
.cr-photo--hero { aspect-ratio: unset; height: 100%; min-height: 320px; }
.cr-photo__label {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(.85rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, .9);
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .45rem 1rem;
    background: rgba(0, 0, 0, .18);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
}

.cr-grad-orange { background: radial-gradient(circle at 30% 30%, #FFD23F 0%, #F26B38 55%, #D84B18 100%); }

.cr-photo--has-image {
    padding: clamp(10px, 2vw, 24px);
}
.cr-photo__img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.cr-hero {
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.cr-hero__grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}
.cr-hero__media { display: flex; flex-direction: column; gap: 1.25rem; }
.cr-hero__media .cr-photo {
    margin-top: clamp(2.6rem, 5vw, 3.8rem);
}
.cr-hero .cr-lead { max-width: none; }
.cr-hero .cr-btn--pink { box-shadow: 0 10px 26px rgba(230, 56, 136, .35); }

.cr-hero__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; flex-direction: column;
    gap: .55rem;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.4;
}
.cr-hero__bullets li {
    position: relative;
    padding-left: 1.4rem;
}
.cr-hero__bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: .5em;
    width: 9px; height: 9px;
    background: var(--pink);
    border-radius: 50%;
}

.cr-photo--framed {
    background: transparent;
    border: 2px solid var(--ink);
    border-radius: clamp(28px, 4vw, 44px);
    padding: 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}
.cr-photo--framed.cr-photo--hero {
    aspect-ratio: 3 / 2;
    height: auto;
    min-height: 0;
}
.cr-photo--framed .cr-photo__img {
    object-fit: cover;
    object-position: center bottom;
    border-radius: inherit;
}

.cr-vs {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.cr-vs .cr-vs__title {
    color: var(--cream);
    text-align: left;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.15;
    white-space: nowrap;
}
@media (max-width: 480px) {
    .cr-vs .cr-vs__title {
        white-space: normal;
        line-height: 1.4;
        letter-spacing: .035em;
    }
}
.cr-vs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 6rem);
}
.cr-vs__pill {
    display: inline-block;
    background: var(--cream);
    color: var(--ink);
    padding: .7rem 1.6rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.4;
    margin-bottom: 1.75rem;
}
.cr-vs__list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}
.cr-vs__list li {
    position: relative;
    padding-left: 1.55rem;
    margin-bottom: .6rem;
    line-height: 1.5;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    color: var(--cream);
}
.cr-vs__list li::before {
    content: '';
    position: absolute;
    left: 0; top: .55em;
    width: 10px; height: 10px;
    background: var(--orange);
    border-radius: 50%;
}
.cr-vs__group-title {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 500;
    color: var(--orange);
    margin: 1.5rem 0 .75rem;
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}
.cr-vs__col > .cr-vs__group-title:first-of-type { margin-top: 0; }
.cr-vs__promise {
    margin-top: clamp(1.25rem, 2.5vw, 2rem);
    line-height: 1.5;
    font-size: clamp(1.15rem, 1.75vw, 1.4rem);
    color: var(--cream);
}
.cr-vs__promise p { margin: 0 0 .35rem; }
.cr-vs__promise p:last-child { margin-bottom: 0; }

.cr-smiley.cr-smiley--vs {
    position: absolute;
    right: clamp(20px, 4vw, 60px);
    bottom: clamp(20px, 4vw, 50px);
    width: clamp(60px, 6vw, 90px);
    height: clamp(60px, 6vw, 90px);
    background-color: var(--orange);
}

@media (max-width: 991px) {
    .cr-vs__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .cr-smiley.cr-smiley--vs { display: none; }
}

.cr-hola {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--cream);
    color: var(--ink);
    position: relative;
    overflow: hidden;
}
.cr-hola__grid {
    display: grid;
    grid-template-columns: minmax(280px, 400px) 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    position: relative;
    z-index: 1;
}
.cr-hola__media {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.cr-hola__photo {
    aspect-ratio: 1 / 1;
    margin-top: 0.15rem;
}
.cr-hola__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.5;
}
.cr-hola__bullets li {
    position: relative;
    padding-left: 1.4rem;
}
.cr-hola__bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: .55em;
    width: 9px; height: 9px;
    background: var(--pink);
    border-radius: 50%;
}
.cr-hola__title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin: 0 0 1rem;
    line-height: 1;
}
.cr-hola__intro {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1.4rem;
    color: var(--ink);
}
.cr-hola__content p {
    color: var(--ink);
    line-height: 1.6;
    margin: 0 0 1.1rem;
    font-size: 1rem;
    text-align: justify;
    hyphens: auto;
}
.cr-hola__cta {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: var(--pink);
    color: #fff;
    border: 0;
    padding: .9rem 1.7rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: .9rem;
    margin-top: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .06em;
    line-height: 1.35;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 8px 20px rgba(230, 56, 136, .25);
}
.cr-hola__cta:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230, 56, 136, .35);
}
.cr-hola__cta-arrow {
    font-size: 1.2em;
    line-height: 1;
}

.cr-smiley.cr-smiley--hola {
    position: absolute;
    top: clamp(-2.5rem, -1vw, 0px);
    left: clamp(-3rem, -1.5vw, -1rem);
    width: clamp(140px, 18vw, 240px);
    height: clamp(140px, 18vw, 240px);
    opacity: .25;
    pointer-events: none;
    z-index: 0;
    background-color: var(--pink);
    transform: rotate(-12deg);
}

@media (max-width: 991px) {
    .cr-hola__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cr-hola__content { order: 1; }
    .cr-hola__media   { order: 2; }
    .cr-smiley.cr-smiley--hola { opacity: .15; }
}

.cr-faq {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(1200px 400px at 110% -10%, rgba(255, 210, 63, .10), transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(230, 56, 136, .08), transparent 60%),
        #FEFCF5;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.cr-faq .container { position: relative; z-index: 1; }
.cr-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.cr-faq__intro {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.cr-faq__intro .cr-eyebrow { margin-bottom: .25rem; }
.cr-faq__intro .cr-sub {
    max-width: 34ch;
    margin: 0;
}
.cr-faq__list {
    display: grid;
    gap: 1rem;
}
.cr-faq__item {
    background: #FFF8E4;
    border: 1.5px solid rgba(166, 119, 56, .14);
    border-radius: 18px;
    padding: 1.1rem 1.5rem;
    box-shadow: 0 4px 16px rgba(166, 119, 56, .07);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.cr-faq__item:hover {
    border-color: rgba(230, 56, 136, .35);
    box-shadow: 0 10px 24px rgba(230, 56, 136, .10);
    transform: translateY(-1px);
}
.cr-faq__item[open] {
    background: #FFFBEF;
    border-color: var(--pink);
    box-shadow: 0 14px 30px rgba(230, 56, 136, .14);
}
.cr-faq__item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 1.04rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    line-height: 1.4;
    padding: .35rem 0;
}
.cr-faq__item summary::-webkit-details-marker { display: none; }
.cr-faq__item summary::after {
    content: '+';
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(230, 56, 136, .1);
    color: var(--pink);
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
    transition: background .2s ease, color .2s ease, transform .25s ease;
}
.cr-faq__item[open] summary::after {
    content: '−';
    background: var(--pink);
    color: #fff;
    transform: rotate(180deg);
}
.cr-faq__item p {
    margin: .85rem 0 .35rem;
    color: var(--ink-soft);
    font-size: .98rem;
    line-height: 1.65;
}

.cr-final {
    background: var(--pink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cr-final__inner {
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
    z-index: 2;
}
.cr-final__cta {
    text-align: center;
    padding-top: 2.5rem;
}
.cr-final__cta .cr-display { color: var(--white); margin-bottom: 1.75rem; }
.cr-final__cta .cr-pink { color: var(--yellow); }

.cr-final .cr-btn--white {
    background: var(--ink);
    color: var(--cream);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .3);
}
.cr-final .cr-btn--white:hover {
    background: var(--cream);
    color: var(--ink);
}

.cr-watermark {
    position: absolute;
    width: clamp(260px, 40vw, 520px);
    height: auto;
    opacity: .18;
    pointer-events: none;
    z-index: 1;
    filter: brightness(0) invert(1);
}
.cr-watermark--tr { top: -10%; right: -8%;  transform: rotate(10deg); }
.cr-watermark--bl { bottom: -14%; left: -6%; transform: rotate(-12deg); }

.cr-extra {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: var(--cream-dark);
}

.cr-smiley {
    display: inline-block;
    width: 1em;
    height: 1em;
    aspect-ratio: 1;
    background-color: currentColor;
    -webkit-mask-image: var(--cr-smiley-url);
            mask-image: var(--cr-smiley-url);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    vertical-align: middle;
    transition: transform .3s ease;
}

.cr-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s cubic-bezier(.2, .7, .2, 1), transform .75s cubic-bezier(.2, .7, .2, 1);
    will-change: opacity, transform;
}
.cr-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .cr-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 1199px) {
    .cr-display--xl  { font-size: clamp(2.2rem, 6vw, 3.6rem); }
    .cr-display--xxl { font-size: clamp(2.4rem, 7vw, 4.2rem); }
    .cr-display--lg  { font-size: clamp(2rem, 5vw, 3rem); }
}

@media (max-width: 991px) {
    .site-header { display: none; }

    .cr-hero__grid,
    .cr-faq__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cr-hero__media    { order: 2; }
    .cr-hero__content  { order: 1; }

    .cr-hero__media .cr-photo {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        flex: 0 0 auto;
        min-height: 0;
    }
    .cr-photo--framed.cr-photo--hero { aspect-ratio: 3 / 2; }

    .cr-watermark { width: clamp(200px, 50vw, 360px); }
}

@media (max-width: 640px) {
    .cr-hero,
    .cr-faq {
        padding: 2.5rem 0;
    }

    .cr-display      { text-align: center; }
    .cr-display--xl  { font-size: clamp(2rem, 10vw, 2.8rem); }
    .cr-display--xxl { font-size: clamp(2rem, 10vw, 2.8rem); }
    .cr-display--lg  { font-size: clamp(1.8rem, 8vw, 2.4rem); }

    .cr-photo--hero { min-height: 0; }

    .cr-hero__grid { gap: 1.5rem; }

    .cr-footer__legal-inner {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .cr-footer-legal-menu li { padding: 0 .65rem; }

    .cr-final__inner { padding-top: 2rem; padding-bottom: 2.5rem; }
    .cr-final__cta { padding-top: 1.5rem; }

    .cr-watermark--tr { top: -5%; right: -15%; }
    .cr-watermark--bl { bottom: -7%; left: -12%; }
    .cr-watermark    { opacity: .14; }

    .cr-faq__item { padding: .9rem 1.1rem; }
    .cr-faq__item summary { font-size: .98rem; }

    .entry-title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .entry-content { text-align: left; }
}

@media (max-width: 380px) {
    .container { padding: 0 18px; }
    .cr-btn { font-size: .85rem; padding: .85rem 1.6rem; }
    .primary-menu a { font-size: 1.2rem; }
}

.cr-precio__floatbar {
    top: auto !important;
    bottom: clamp(16px, 2.5vw, 28px) !important;
    left: auto !important;
    right: clamp(16px, 2.5vw, 28px) !important;
    width: auto;
    max-width: min(360px, calc(100vw - 32px));
    background: var(--ink);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25), 0 4px 12px rgba(0, 0, 0, .12);
    transform: translateY(calc(100% + 32px));
    opacity: 0;
    padding-top: 0;
    transition: transform .35s cubic-bezier(.2, .7, .2, 1), opacity .25s ease;
    z-index: 99;
}
.cr-precio__floatbar.is-visible {
    transform: translateY(0);
    opacity: 1;
}
.admin-bar .cr-precio__floatbar { top: auto !important; }
@media (max-width: 782px) {
    .admin-bar .cr-precio__floatbar { top: auto !important; }
}
.cr-precio__floatbar-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 26px;
    gap: 18px;
    max-width: none;
}
.cr-precio__floatbar-info {
    text-align: center;
    align-items: center;
    gap: 6px;
}
.cr-precio__floatbar-label { font-size: 12px; }
.cr-precio__floatbar-amount { font-size: 38px; line-height: 1; }
.cr-precio__floatbar-cta {
    text-align: center;
    width: 100%;
    padding: 16px 20px;
    font-size: 14px;
}

@media (max-width: 640px) {
    body .cr-form-wrap {
        padding: 28px 22px 32px;
        margin: 24px auto;
        border-radius: 18px;
    }
    body .cr-form__title { font-size: 24px; }
    body .cr-form__submit { min-width: 0; width: 100%; padding: 16px 24px; }

    .entry-content table {
        display: block;
        overflow-x: auto;
        max-width: 100%;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .cr-hero,
    .cr-vs,
    .cr-hola,
    .cr-faq {
        padding-block: 2rem;
    }
    .cr-final__inner {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }
    .cr-hero__media .cr-photo {
        max-width: 280px;
    }
}

@media (hover: none) {
    a:hover { opacity: 1; }
    .cr-btn:hover,
    .btn:hover,
    .cr-hola__cta:hover,
    .cr-faq__item:hover,
    .site-header__toggle:hover,
    .cr-precio__floatbar-cta:hover {
        transform: none;
    }
    .cr-faq__item:hover {
        border-color: rgba(166, 119, 56, .14);
        box-shadow: 0 4px 16px rgba(166, 119, 56, .07);
    }
}
/* v1.1.0 */

.cr-precio__total {
    margin-bottom: 40px !important;
}

	