/*
 * Imagictalk landing pages — section, navbar, footer, and pattern utilities.
 * Pairs with templates/base_landing.html, _navbar.html, _footer.html and pages/home.html.
 */

/* ================= Accessibility ================= */

.skip-link {
    position: absolute;
    top: -64px;
    left: 16px;
    padding: 10px 16px;
    background: var(--neutral-700);
    color: var(--neutral-0);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    z-index: 100;
    transition: top var(--duration-base) var(--ease-out);
}
.skip-link:focus { top: 16px; outline: 2px solid var(--brand-400); outline-offset: 2px; }

/* Card focus rings (keyboard users) */
.cast-card:focus-visible,
.char-thumb:focus-visible,
.guide-card:focus-visible,
.blog-card:focus-visible,
.testimonial-card:focus-visible,
.exp-card:focus-visible,
.plan-card:focus-visible,
.deep-block:focus-visible {
    outline: 2px solid var(--brand-400);
    outline-offset: 3px;
    border-radius: var(--radius-2xl);
}
.faq-toggle:focus-visible {
    outline: 2px solid var(--brand-400);
    outline-offset: 2px;
    border-radius: var(--radius-xl);
}

/* ================= Layout (handoff: container 1440 / content 1200 / lateral 120) ================= */

.section {
    padding: var(--section-gap) var(--page-pad-x);
}
.section--tight {
    padding-top: clamp(48px, 5vw, 80px);
    padding-bottom: clamp(48px, 5vw, 80px);
}

.container-page {
    max-width: var(--container-page);
    margin: 0 auto;
    width: 100%;
}
.container-content {
    max-width: var(--container-content);
    margin: 0 auto;
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    background: var(--brand-200);
    color: var(--brand-700);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    height: 32px;
}
.eyebrow.is-purple { background: var(--purple-100); color: var(--purple-500); }
.eyebrow.is-blue   { background: var(--blue-100);   color: var(--blue-400); }
/* Legacy aliases — keep until templates migrate */
.eyebrow.is-magenta { background: var(--purple-100); color: var(--purple-500); }
.eyebrow.is-ocean   { background: var(--blue-100);   color: var(--blue-400); }

.section-title {
    font-size: var(--text-h1);
    line-height: var(--leading-h1);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 16px 0 12px;
}
.section-title .accent { color: var(--brand-400); }

.section-lede {
    font-size: var(--text-body-lg);
    line-height: var(--leading-body-lg);
    color: var(--text-secondary);
    max-width: 640px;
}

.section-header { display: flex; flex-direction: column; gap: 0; }
.section-header--center { text-align: center; align-items: center; }
.section-header--center .section-lede { margin: 0 auto; }
.section-header--left { text-align: left; align-items: flex-start; }
.section-header--left .section-lede { margin: 0; }

/* ================= Navbar ================= */

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--duration-base) var(--ease-out);
    position: relative;
    padding: 8px 0;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link.is-active { color: var(--brand-600); font-weight: 600; }
.nav-link.is-active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
    height: 2px; background: var(--brand-400); border-radius: 2px;
}
.nav-link--mobile {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-default);
}

/* ================= Footer ================= */

.footer-heading {
    color: var(--neutral-0);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.footer-heading.is-uppercase { text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; color: var(--neutral-300); }
.footer-list { display: flex; flex-direction: column; gap: 12px; }
.footer-list a {
    color: var(--neutral-400);
    font-size: 14px;
    transition: color var(--duration-base) var(--ease-out);
}
.footer-list a:hover { color: var(--brand-300); }
.social-icon {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    color: var(--neutral-0);
    transition: all var(--duration-base) var(--ease-out);
}
.social-icon:hover { transform: translateY(-2px); }
.social-icon[aria-label="Facebook"]:hover { background: #1877F2; }
.social-icon[aria-label="Instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon[aria-label="TikTok"]:hover { background: #25F4EE; color: #000; }
.social-icon svg { width: 18px; height: 18px; }
.social-icon i { width: 18px; height: 18px; }

/* ================= Hero ================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 64px var(--page-pad-x) 96px;
    background:
        radial-gradient(ellipse 70% 50% at 80% 30%, rgba(0,229,160,0.12), transparent 60%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(59,130,246,0.06), transparent 60%),
        var(--surface);
}
@media (max-width: 768px) { .hero { padding: 32px var(--page-pad-x) 64px; } }

.hero-watermark {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hero-watermark__brand {
    position: absolute;
    top: 8%; left: -6%;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: clamp(110px, 22vw, 360px);
    letter-spacing: -0.06em;
    line-height: 0.85;
    color: var(--brand-400);
    opacity: 0.045;
    user-select: none;
    white-space: nowrap;
    will-change: transform;
}
@media (max-width: 768px) {
    .hero-watermark__brand { top: 4%; left: -8%; opacity: 0.06; }
}
.hero-watermark__sparkle {
    position: absolute;
    color: var(--brand-400);
    opacity: 0.18;
    will-change: transform;
}
.hero-watermark__sparkle--a { top: 14%; right: 22%; width: 28px; height: 28px; }
.hero-watermark__sparkle--b { top: 62%; left: 6%; width: 18px; height: 18px; color: var(--purple-500); opacity: 0.22; }
.hero-watermark__sparkle--c { bottom: 18%; right: 6%; width: 36px; height: 36px; opacity: 0.14; }
.hero-watermark__sparkle--d { top: 38%; left: 42%; width: 14px; height: 14px; color: var(--blue-500); opacity: 0.18; }
.hero-watermark__sparkle--e { top: 4%; right: 4%; width: 22px; height: 22px; color: var(--accent-amber); opacity: 0.30; }
@keyframes wm-twinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: var(--wm-op, 0.18); }
    50% { transform: scale(1.18) rotate(12deg); opacity: calc(var(--wm-op, 0.18) * 1.6); }
}
.hero-watermark__sparkle--a { animation: wm-twinkle 3.6s ease-in-out infinite; --wm-op: 0.18; }
.hero-watermark__sparkle--b { animation: wm-twinkle 4.2s ease-in-out infinite 0.4s; --wm-op: 0.22; }
.hero-watermark__sparkle--c { animation: wm-twinkle 5.4s ease-in-out infinite 0.8s; --wm-op: 0.14; }
.hero-watermark__sparkle--d { animation: wm-twinkle 3.0s ease-in-out infinite 1.2s; --wm-op: 0.18; }
.hero-watermark__sparkle--e { animation: wm-twinkle 4.8s ease-in-out infinite 0.2s; --wm-op: 0.30; }
@media (prefers-reduced-motion: reduce) {
    .hero-watermark__sparkle { animation: none !important; }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}
@media (min-width: 880px) {
    .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}
.hero-headline .accent { color: var(--brand-400); display: inline-block; }
.hero-copy {
    margin-top: 20px;
    font-size: var(--text-body-lg);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 520px;
}
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-actions__hint {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-tertiary);
    font-size: 13px; font-weight: 500;
}
.hero-actions__hint i {
    width: 16px; height: 16px;
    color: var(--brand-500);
}
.hero-social {
    margin-top: 28px;
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero-photos {
    display: flex;
}
.hero-photos img {
    width: 40px; height: 40px; border-radius: 50%;
    border: 3px solid var(--surface);
    margin-left: -10px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    background: var(--neutral-100);
    transition: transform 0.3s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}
.hero-photos img:hover { transform: translateY(-4px) scale(1.06); z-index: 2; }
.hero-photos > :first-child { margin-left: 0; }
.hero-rating { display: flex; align-items: center; gap: 6px; }
.hero-rating .rating-num { font-weight: 700; color: var(--text-primary); }
.hero-rating .star { color: var(--warning); width: 18px; height: 18px; fill: currentColor; }
.hero-rating-meta { display: flex; flex-direction: column; gap: 2px; }
.hero-rating-meta__count { color: var(--text-tertiary); font-size: 13px; }

.hero-stage {
    position: relative;
    perspective: 1200px;
}

/* Mobile hero video: si hay setting hero_mobile_video_url, reemplaza la
   hero-card en pantallas pequeñas con un video real de familia usando la app.
   En desktop el video se oculta y se mantiene la hero-card. */
.hero-stage__mobile-video {
    display: none;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 620px;
    object-fit: cover;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-default);
    background: #000;
}
@media (max-width: 879px) {
    .hero-stage--has-mobile-video .hero-stage__mobile-video {
        display: block;
    }
    .hero-stage--has-mobile-video .hero-card {
        display: none;
    }
}

@keyframes hero-card-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.3deg); }
}

.hero-card {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    background:
        radial-gradient(ellipse at top, rgba(255,207,248,0.55), transparent 65%),
        var(--brand-100);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-default);
    aspect-ratio: 4 / 5;
    max-height: 620px;
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform 0.4s ease-out;
    animation: hero-card-float 7s ease-in-out infinite;
    transform-style: preserve-3d;
}
@media (prefers-reduced-motion: reduce) {
    .hero-card { animation: none; }
}
.hero-card .character-render {
    position: absolute; inset: 0;
    background-position: center; background-size: cover;
    background-image: linear-gradient(135deg, rgba(255,207,248,0.7) 0%, rgba(160,250,211,0.7) 100%);
}
.hero-chip {
    position: absolute; top: 24px; left: 24px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: var(--purple-100); color: var(--purple-500);
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; border-radius: var(--radius-full);
    z-index: 2;
}

@keyframes bubble-pop-in {
    0% { opacity: 0; transform: translate(-12px, 12px) scale(0.85); }
    100% { opacity: 1; transform: translate(0, 0) scale(1); }
}
.hero-bubble {
    position: absolute;
    z-index: 5;
    background: var(--surface);
    border-radius: 22px;
    padding: 16px 18px;
    max-width: 240px;
    box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.18), 0 4px 12px -2px rgba(15, 23, 42, 0.06);
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle, rgba(15, 23, 42, 0.06));
    animation: hero-card-float 7s ease-in-out infinite reverse;
}
.hero-bubble::before {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    background: inherit;
    border-right: 1px solid var(--border-subtle, rgba(15, 23, 42, 0.06));
    border-bottom: 1px solid var(--border-subtle, rgba(15, 23, 42, 0.06));
    bottom: -9px; right: 28px;
    transform: rotate(45deg);
    border-bottom-right-radius: 4px;
}
.hero-bubble strong { color: var(--brand-600); display: block; margin-bottom: 4px; font-weight: 700; }
.hero-bubble--top {
    top: -28px;
    right: 24px;
}
/* Mobile: el bocadillo "¡Hola Sofía!" tapa la card y se siente invasivo;
   el saludo ya está implícito en el headline. Ocultamos en < 880px. */
@media (max-width: 879px) {
    .hero-bubble--top {
        display: none;
    }
}
@media (min-width: 960px) {
    .hero-bubble--top {
        top: -36px;
        left: -56px;
        right: auto;
        max-width: 260px;
        animation-name: bubble-pop-in, hero-card-float;
        animation-duration: 0.7s, 7s;
        animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1), ease-in-out;
        animation-delay: 0.3s, 0.7s;
        animation-fill-mode: backwards, none;
        animation-iteration-count: 1, infinite;
        animation-direction: normal, reverse;
    }
    .hero-bubble--top::before {
        bottom: -9px;
        right: auto;
        left: 60px;
    }
}

.hero-card-info {
    position: absolute; left: 24px; right: 24px; bottom: 24px;
    background: var(--surface);
    border-radius: var(--radius-2xl);
    padding: 22px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}
.hero-card-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 8px;
    margin-bottom: 6px;
}
.hero-card-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
}

/* ================= Scroll reveal ================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="fade"] { transform: none; }

[data-reveal].is-revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ================= Cast row carousel ================= */

.cast-row {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    /* Mobile: horizontal scroll-snap carousel */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -16px;
    margin-right: -16px;
    padding: 4px 16px 8px;
    scroll-padding: 0 16px;
}
.cast-row::-webkit-scrollbar { display: none; }
@media (min-width: 960px) {
    .cast-row {
        height: 480px;
        gap: 16px;
        overflow: visible;
        scroll-snap-type: none;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
}

.cast-card {
    position: relative; overflow: hidden;
    border-radius: var(--radius-2xl);
    cursor: pointer;
    /* Mobile: each card snaps; ~85% of viewport so the next card peeks */
    flex: 0 0 calc(100% - 56px);
    max-width: 360px;
    height: 380px;
    scroll-snap-align: center;
    transition:
        flex-grow 0.7s var(--ease-spring),
        box-shadow 0.4s var(--ease-out);
    box-shadow: var(--shadow-sm);
}
@media (min-width: 960px) {
    .cast-card {
        flex: 1 1 0;
        max-width: none;
        height: 100%;
        min-width: 90px;
        scroll-snap-align: none;
    }
    .cast-card.is-active { flex-grow: 3.6; box-shadow: var(--shadow-xl); }
    /* Adapt the active-card growth so 1, 2 or many characters all read well. */
    .cast-row[data-count="1"] .cast-card,
    .cast-row[data-count="1"] .cast-card.is-active { flex-grow: 1; min-width: 0; }
    .cast-row[data-count="2"] .cast-card.is-active { flex-grow: 1.5; }
}
.cast-card.is-active { box-shadow: var(--shadow-xl); }

.cast-card__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.15), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%),
        linear-gradient(135deg, var(--brand-600), var(--blue-500));
    transition: transform 0.7s var(--ease-out), filter 0.5s var(--ease-out);
    transform: scale(1.04);
}
.cast-card:hover .cast-card__bg,
.cast-card.is-active .cast-card__bg { transform: scale(1.08); }
.cast-card:not(.is-active) .cast-card__bg { filter: saturate(0.85); }

/* Per-card gradient palette (cycles through brand variants) */
.cast-card[data-tone="rosa"]  .cast-card__bg { background-image: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.15), transparent 55%), linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55)), linear-gradient(180deg, var(--purple-200), var(--purple-400)); }
.cast-card[data-tone="mint"]  .cast-card__bg { background-image: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.15), transparent 55%), linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55)), linear-gradient(180deg, var(--brand-300), var(--brand-600)); }
.cast-card[data-tone="ocean"] .cast-card__bg { background-image: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.15), transparent 55%), linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55)), linear-gradient(180deg, var(--blue-300), var(--blue-500)); }
.cast-card[data-tone="amber"] .cast-card__bg { background-image: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.15), transparent 55%), linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55)), linear-gradient(180deg, #FFE7BF, #C26A00); }

/* When the card has a real avatar image, use it as the cover */
.cast-card[data-image] .cast-card__bg {
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.15), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.65) 100%),
        var(--cast-image);
}

/* Hover/active video — capa encima del bg que aparece cuando la card está
   en estado expanded (hover desktop, is-active mobile o accordion). */
.cast-card__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    pointer-events: none;
    z-index: 1;
    background: transparent;
}
.cast-card:hover .cast-card__video,
.cast-card.is-active .cast-card__video {
    opacity: 1;
}

.cast-card__compact {
    position: absolute; left: 16px; right: 16px; bottom: 16px;
    color: var(--neutral-0);
    z-index: 2;
    transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.cast-card.is-active .cast-card__compact { opacity: 0; transform: translateY(8px); }
/* Mobile: el accordion no aplica — siempre mostrar el contenido expandido */
@media (max-width: 959px) {
    .cast-card__compact { display: none; }
}

.cast-card__compact-name {
    font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
    color: var(--neutral-0);
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.cast-card__compact-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 4px;
}

.cast-card__expanded {
    position: absolute; left: 24px; right: 24px; bottom: 24px;
    color: var(--neutral-0);
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s var(--ease-out) 0.15s, transform 0.5s var(--ease-out) 0.15s;
    pointer-events: none;
}
.cast-card.is-active .cast-card__expanded {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/* Mobile: cada card en el carrusel se muestra completa */
@media (max-width: 959px) {
    .cast-card__expanded {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.cast-card__chip {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.95);
    color: var(--text-primary);
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}
.cast-card__title {
    font-size: 28px; font-weight: 800; letter-spacing: -0.01em;
    color: var(--neutral-0);
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.cast-card__title small { display: block; font-size: 14px; font-weight: 500; opacity: 0.85; letter-spacing: 0.04em; margin-top: 2px; }
.cast-card__desc {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
    max-width: 380px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.cast-card__cta { margin-top: 18px; display: inline-block; }

.cast-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 28px;
}
.cast-dots button {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border-default);
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}
.cast-dots button.is-active {
    background: var(--brand-400);
    width: 28px; border-radius: 4px;
}

/* ================= Testimonios ================= */

.testimonios-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 20px;
    margin-top: clamp(32px, 4vw, 48px);
    align-items: stretch;
}
.testi-card {
    background: var(--surface);
    border: 1px solid var(--border-default);
    border-radius: 22px;
    box-shadow: 0 6px 20px 0 rgba(0, 82, 65, 0.06);
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    overflow: hidden;
    transition:
        transform var(--duration-base) var(--ease-out),
        box-shadow var(--duration-base) var(--ease-out),
        border-color var(--duration-base) var(--ease-out);
}
.testi-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-200);
    box-shadow: 0 14px 30px -8px rgba(0, 82, 65, 0.12);
}
.testi-card__head { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-300), var(--brand-500));
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.testi-card__avatar--initials {
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.01em;
}
.testi-card__meta { line-height: 1.2; min-width: 0; }
.testi-card__name {
    font-weight: 700;
    color: var(--neutral-700, var(--text-primary));
    font-size: 14px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.testi-card__city {
    font-size: 11px;
    color: var(--neutral-500, var(--text-tertiary));
    margin-top: 2px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.testi-card__quote {
    color: var(--neutral-600, var(--text-secondary));
    font-size: 16px;
    line-height: 1.32;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* ----- Testimonials carousel (mobile-first scroll-snap, dots) ----- */
.testi-carousel {
    position: relative;
}
.testi-carousel__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 0 8px;
    margin: 0 -16px;            /* bleed to viewport edges for full-width feel */
    padding-left: 16px;
    padding-right: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 16px;
}
.testi-carousel__track::-webkit-scrollbar { display: none; }
.testi-carousel__track > .testi-card {
    flex: 0 0 calc(100% - 32px);
    scroll-snap-align: center;
    max-width: 420px;
}
@media (min-width: 720px) {
    .testi-carousel__track > .testi-card {
        flex-basis: calc((100% - 16px) / 2 - 8px);
        scroll-snap-align: start;
    }
}
@media (min-width: 1024px) {
    .testi-carousel__track {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        scroll-padding: 0;
    }
    .testi-carousel__track > .testi-card {
        flex-basis: calc((100% - 32px) / 3);
    }
}
.testi-carousel__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.testi-carousel__dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: var(--neutral-300, rgba(0, 0, 0, 0.18));
    cursor: pointer;
    transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), width 220ms var(--ease-out);
}
.testi-carousel__dots button:hover {
    background: var(--brand-300);
}
.testi-carousel__dots button.is-active {
    width: 28px;
    border-radius: 6px;
    background: var(--brand-500);
}
.testi-carousel__dots button:focus-visible {
    outline: 2px solid var(--brand-500);
    outline-offset: 3px;
}

/* ================= Experience cards ================= */

.exp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-grid);
    margin-top: clamp(32px, 4vw, 48px);
}
@media (min-width: 720px) {
    .exp-grid {
        /* Row 1: 3 equal cards (each spans 2 cols). Row 2: 2 cards same width as row 1, centered. */
        grid-template-columns: repeat(6, 1fr);
        grid-template-areas:
            "chat chat call call video video"
            ".    selfie selfie clip clip .";
        grid-auto-rows: 1fr;
    }
    .exp-card.is-area-chat   { grid-area: chat; }
    .exp-card.is-area-call   { grid-area: call; }
    .exp-card.is-area-video  { grid-area: video; }
    .exp-card.is-area-selfie { grid-area: selfie; }
    .exp-card.is-area-clip   { grid-area: clip; }
}
.exp-card {
    background: var(--surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-2xl);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--duration-base) var(--ease-out),
        box-shadow var(--duration-base) var(--ease-out),
        border-color var(--duration-base) var(--ease-out);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Featured card: highlighted as the "most popular" experience */
.exp-card.is-featured {
    background:
        radial-gradient(ellipse 80% 60% at 0% 0%, rgba(0, 229, 160, 0.12), transparent 60%),
        var(--surface);
    border: 1.5px solid var(--brand-300);
    box-shadow:
        0 0 0 4px rgba(0, 229, 160, 0.08),
        0 8px 24px -8px rgba(0, 196, 138, 0.18),
        var(--shadow-sm);
}
.exp-card.is-featured:hover {
    border-color: var(--brand-400);
    box-shadow:
        0 0 0 4px rgba(0, 229, 160, 0.14),
        0 16px 32px -8px rgba(0, 196, 138, 0.25),
        var(--shadow-lg);
}
.exp-card.is-featured .badge {
    background: var(--brand-400);
    color: var(--neutral-0);
    box-shadow: 0 2px 6px -1px rgba(0, 196, 138, 0.4);
}

/* Equalize content distribution within cards (icon top, copy bottom-anchored) */
.exp-card h3 + p,
.exp-card .badge + h3 { margin-top: 0; }
.exp-card p { margin-bottom: 0; }
.exp-card__icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-lg);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.exp-card__icon.tone-mint    { background: var(--brand-200); color: var(--brand-700); }
.exp-card__icon.tone-magenta { background: var(--purple-100); color: var(--purple-500); }
.exp-card__icon.tone-blue    { background: var(--blue-100); color: var(--blue-400); }
.exp-card__icon.tone-amber   { background: var(--tint-amber-d); color: #8A5A00; }
.exp-card__icon i { width: 22px; height: 22px; }
.exp-card h3 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.exp-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.55; }
.exp-card .badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--brand-200); color: var(--brand-700);
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    align-self: flex-start;
}

/* ================= Steps ================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--gap-grid);
    margin-top: clamp(32px, 4vw, 48px);
}
.step-card {
    border-radius: var(--radius-2xl);
    padding: 32px;
    position: relative;
    min-height: 240px;
}
.step-card--lila { background: #EDE7FF; }
.step-card--mint { background: var(--brand-200); }
.step-card--rosa { background: var(--purple-100); }
.step-num {
    width: 50px; height: 50px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md);
    color: var(--neutral-0); font-weight: 700; font-size: 20px;
    margin-bottom: 24px;
}
.step-card--lila .step-num { background: #6B4FCC; }
.step-card--mint .step-num { background: var(--brand-500); }
.step-card--rosa .step-num { background: var(--purple-400); }
.step-card h3 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.step-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.55; }

/* ================= Pricing ================= */

.pricing-toggle {
    display: flex;
    width: fit-content;
    margin: clamp(24px, 3vw, 32px) auto 0;
    gap: 4px; padding: 4px;
    background: var(--surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}
.pricing-toggle button {
    padding: 10px 20px;
    font-size: 14px; font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--duration-base) var(--ease-out);
    cursor: pointer;
}
.pricing-toggle button.is-active {
    background: var(--brand-400); color: var(--brand-800);
    box-shadow: var(--shadow-brand-sm);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: var(--gap-grid);
    margin-top: clamp(32px, 4vw, 48px);
    align-items: stretch;
}
.pricing-grid > * { display: flex; }
.pricing-grid > * > .plan-card,
.pricing-grid > .plan-card { width: 100%; }
.plan-card {
    background: var(--surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-2xl);
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
    position: relative;
    height: 100%;
    min-height: 480px;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-300); }
.plan-card.is-featured {
    border: 2px solid var(--brand-400);
    box-shadow: var(--shadow-brand);
    background:
        radial-gradient(ellipse 80% 30% at 50% 0%, rgba(0, 229, 160, 0.07), transparent 70%),
        var(--surface);
}
.plan-card.is-featured:hover { box-shadow: var(--shadow-brand-lg); transform: translateY(-4px); }
.plan-card__name { font-size: 16px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.plan-card__price { display: flex; align-items: baseline; gap: 6px; min-height: 52px; }
.plan-card__price .amount {
    font-size: clamp(34px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    font-family: var(--font-display, inherit);
}
.plan-card__price .amount--big {
    font-size: clamp(28px, 3.4vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--text-primary);
}
.plan-card__price .period { font-size: 14px; color: var(--text-tertiary); margin-left: 2px; font-weight: 500; }
.plan-card__desc { color: var(--text-secondary); font-size: 13.5px; line-height: 1.55; min-height: 42px; }
.plan-card__divider { height: 1px; background: var(--border-default); margin: 2px 0; }
.plan-card__features { display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.plan-card__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.45; color: var(--text-primary); }
.plan-card__features li i { color: var(--brand-500); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
/* Featured card: solid green disc check icons (target both lucide-pre-replace i and post-replace svg) */
.plan-card.is-featured .plan-card__features li i,
.plan-card.is-featured .plan-card__features li svg {
    width: 20px; height: 20px;
    color: var(--neutral-0);
    background: var(--brand-400);
    border-radius: 50%;
    padding: 3px;
    margin-top: 0;
    box-sizing: border-box;
}
.plan-card.is-featured .plan-card__features li svg {
    stroke: var(--neutral-0);
    stroke-width: 3;
    fill: none;
}
.plan-card .btn { margin-top: auto; }
/* Soft fill for non-featured CTAs in pricing (Empezar, Contactar ventas) */
.plan-card:not(.is-featured) .btn.btn-secondary {
    background-color: var(--neutral-100);
    border-color: transparent;
    color: var(--neutral-700);
    font-weight: 600;
}
.plan-card:not(.is-featured) .btn.btn-secondary:hover {
    background-color: var(--neutral-200);
    border-color: transparent;
}
.plan-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px;
    background: var(--brand-400); color: #0a0a12;
    font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px -2px rgba(0, 196, 138, 0.4);
    white-space: nowrap;
}
/* Subtle pill for non-featured cards (e.g. Character Club "Acceso completo"). */
.plan-badge--secondary {
    background: var(--surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
    box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.12);
}

.trust-row {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
    color: var(--text-secondary); font-size: 13px;
}
.trust-row span {
    display: inline-flex; align-items: center; gap: 6px;
}
.trust-row span i {
    width: 16px; height: 16px; color: var(--brand-500);
}

/* ================= Blog ================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--gap-grid);
    margin-top: clamp(24px, 3vw, 32px);
}
.blog-card {
    background: var(--surface);
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 6px 18px 0 rgba(0, 82, 65, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px 0 rgba(0, 82, 65, 0.1); }
.blog-card__cover {
    aspect-ratio: 77 / 40;
    background-size: cover;
    background-position: center;
    background-color: var(--brand-100);
}
.blog-card__body {
    padding: 24px;
    display: flex; flex-direction: column; gap: 12px;
    flex: 1;
}
.blog-card__chip {
    display: inline-flex; align-self: flex-start;
    padding: 4px 10px; border-radius: var(--radius-full);
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.blog-card__chip.is-mint    { background: #EAFFF6; color: #008362; }
.blog-card__chip.is-magenta { background: var(--purple-100); color: var(--purple-500); }
.blog-card__chip.is-amber   { background: var(--tint-amber-d); color: #8A5A00; }
.blog-card h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); line-height: 1.3; margin: 0; }
.blog-card__excerpt {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
}
.blog-card__meta {
    display: flex; gap: 6px;
    font-size: 12px; font-weight: 500;
    color: var(--neutral-300);
    padding-top: 4px;
    margin-top: auto;
}

/* ================= FAQ ================= */

.faq-list {
    display: flex; flex-direction: column; gap: 12px;
    max-width: 720px; margin: clamp(32px, 4vw, 48px) auto 0;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--neutral-100);
    border-radius: 24px;
    box-shadow: 0 4px 14px 0 rgba(0, 82, 65, 0.04);
    transition:
        background-color var(--duration-base) var(--ease-out),
        border-color var(--duration-base) var(--ease-out),
        box-shadow var(--duration-base) var(--ease-out);
}
.faq-item.is-open {
    background: #F0FFF8;
    border-color: var(--brand-300);
    box-shadow: 0 0 0 1px var(--brand-300), 0 8px 22px 0 rgba(0, 196, 138, 0.08);
}
.faq-toggle {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 22px; width: 100%;
    text-align: left;
    font-size: 15px; font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    background: transparent;
    border: 0;
}
.faq-toggle .icon {
    width: 28px; height: 28px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: transparent;
    color: var(--neutral-500);
    transition: background-color var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out);
}
.faq-item.is-open .faq-toggle .icon {
    background: var(--brand-400);
    color: var(--neutral-0);
}
.faq-toggle .icon svg,
.faq-toggle .icon i { width: 16px; height: 16px; }
.faq-toggle .icon-minus { display: none; }
.faq-item.is-open .faq-toggle .icon-plus { display: none; }
.faq-item.is-open .faq-toggle .icon-minus { display: inline-flex; }
.faq-content {
    padding: 0 22px 20px;
    font-size: 14px; line-height: 1.65;
    color: var(--text-secondary);
}

.faq-cta {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 14px;
    margin-top: 40px;
    color: var(--text-secondary); font-size: 14px;
}

/* ================= Character thumb cards (Meet Characters page) ================= */

.char-thumb {
    display: flex; flex-direction: column; gap: 8px;
    background: var(--surface);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-default);
    transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.char-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.char-thumb__chip {
    align-self: flex-start;
    padding: 5px 12px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    border-radius: var(--radius-full);
    background: var(--blue-100); color: var(--blue-400);
    margin-bottom: 8px;
}
.char-thumb__photo {
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    background-size: cover; background-position: center;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.45) 100%), linear-gradient(135deg, var(--blue-300), var(--blue-500));
    margin-bottom: 14px;
}
.char-thumb__photo--ocean { background-image: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.45) 100%), linear-gradient(135deg, var(--blue-300), var(--blue-500)); }
.char-thumb__photo--rosa  { background-image: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.40) 100%), linear-gradient(135deg, var(--purple-200), var(--purple-500)); }
.char-thumb__photo--mint  { background-image: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.45) 100%), linear-gradient(135deg, var(--brand-300), var(--brand-600)); }
.char-thumb__photo--amber { background-image: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.40) 100%), linear-gradient(135deg, #FFD89A, #C26A00); }
.char-thumb__name { text-align: center; font-size: 18px; font-weight: 700; color: var(--text-primary); }
.char-thumb__tagline { text-align: center; color: var(--text-secondary); font-size: 13px; line-height: 1.4; min-height: 36px; }
.char-thumb__rating {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    color: var(--text-tertiary); font-size: 13px;
    margin: 6px 0 12px;
}
.char-thumb__rating i { width: 14px; height: 14px; color: var(--warning); }
.char-thumb__rating .num { color: var(--text-primary); font-weight: 600; }
.char-thumb__voice {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    color: var(--text-primary); font-size: 13px; font-weight: 600;
    transition: all var(--duration-base) var(--ease-out);
}
.char-thumb__voice i { width: 14px; height: 14px; color: var(--brand-500); }
.char-thumb:hover .char-thumb__voice { background: var(--brand-100); border-color: var(--brand-300); }

.char-thumb-grid {
    display: grid;
    /* Fixed-max card width so 1, 2, 3+ characters all read consistently
       instead of stretching to 50%/100% when there are few. */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 300px));
    justify-content: center;
    gap: var(--gap-grid);
    margin-top: clamp(24px, 3vw, 32px);
}

/* ================= Guide cards ================= */

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--gap-grid);
    margin-top: clamp(32px, 4vw, 48px);
}

/* Scenario-driven guide card: photo top + chip + headline + desc + recommendation */
.guide-card {
    --gc-accent: var(--brand-700);
    --gc-tint: var(--brand-100);
    background: var(--surface);
    border: 1px solid var(--neutral-100);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 18px 0 rgba(0, 82, 65, 0.05);
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
    transition:
        transform var(--duration-base) var(--ease-out),
        box-shadow var(--duration-base) var(--ease-out),
        border-color var(--duration-base) var(--ease-out);
}
.guide-card--blue  { --gc-accent: #193152; --gc-tint: #B7D2FF; }
.guide-card--amber { --gc-accent: #854F0B; --gc-tint: #FFE7BF; }
.guide-card--mint  { --gc-accent: #005541; --gc-tint: #CDFEE6; }
.guide-card--rosa  { --gc-accent: #B2198B; --gc-tint: #FFCFF8; }

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px -4px rgba(0, 0, 26, 0.1);
    border-color: var(--gc-tint);
}

.guide-card__photo {
    position: relative;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: var(--gc-tint);
}
.guide-card__scenario {
    position: absolute;
    bottom: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--gc-accent);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(0, 0, 51, 0.12);
}

.guide-card__body {
    padding: 24px;
    display: flex; flex-direction: column; gap: 12px;
    flex: 1;
}
.guide-card__headline {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}
.guide-card__desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}
.guide-card__rec {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--neutral-100);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.guide-card__rec-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--neutral-300);
}
.guide-card__rec-name {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 16px; font-weight: 700;
    color: var(--gc-accent);
    transition: gap var(--duration-base) var(--ease-out);
}
.guide-card__rec-arrow,
.guide-card__rec-name svg { width: 18px; height: 18px; }
.guide-card:hover .guide-card__rec-name { gap: 12px; }

/* ================= Deep block (zigzag) — match Figma 04 · Meet Characters ================= */

.deep-block-stack { display: flex; flex-direction: column; gap: 24px; margin-top: clamp(32px, 4vw, 48px); }

.deep-block {
    --deep-bg: #FAFBFE;
    --deep-chip-bg: var(--brand-200);
    --deep-accent: var(--brand-700);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 12px 32px -8px rgba(0, 0, 26, 0.06);
    background: var(--deep-bg);
}
@media (min-width: 880px) {
    .deep-block { grid-template-columns: minmax(0, 500px) 1fr; }
    .deep-block.is-reverse .deep-block__photo { order: 2; }
    .deep-block.is-reverse .deep-block__body  { order: 1; }
}

/* Tonal palettes per character (Figma exact) */
.deep-block--blue  { --deep-bg: #EAF1FE; --deep-chip-bg: #B7D2FF; --deep-accent: #193152; }
.deep-block--amber { --deep-bg: #FFF6E5; --deep-chip-bg: #FFE7BF; --deep-accent: #854F0B; }
.deep-block--mint  { --deep-bg: #E8FAF1; --deep-chip-bg: #CDFEE6; --deep-accent: #005541; }
.deep-block--rosa  { --deep-bg: #FEEAF8; --deep-chip-bg: #FFCFF8; --deep-accent: #B2198B; }

.deep-block__photo {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-color: var(--deep-chip-bg);
}
@media (min-width: 880px) {
    .deep-block__photo { min-height: 560px; }
}

.deep-block__featured-pill {
    position: absolute;
    top: 32px; left: 32px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    background: var(--surface);
    color: var(--deep-accent);
    border-radius: var(--radius-full);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0, 0, 51, 0.15);
}
.deep-block__featured-pill i,
.deep-block__featured-pill svg {
    width: 12px; height: 12px;
    fill: var(--deep-accent);
    stroke: var(--deep-accent);
}

.deep-block__body {
    padding: clamp(32px, 4vw, 56px);
    display: flex; flex-direction: column; gap: 14px;
}
.deep-block__chip {
    align-self: flex-start;
    padding: 6px 12px;
    background: var(--deep-chip-bg);
    color: var(--deep-accent);
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: var(--radius-full);
}

.deep-block__name {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.1;
}
.deep-block__tagline {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: -4px;
}

.deep-block__story-wrap {
    position: relative;
    padding-left: 16px;
    margin-top: 16px;
}
.deep-block__story-stripe {
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 72px;
    background: var(--deep-accent);
    border-radius: 2px;
}
.deep-block__story-label {
    display: block;
    color: var(--deep-accent);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 6px;
}
.deep-block__story {
    color: var(--neutral-500, var(--text-secondary));
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.deep-block__moments-label {
    margin-top: 12px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--neutral-300);
}
.deep-block__moments {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.deep-block__moment {
    padding: 7px 14px;
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    font-size: 12px; font-weight: 500;
    white-space: nowrap;
}

.deep-block__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.deep-block__cta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0 24px; height: 52px;
    background: var(--deep-accent);
    color: var(--neutral-0);
    border-radius: var(--radius-full);
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px -4px rgba(0, 0, 26, 0.35);
    transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.deep-block__cta-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -4px rgba(0, 0, 26, 0.4); }
.deep-block__cta-primary i,
.deep-block__cta-primary svg { width: 18px; height: 18px; }
.deep-block__cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0 24px; height: 52px;
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: background-color var(--duration-base) var(--ease-out);
}
.deep-block__cta-secondary:hover { background: var(--surface-2); }
.deep-block__cta-secondary i,
.deep-block__cta-secondary svg { width: 12px; height: 12px; }

/* ================= CTA Dark banner ================= */

.cta-dark {
    padding: 24px;
}
.cta-dark__inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-3xl);
    padding: 64px 32px;
    background:
        radial-gradient(ellipse 60% 80% at 0% 100%, rgba(0,229,160,0.20), transparent 65%),
        radial-gradient(ellipse 40% 50% at 100% 20%, rgba(0,229,160,0.10), transparent 65%),
        linear-gradient(135deg, #0F1A2A 0%, #121826 100%);
    text-align: center;
    color: var(--neutral-0);
}
.cta-dark__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--brand-200); color: var(--brand-700);
    border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.cta-dark__title {
    margin-top: 18px;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.cta-dark__title .accent { display: block; color: var(--brand-400); }
.cta-dark__copy {
    margin: 16px auto 0;
    color: var(--neutral-400);
    max-width: 520px;
    font-size: 16px;
    line-height: 1.55;
}
.cta-dark__actions {
    margin-top: 28px;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.cta-dark__actions .btn-secondary.btn--outline {
    background: transparent !important;
    border-color: rgba(255,255,255,0.20) !important;
    color: var(--neutral-0) !important;
}
.cta-dark__actions .btn-secondary.btn--outline:hover {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.40) !important;
}
.cta-dark__trust {
    margin-top: 22px;
    font-size: 13px;
    color: var(--neutral-400);
}

/* ================= Character detail page ================= */

.char-hero {
    position: relative;
    overflow: hidden;
    padding: 80px var(--page-pad-x) 96px;
    background:
        radial-gradient(ellipse 70% 50% at 80% 30%, rgba(0,229,160,0.12), transparent 60%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(139,92,246,0.05), transparent 60%),
        var(--surface);
}
@media (max-width: 768px) { .char-hero { padding: 48px var(--page-pad-x) 64px; } }
.char-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}
@media (min-width: 880px) {
    .char-hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
}
.char-hero__copy .eyebrow { display: inline-flex; }
.char-hero__title {
    margin-top: 16px;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}
.char-hero__title .accent { color: var(--brand-400); }
.char-hero__copy-text {
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: var(--text-body-lg);
    line-height: 1.6;
    max-width: 540px;
}
.char-hero__audio {
    margin-top: 28px;
    padding: 16px 18px;
    border-radius: var(--radius-2xl);
    background: var(--surface);
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-sm);
    max-width: 420px;
}
.char-hero__audio-label {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-tertiary);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 8px;
}
.char-hero__audio-label i { width: 14px; height: 14px; color: var(--brand-500); }
.char-hero__audio audio { width: 100%; height: 36px; }
.char-hero__actions {
    margin-top: 32px;
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}

@keyframes char-avatar-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
}

.char-hero__avatar-wrap {
    display: flex; justify-content: center; align-items: center;
    perspective: 1200px;
}
.char-hero__avatar {
    position: relative;
    width: clamp(260px, 36vw, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 0 0 6px rgba(0, 229, 160, 0.18),
        0 24px 48px -12px rgba(0, 196, 138, 0.35),
        var(--shadow-xl);
    background: linear-gradient(135deg, var(--brand-200), var(--brand-100));
    animation: char-avatar-float 6s ease-in-out infinite;
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform 0.4s ease-out;
    transform-style: preserve-3d;
}
@media (prefers-reduced-motion: reduce) {
    .char-hero__avatar { animation: none; }
}
.char-hero__avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.char-hero__avatar--placeholder {
    display: grid; place-items: center;
}
.char-hero__avatar--placeholder i {
    width: 96px; height: 96px;
    color: var(--brand-500);
}

.char-video {
    margin-top: 48px;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--neutral-700);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-default);
}
.char-video iframe { width: 100%; height: 100%; display: block; border: 0; }

.char-cost {
    margin-top: 14px;
    display: inline-flex !important;
    align-items: center; gap: 6px;
    padding: 6px 12px !important;
    font-size: 12px; font-weight: 700;
}
.char-cost i { width: 14px; height: 14px; }

.exp-card--featured {
    background: linear-gradient(135deg, rgba(0,229,160,0.08), rgba(139,92,246,0.06));
    border-color: var(--brand-400) !important;
}

/* ================= Meet hero ================= */

.meet-hero {
    padding: 80px 24px;
    background:
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0,229,160,0.10), transparent 60%),
        var(--surface);
}
.meet-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}
@media (min-width: 880px) { .meet-hero__grid { grid-template-columns: 1fr 1fr; } }
.meet-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--text-primary);
}
.meet-hero__title .accent { color: var(--brand-400); }
.meet-hero__copy {
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: var(--text-body-lg);
    max-width: 520px;
    line-height: 1.6;
}
.meet-hero__actions { margin-top: 28px; }
.meet-hero__photo {
    aspect-ratio: 1;
    border-radius: var(--radius-3xl);
    background-size: contain; background-repeat: no-repeat; background-position: center;
    background-image: radial-gradient(ellipse at center, rgba(0,229,160,0.18), transparent 60%);
    position: relative;
}
.meet-hero__photo.has-image::after { content: ""; }

/* ================= About page ================= */

.mission-split { gap: clamp(28px, 4vw, 48px) !important; }
@media (min-width: 880px) {
    .mission-split { grid-template-columns: 1fr 1fr !important; gap: clamp(48px, 5vw, 64px) !important; }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: var(--gap-grid);
    margin-top: clamp(32px, 4vw, 48px);
}

.team-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-100);
    border-radius: 24px;
    padding: 36px 24px 28px;
    text-align: center;
    transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -8px rgba(0, 82, 65, 0.15); border-color: var(--brand-300); }
.team-card__avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    margin: 0 auto 28px;
    background-size: cover; background-position: center;
    background-color: var(--brand-100);
}
.team-card h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); }
.team-card__role { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.team-card__link {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 20px;
    color: var(--brand-500);
    font-size: 12px; font-weight: 700;
    text-decoration: none;
    transition: color var(--duration-base) var(--ease-out), gap var(--duration-base) var(--ease-out);
}
.team-card__link:hover { color: var(--brand-600); gap: 8px; }
.team-card__link i,
.team-card__link svg { width: 12px; height: 12px; }

/* Mission card visual — match Figma "61:446" */
.mission-card {
    position: relative;
    aspect-ratio: 13 / 11;
    border-radius: 32px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--brand-200);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 26, 0.12);
    padding: 48px;
    color: var(--neutral-0);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
}
.mission-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle 320px at 0% 0%, rgba(0, 196, 138, 0.55), transparent 70%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.7) 100%);
}
.mission-card > * { position: relative; z-index: 1; }
.mission-card__quote-mark {
    position: absolute;
    top: 32px; left: 48px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(120px, 14vw, 180px);
    font-weight: 800;
    line-height: 0.6;
    color: rgba(255, 255, 255, 0.4);
    user-select: none;
}
.mission-card__quote {
    margin-top: auto;
    margin-bottom: 16px;
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 600;
    line-height: 1.45;
    max-width: 460px;
    text-shadow: 0 2px 12px rgba(0, 0, 26, 0.3);
}
.mission-card__attribution {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.85;
    margin: 0;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 48px);
}
@media (min-width: 880px) {
    .contact-split { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 80px); align-items: start; }
}

.contact-list {
    display: flex; flex-direction: column; gap: 14px;
    margin-top: 32px;
}
.contact-list li {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-primary); font-size: 15px;
}
.contact-list li i { width: 18px; height: 18px; color: var(--brand-500); }
.contact-list a { color: inherit; text-decoration: none; }
.contact-list a:hover { color: var(--brand-600); }

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-2xl);
    padding: clamp(20px, 4vw, 28px);
    box-shadow: var(--shadow-md);
    display: flex; flex-direction: column; gap: 16px;
    min-width: 0;
}
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text-secondary); min-width: 0; }
.contact-form input, .contact-form select, .contact-form textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-default);
    background: var(--surface-2);
    color: var(--text-primary);
    font-family: inherit; font-size: 16px;
    transition: border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--brand-400);
    box-shadow: 0 0 0 3px rgba(0,229,160,0.20);
}
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) {
    .contact-form__row { grid-template-columns: 1fr; }
}
.contact-form__check { flex-direction: row !important; gap: 10px !important; align-items: flex-start; font-weight: 400; color: var(--text-secondary); }
.contact-form__check input { width: 18px; height: 18px; flex-shrink: 0; }

/* ================= Character detail · experiences grid ================= */
.char-exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: clamp(28px, 4vw, 44px);
    align-items: stretch;
}
.char-exp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border-default);
    border-top-width: 3px;
    border-top-color: var(--brand-300);
    border-radius: var(--radius-2xl);
    padding: 24px 22px 20px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition:
        transform var(--duration-base) var(--ease-out),
        box-shadow var(--duration-base) var(--ease-out),
        border-color var(--duration-base) var(--ease-out);
}
.char-exp-card__icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-lg);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    background: var(--brand-200);
    color: var(--brand-700);
    flex-shrink: 0;
}
.char-exp-card__icon i { width: 20px; height: 20px; }
.char-exp-card__title {
    font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0 0 6px;
}
.char-exp-card__desc {
    font-size: 13.5px; line-height: 1.5;
    color: var(--text-secondary);
    margin: 0 0 18px;
    flex-grow: 1;
}
.char-exp-card__foot {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-top: auto;
}
.char-exp-card__cost {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px;
    background: var(--brand-100, rgba(0,229,160,0.10));
    color: var(--brand-700);
    font-size: 12px; font-weight: 700;
    border-radius: var(--radius-full);
    white-space: nowrap;
}
.char-exp-card__cost i { width: 13px; height: 13px; }
.char-exp-card__cost--soon {
    background: var(--neutral-100);
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 10.5px;
    font-weight: 800;
}
.char-exp-card__go {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-400);
    color: #0a0a12;
    flex-shrink: 0;
    transition: transform var(--duration-base) var(--ease-out), background-color var(--duration-base) var(--ease-out);
}
.char-exp-card__go i { width: 16px; height: 16px; }

/* Link state — clickable card */
.char-exp-card--link { cursor: pointer; }
.char-exp-card--link:hover {
    transform: translateY(-4px);
    border-color: var(--brand-300);
    box-shadow: 0 14px 30px -12px rgba(0, 196, 138, 0.22), var(--shadow-md);
}
.char-exp-card--link:hover .char-exp-card__go {
    transform: translateX(2px);
    background: var(--brand-300);
}
.char-exp-card--link:focus-visible {
    outline: 2px solid var(--brand-400);
    outline-offset: 2px;
}

/* Coming soon state — muted, non-interactive */
.char-exp-card--soon {
    opacity: 0.72;
    border-top-color: var(--neutral-200);
}
.char-exp-card--soon .char-exp-card__icon {
    filter: grayscale(0.4);
    opacity: 0.85;
}

/* Exclusive product card */
.char-exp-card--exclusive {
    border-top-color: var(--brand-400);
    background:
        radial-gradient(ellipse 90% 50% at 50% 0%, rgba(0, 229, 160, 0.08), transparent 70%),
        var(--surface);
}
.char-exp-card__badge {
    position: absolute;
    top: 14px; right: 14px;
    padding: 4px 9px;
    background: var(--brand-400); color: #0a0a12;
    font-size: 9.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: var(--radius-full);
}

/* Tones — top border + icon chip color */
.char-exp-card.tone-mint    { border-top-color: var(--brand-300); }
.char-exp-card.tone-mint    .char-exp-card__icon { background: var(--brand-200); color: var(--brand-700); }
.char-exp-card.tone-magenta { border-top-color: var(--purple-200, #e9d5ff); }
.char-exp-card.tone-magenta .char-exp-card__icon { background: var(--purple-100, #f3e8ff); color: var(--purple-500, #a855f7); }
.char-exp-card.tone-purple  { border-top-color: var(--purple-200, #ddd6fe); }
.char-exp-card.tone-purple  .char-exp-card__icon { background: var(--purple-100, #ede9fe); color: #7c3aed; }
.char-exp-card.tone-blue    { border-top-color: var(--blue-200, #bfdbfe); }
.char-exp-card.tone-blue    .char-exp-card__icon { background: var(--blue-100, #dbeafe); color: var(--blue-400, #3b82f6); }
.char-exp-card.tone-amber   { border-top-color: #fde68a; }
.char-exp-card.tone-amber   .char-exp-card__icon { background: var(--tint-amber-d, #fef3c7); color: #8a5a00; }

@media (max-width: 560px) {
    .char-exp-grid { grid-template-columns: 1fr; gap: 14px; }
    .char-exp-card { padding: 20px 18px 18px; }
}

/* ================= Pricing · B2B band (separada de la grilla B2C) ================= */
.pricing-b2b-band {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: clamp(20px, 3vw, 32px);
    padding: 20px 24px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-default);
    background:
        radial-gradient(ellipse 50% 100% at 0% 50%, rgba(0, 229, 160, 0.06), transparent 70%),
        var(--surface);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
.pricing-b2b-band:hover {
    transform: translateY(-2px);
    border-color: var(--brand-300);
    box-shadow: var(--shadow-md);
}
.pricing-b2b-band__icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-lg);
    background: var(--brand-100, rgba(0,229,160,0.10));
    color: var(--brand-700);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pricing-b2b-band__icon i { width: 22px; height: 22px; }
.pricing-b2b-band__text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.pricing-b2b-band__text strong { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.pricing-b2b-band__text span { font-size: 13.5px; color: var(--text-secondary); line-height: 1.4; }
.pricing-b2b-band__cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; font-weight: 700;
    color: var(--brand-700);
    white-space: nowrap;
    flex-shrink: 0;
}
.pricing-b2b-band__cta i { width: 15px; height: 15px; transition: transform var(--duration-base) var(--ease-out); }
.pricing-b2b-band:hover .pricing-b2b-band__cta i { transform: translateX(3px); }
@media (max-width: 640px) {
    .pricing-b2b-band { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 20px; }
    .pricing-b2b-band__cta { margin-top: 2px; }
}

/* ================= Trust badges (compliance / seguridad) ================= */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: clamp(28px, 4vw, 40px);
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    background: var(--surface);
    border: 1px solid var(--border-default);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.08);
}
.trust-badge i { width: 15px; height: 15px; color: var(--brand-600); flex-shrink: 0; }
/* Footer variant — dark background */
.trust-badges--footer { justify-content: flex-start; margin-top: 0; }
.trust-badges--footer .trust-badge {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    box-shadow: none;
}
.trust-badges--footer .trust-badge i { color: var(--brand-400); }
@media (max-width: 480px) {
    .trust-badge { font-size: 12px; padding: 8px 12px; }
}

/* ================= Recursos para padres ================= */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 20px;
    margin-top: clamp(28px, 4vw, 44px);
}
.resource-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource-card__cover {
    display: flex; align-items: center; justify-content: center;
    height: 130px;
    font-size: 52px;
}
.resource-card--purple .resource-card__cover { background: rgba(173, 140, 255, 0.16); }
.resource-card--mint   .resource-card__cover { background: rgba(0, 229, 160, 0.14); }
.resource-card--amber  .resource-card__cover { background: rgba(245, 158, 11, 0.18); }
.resource-card__meta {
    padding: 18px 20px 0;
    font-size: 12px; font-weight: 600;
    color: var(--text-tertiary);
}
.resource-card__title {
    padding: 8px 20px 0;
    font-size: 17px; font-weight: 700; line-height: 1.3;
    color: var(--text-primary);
}
.resource-card__excerpt {
    padding: 8px 20px 22px;
    font-size: 13.5px; line-height: 1.5;
    color: var(--text-secondary);
}

/* ================= Floating CTA bar (móvil) + WhatsApp ================= */
.sticky-cta {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    background: var(--brand-400);
    color: #0a0a12;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 24px -6px rgba(0, 196, 138, 0.45), 0 2px 8px rgba(15, 23, 42, 0.12);
    transform: translateY(140%);
    transition: transform 0.32s var(--ease-spring, cubic-bezier(0.16, 1, 0.3, 1));
}
.sticky-cta i { width: 17px; height: 17px; }
.sticky-cta.is-visible { transform: translateY(0); }
@media (max-width: 880px) {
    .sticky-cta { display: flex; }
}

.wa-float {
    position: fixed;
    right: 16px; bottom: 16px;
    z-index: 49;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--brand-500);
    color: #fff;
    box-shadow: 0 6px 18px -4px rgba(0, 132, 98, 0.5);
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.wa-float:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 24px -4px rgba(0, 132, 98, 0.55); }
.wa-float i { width: 24px; height: 24px; }
/* On mobile, lift the WhatsApp button above the sticky CTA bar so they don't overlap. */
@media (max-width: 880px) {
    .wa-float--with-cta { bottom: 76px; }
}

/* ================= Header compaction on scroll ================= */
.navbar.is-scrolled,
.portal-nav.is-scrolled,
header.is-scrolled {
    box-shadow: 0 2px 12px -4px rgba(15, 23, 42, 0.12);
}
.navbar.is-scrolled .navbar__inner,
header.is-scrolled .navbar__inner {
    padding-top: 8px; padding-bottom: 8px;
    transition: padding 0.2s var(--ease-out);
}
