:root {
    --bg: #ffffff;
    --text: #182033;
    --muted: #6c7486;
    --line: #e9edf5;
    --card: rgba(255, 255, 255, 0.88);
    --card-solid: #ffffff;
    --shadow: 0 25px 60px rgba(19, 33, 68, 0.12);
    --shadow-soft: 0 16px 35px rgba(19, 33, 68, 0.10);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --primary: #69b9ff;
    --primary-strong: #3787ff;
    --primary-soft: rgba(55, 135, 255, 0.12);
    --accent: #ffd76a;
    --surface: #f7faff;
    --surface-2: #fff3f8;
    --success: #2ac28b;
    --danger: #ff668c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(105, 185, 255, 0.22), transparent 22%),
        radial-gradient(circle at top right, rgba(255, 198, 82, 0.18), transparent 20%),
        radial-gradient(circle at bottom center, rgba(255, 110, 167, 0.12), transparent 18%),
        #ffffff;
    min-height: 100vh;
}
body.theme-identidad {
    --primary: #72c6ff;
    --primary-strong: #2a92ff;
    --primary-soft: rgba(42, 146, 255, 0.12);
    --accent: #ffd86b;
    --surface: #f4fbff;
}
body.theme-pasion {
    --primary: #ff88bf;
    --primary-strong: #ff4a95;
    --primary-soft: rgba(255, 74, 149, 0.12);
    --accent: #ffd76a;
    --surface: #fff5fb;
}
body.theme-mision {
    --primary: #6ddfb0;
    --primary-strong: #17b978;
    --primary-soft: rgba(23, 185, 120, 0.12);
    --accent: #ffc96c;
    --surface: #f3fff8;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-shell { min-height: 100vh; }
.main-content { min-height: 100vh; }
.container { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.container-sm { width: min(840px, calc(100% - 28px)); margin-inline: auto; }

.playful-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.78);
    border-bottom: 1px solid rgba(30, 45, 76, 0.06);
}
.playful-topbar-inner {
    min-height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.playful-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.playful-brand img {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}
.playful-brand span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
}
.playful-brand strong { font-size: 1.1rem; }

.chip-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease;
}
.chip-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.chip-link-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
}
.chip-link-soft {
    background: rgba(255,255,255,0.72);
    color: var(--text);
    border: 1px solid rgba(35, 50, 84, 0.08);
}

.flash-floating {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    width: min(620px, calc(100% - 24px));
    transition: opacity .3s ease, transform .3s ease;
}
.flash-floating.hide {
    opacity: 0;
    transform: translate(-50%, -10px);
}
.flash-inner {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(35, 50, 84, 0.08);
}
.flash-success .flash-inner { border-left: 5px solid var(--success); }
.flash-error .flash-inner,
.flash-danger .flash-inner { border-left: 5px solid var(--danger); }
.flash-inner strong { display: block; margin-bottom: 4px; }
.flash-inner span { color: var(--muted); line-height: 1.6; }
.flash-close {
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7385;
}

.btn {
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
}
.btn-soft {
    background: rgba(255,255,255,0.8);
    color: var(--text);
    border: 1px solid rgba(35, 50, 84, 0.08);
}

.landing-screen {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 0;
}
.landing-center {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 30px;
    text-align: center;
}
.landing-logo-wrap {
    display: grid;
    justify-items: center;
    gap: 14px;
}
.landing-logo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow);
    background: #fff;
}
.landing-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(35, 50, 84, 0.08);
    font-weight: 700;
    color: #48516a;
}
.landing-copy h1,
.summary-hero-card h1 {
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.02;
    margin: 0 0 14px;
}
.landing-copy p,
.summary-hero-card p,
.panel-heading-card p,
.experience-card p,
.memory-comment p,
.empty-state p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}
.route-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.route-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(35, 50, 84, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: transform .2s ease, box-shadow .2s ease;
}
.route-card::after {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-soft), transparent 68%);
}
.route-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow); }
.route-card-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,0.95));
    margin-bottom: 18px;
}
.route-card-kicker {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6e7890;
    margin-bottom: 10px;
}
.route-card h2 { margin: 0 0 10px; font-size: 1.8rem; }
.route-card p { color: var(--muted); margin: 0 0 18px; }
.route-card-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    font-weight: 800;
}
.landing-actions-simple { display: flex; justify-content: center; }
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    animation: floaty 6s ease-in-out infinite;
}
.shape-one {
    width: 220px; height: 220px; left: -60px; top: 60px;
    background: rgba(93, 205, 255, .18);
}
.shape-two {
    width: 180px; height: 180px; right: 2%; top: 12%;
    background: rgba(255, 127, 176, .14); animation-delay: .8s;
}
.shape-three {
    width: 260px; height: 260px; right: 12%; bottom: -70px;
    background: rgba(255, 212, 110, .14); animation-delay: 1.4s;
}
@keyframes floaty {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

.experience-page {
    background:
        radial-gradient(circle at top left, var(--primary-soft), transparent 20%),
        radial-gradient(circle at bottom right, rgba(255, 212, 110, 0.18), transparent 18%),
        #ffffff;
}
.experience-shell {
    position: relative;
    min-height: 100vh;
    padding: 24px 0 40px;
    overflow: hidden;
}
.experience-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.deco-a { width: 220px; height: 220px; background: var(--primary-soft); top: -40px; left: -60px; }
.deco-b { width: 160px; height: 160px; background: rgba(255, 212, 110, .18); right: -40px; top: 180px; }
.deco-c { width: 220px; height: 220px; background: rgba(255, 138, 190, .10); left: 5%; bottom: -100px; }
.experience-wrap { position: relative; z-index: 2; }
.experience-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.experience-theme-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(35, 50, 84, 0.08);
    border-radius: 999px;
    padding: 10px 16px;
    box-shadow: var(--shadow-soft);
}
.theme-emoji {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,1));
    font-size: 1.3rem;
}
.experience-theme-badge small { display: block; color: var(--muted); }
.experience-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0 24px;
}
.progress-pill {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 900;
    color: #8991a4;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(35, 50, 84, 0.08);
}
.progress-pill.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    border-color: transparent;
}
.experience-progress .progress-line {
    width: 54px;
    height: 4px;
    border-radius: 999px;
    background: rgba(35, 50, 84, 0.08);
}
.experience-step { display: none; }
.experience-step.is-active { display: block; }
.experience-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(35, 50, 84, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 34px;
    backdrop-filter: blur(10px);
}
.large-card { min-height: 420px; display: grid; align-content: center; gap: 18px; }
.confirm-card { display: grid; gap: 16px; }
.step-mini-label {
    display: inline-flex;
    width: fit-content;
    min-height: 36px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-strong);
    font-weight: 800;
}
.experience-card h1,
.experience-card h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.04;
    margin: 0;
}
.question-input-wrap input,
textarea {
    width: 100%;
    border: 1px solid rgba(35, 50, 84, 0.10);
    background: #fff;
    border-radius: 22px;
    padding: 18px 20px;
    font: inherit;
    color: var(--text);
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.question-input-wrap input {
    min-height: 74px;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 600;
}
.question-input-wrap input:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px var(--primary-soft);
}
input.is-invalid { border-color: var(--danger); box-shadow: 0 0 0 5px rgba(255, 102, 140, .12); }
.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.playful-choice {
    padding: 24px 20px;
    min-height: 220px;
    border: 1px solid rgba(35, 50, 84, 0.08);
    background: #fff;
    border-radius: 24px;
    text-align: left;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 10px;
    align-content: start;
}
.choice-card { cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.choice-card:hover { transform: translateY(-4px); }
.choice-card.selected {
    border-color: var(--primary);
    background: linear-gradient(180deg, #fff, var(--primary-soft));
    box-shadow: 0 18px 35px rgba(55, 135, 255, 0.16);
}
.choice-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 1.55rem;
    background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,.98));
}
.choice-card strong { font-size: 1.22rem; }
.choice-card small { color: var(--muted); line-height: 1.7; }
.block-label { display: block; font-weight: 800; margin-bottom: 10px; }
.upload-playful-box {
    display: grid;
    gap: 10px;
    padding: 24px;
    border-radius: 24px;
    border: 2px dashed rgba(35, 50, 84, 0.14);
    background: linear-gradient(180deg, #fff, var(--surface));
    cursor: pointer;
}
.upload-playful-box input { display: none; }
.upload-playful-box strong { font-size: 1.08rem; }
.upload-playful-box span,
.helper-text,
.preview-meta span { color: var(--muted); }
.conditional-block + .conditional-block { margin-top: 24px; }
.preview-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}
.preview-item {
    background: #fff;
    border-radius: 22px;
    padding: 10px;
    border: 1px solid rgba(35, 50, 84, 0.08);
    box-shadow: var(--shadow-soft);
}
.preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
}
.preview-meta { padding: 10px 4px 6px; display: grid; gap: 4px; }
.preview-meta strong {
    font-size: .94rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.preview-remove {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 102, 140, 0.12);
    color: #d64277;
    font-weight: 800;
    cursor: pointer;
}
.step-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}
.center-actions { justify-content: center; }
.between-actions { justify-content: space-between; }
.summary-playful-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
}
.summary-item {
    background: linear-gradient(180deg, #fff, var(--surface));
    border: 1px solid rgba(35, 50, 84, 0.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}
.summary-item span,
.memory-card-top time { color: var(--muted); font-size: .95rem; }
.summary-item strong { display: block; margin-top: 6px; font-size: 1.1rem; }
.summary-item.full-width { grid-column: 1 / -1; }
.summary-item p { margin-top: 8px; }

.form-alert {
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow-soft);
}
.form-alert.danger { border-left: 6px solid var(--danger); }
.form-alert ul { margin: 10px 0 0 18px; color: var(--muted); }

.summary-page {
    background:
        radial-gradient(circle at top left, rgba(114, 198, 255, 0.16), transparent 22%),
        radial-gradient(circle at top right, rgba(255, 135, 190, 0.14), transparent 18%),
        radial-gradient(circle at bottom center, rgba(255, 214, 106, 0.14), transparent 20%),
        #fff;
}
.summary-shell {
    position: relative;
    overflow: hidden;
    padding: 30px 0 60px;
}
.summary-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    pointer-events: none;
}
.orb-a { width: 260px; height: 260px; background: rgba(114, 198, 255, .18); left: -60px; top: 20px; }
.orb-b { width: 220px; height: 220px; background: rgba(255, 135, 190, .16); right: -60px; top: 160px; }
.orb-c { width: 220px; height: 220px; background: rgba(255, 214, 106, .14); left: 40%; bottom: -80px; }
.summary-wrap { position: relative; z-index: 2; display: grid; gap: 22px; }
.summary-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.summary-hero-card {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(35, 50, 84, 0.08);
    box-shadow: var(--shadow);
}
.summary-stats {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
}
.stat-bubble {
    width: 140px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,1));
    border: 1px solid rgba(35, 50, 84, 0.08);
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: var(--shadow-soft);
}
.stat-bubble strong { display: block; font-size: 2.3rem; line-height: 1; }
.stat-bubble span { color: var(--muted); font-weight: 600; }
.summary-tab-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.summary-pill {
    border: 1px solid rgba(35, 50, 84, 0.08);
    background: rgba(255,255,255,0.86);
    border-radius: 999px;
    min-height: 56px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease;
}
.summary-pill:hover { transform: translateY(-2px); }
.summary-pill.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
}
.summary-pill strong {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.22);
}
.pill-emoji { font-size: 1.15rem; }
.summary-panel { display: none; gap: 18px; }
.summary-panel.active { display: grid; }
.panel-heading-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(35, 50, 84, 0.08);
    box-shadow: var(--shadow-soft);
}
.memory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.playful-memory-card {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(35, 50, 84, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    padding: 18px;
    display: grid;
    gap: 14px;
}
.memory-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}
.memory-theme-label {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-strong);
    font-weight: 800;
    margin-bottom: 10px;
}
.memory-card-top h3 { margin: 0; font-size: 1.3rem; }
.memory-comment {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, var(--surface));
    border: 1px solid rgba(35, 50, 84, 0.07);
}
.playful-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.playful-gallery-grid.single-photo { grid-template-columns: 1fr; }
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    background: #f5f7fb;
    min-height: 150px;
    box-shadow: var(--shadow-soft);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    transition: transform .22s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.empty-state {
    padding: 34px 24px;
    text-align: center;
    border-radius: 28px;
    background: rgba(255,255,255,0.9);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(35, 50, 84, 0.08);
}
.empty-icon {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,1));
}

@media (max-width: 991.98px) {
    .route-card-grid,
    .choice-grid,
    .memory-grid,
    .summary-hero-card { grid-template-columns: 1fr; }
    .summary-stats { justify-content: flex-start; }
    .panel-heading-card,
    .experience-meta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767.98px) {
    .landing-screen { padding: 28px 0 44px; }
    .experience-card { padding: 24px; }
    .playful-choice { min-height: auto; }
    .experience-progress .progress-line { width: 28px; }
    .summary-playful-box { grid-template-columns: 1fr; }
    .step-actions,
    .between-actions,
    .summary-top,
    .playful-topbar-inner { flex-direction: column; align-items: stretch; }
    .btn,
    .chip-link,
    .summary-pill { width: 100%; }
    .stat-bubble { width: 120px; }
}

/* =========================
   Rediseño resumen + detalle
   ========================= */
.summary-chooser-page {
    background:
        radial-gradient(circle at 10% 10%, rgba(114, 198, 255, 0.18), transparent 18%),
        radial-gradient(circle at 90% 12%, rgba(255, 136, 191, 0.18), transparent 16%),
        radial-gradient(circle at 48% 100%, rgba(255, 215, 106, 0.16), transparent 22%),
        #ffffff;
}
.summary-entry-shell,
.theme-detail-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 32px 0 56px;
}
.summary-entry-glow,
.detail-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    opacity: .75;
    pointer-events: none;
}
.glow-a,
.detail-glow-a { width: 260px; height: 260px; background: rgba(114, 198, 255, .25); top: -60px; left: -40px; }
.glow-b,
.detail-glow-b { width: 230px; height: 230px; background: rgba(255, 136, 191, .22); top: 180px; right: -40px; }
.glow-c { width: 230px; height: 230px; background: rgba(255, 215, 106, .20); bottom: -60px; left: 40%; }
.summary-entry-wrap,
.theme-detail-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 24px;
}
.summary-entry-head,
.detail-hero {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(34, 48, 79, 0.08);
    box-shadow: 0 28px 60px rgba(25, 39, 69, 0.10);
    border-radius: 34px;
    backdrop-filter: blur(14px);
}
.summary-entry-head {
    padding: 30px;
    display: grid;
    gap: 18px;
    text-align: center;
}
.summary-entry-head h1,
.detail-hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
}
.summary-entry-head p,
.detail-hero p {
    width: min(760px, 100%);
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.8;
}
.floating-back-link {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(34, 48, 79, 0.08);
    background: rgba(255,255,255,0.84);
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}
.entry-mini-pill,
.current-theme-pill {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(114, 198, 255, .18), rgba(255, 215, 106, .20));
    color: var(--text);
}
.entry-stats-row,
.detail-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.entry-stat-card {
    padding: 20px 18px;
    border-radius: 26px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(34, 48, 79, 0.08);
    box-shadow: var(--shadow-soft);
    text-align: center;
}
.entry-stat-card.colorful {
    background: linear-gradient(135deg, rgba(114, 198, 255, .16), rgba(255, 136, 191, .14), rgba(255, 215, 106, .15));
}
.entry-stat-card strong {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1;
    margin-bottom: 6px;
}
.entry-stat-card span {
    color: var(--muted);
    font-weight: 600;
}
.theme-door-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.theme-door-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 32px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(34, 48, 79, 0.08);
    box-shadow: 0 20px 45px rgba(20, 33, 62, 0.10);
    transition: transform .22s ease, box-shadow .22s ease;
}
.theme-door-card:hover {
    transform: translateY(-6px) rotate(-0.4deg);
    box-shadow: 0 28px 55px rgba(20, 33, 62, 0.14);
}
.theme-door-card::after {
    content: '';
    position: absolute;
    inset: auto -50px -50px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.48), transparent 68%);
}
.door-topline,
.door-footer,
.door-stats {
    position: relative;
    z-index: 2;
}
.door-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.door-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.72));
    box-shadow: var(--shadow-soft);
}
.door-badge {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    background: var(--primary-soft);
    color: var(--primary-strong);
}
.door-copy h2 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 2vw, 2.4rem);
}
.door-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}
.door-preview {
    position: relative;
    min-height: 240px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,.8), var(--surface));
    border: 1px solid rgba(34, 48, 79, 0.08);
}
.door-preview.has-image img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}
.door-preview-overlay {
    position: absolute;
    inset: auto 16px 16px 16px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.84);
    backdrop-filter: blur(8px);
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}
.door-preview-empty,
.detail-empty-visual {
    min-height: 240px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    gap: 10px;
    color: var(--muted);
}
.door-preview-empty span,
.detail-empty-visual span {
    font-size: 2.4rem;
}
.door-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.door-stats div {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(34, 48, 79, 0.06);
}
.door-stats strong,
.door-footer strong {
    display: block;
}
.door-stats span,
.door-footer span {
    color: var(--muted);
    font-size: .95rem;
}
.door-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.detail-hero {
    padding: 24px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 20px;
    align-items: stretch;
}
.detail-top-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.detail-hero-copy p { margin: 0; width: 100%; }
.detail-hero-copy {
    display: grid;
    gap: 18px;
    align-content: start;
}
.detail-hero-visual {
    min-height: 360px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,.84), var(--surface));
    border: 1px solid rgba(34, 48, 79, 0.08);
    box-shadow: var(--shadow-soft);
}
.detail-hero-visual.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.detail-filter-btn {
    border: 1px solid rgba(34, 48, 79, 0.08);
    background: rgba(255,255,255,.86);
    border-radius: 999px;
    min-height: 50px;
    padding: 0 18px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, background .18s ease, color .18s ease;
}
.detail-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
}
.memory-wall {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}
.memory-wall-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(34, 48, 79, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, opacity .18s ease;
}
.memory-wall-card.is-hidden {
    display: none;
}
.wall-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wall-avatar {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,.98));
    color: var(--primary-strong);
}
.wall-card-head strong {
    display: block;
    margin-bottom: 2px;
}
.wall-card-head span {
    color: var(--muted);
    font-size: .92rem;
}
.wall-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.wall-gallery.single {
    grid-template-columns: 1fr;
}
.wall-gallery.many .wall-photo:first-child {
    grid-column: 1 / -1;
}
.wall-photo {
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}
.wall-photo img {
    width: 100%;
    height: 100%;
    min-height: 165px;
    object-fit: cover;
    transition: transform .24s ease;
}
.wall-photo:hover img {
    transform: scale(1.05);
}
.wall-comment-box {
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, var(--surface));
    border: 1px solid rgba(34, 48, 79, 0.06);
}
.wall-comment-box p {
    margin: 0;
    color: var(--text);
    line-height: 1.85;
}
.detail-empty-state {
    padding: 40px 26px;
}
.memory-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(11, 18, 34, 0.86);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    padding: 24px;
}
.memory-lightbox[hidden] { display: none; }
.memory-lightbox-content {
    width: min(900px, 100%);
    display: grid;
    gap: 14px;
    justify-items: center;
}
.memory-lightbox-content img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 28px;
    background: #fff;
}
.memory-lightbox-content p {
    margin: 0;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.memory-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 1.9rem;
    cursor: pointer;
}
[data-reveal] {
    opacity: 0;
    transform: translateY(22px) scale(.98);
    transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 991.98px) {
    .theme-door-grid,
    .memory-wall,
    .detail-hero,
    .entry-stats-row,
    .detail-stats-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .summary-entry-head,
    .detail-hero,
    .theme-door-card,
    .memory-wall-card { padding: 22px; }

    .door-footer,
    .detail-top-actions,
    .detail-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .detail-add-btn,
    .detail-filter-btn,
    .floating-back-link { width: 100%; justify-content: center; }
}

/* ===== Avatar + nuevo flujo ===== */
.compact-meta {
    margin-bottom: 22px;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.avatar-card {
    border: 1px solid rgba(35, 50, 84, 0.08);
    background: rgba(255,255,255,0.92);
    border-radius: 24px;
    min-height: 122px;
    padding: 14px 10px;
    display: grid;
    place-items: center;
    gap: 6px;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    box-shadow: 0 12px 26px rgba(19, 33, 68, 0.06);
}

.avatar-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 30px rgba(19, 33, 68, 0.10);
}

.avatar-card.selected {
    border-color: rgba(55, 135, 255, 0.28);
    box-shadow: 0 18px 40px rgba(55, 135, 255, 0.16);
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(114,198,255,.16));
}

.avatar-emoji {
    font-size: 2rem;
    line-height: 1;
}

.avatar-card strong {
    font-size: .95rem;
}

.guide-card {
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
}

.guide-icon-wrap {
    width: 94px;
    height: 94px;
    margin: 10px auto 18px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, rgba(255,255,255,.92), var(--primary-soft));
    box-shadow: var(--shadow-soft);
}

.guide-points {
    display: grid;
    gap: 14px;
    margin-top: 24px;
    text-align: left;
}

.guide-point {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(35, 50, 84, 0.07);
    border-radius: 20px;
    padding: 16px 18px;
}

.guide-point > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 1.6rem;
    background: var(--surface);
}

.guide-point strong,
.preview-meta strong,
.summary-avatar-box em,
.success-shell-card h1 {
    color: var(--text);
}

.guide-point small,
.success-shell-card p,
.preview-meta span {
    display: block;
    color: var(--muted);
    line-height: 1.6;
}

.summary-avatar-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-style: normal;
}

.summary-avatar-box span {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--surface);
    font-size: 1.4rem;
}

.success-shell-card {
    max-width: 700px;
    margin: 44px auto 0;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(35, 50, 84, 0.07);
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: 42px 28px;
    text-align: center;
}

.success-burst {
    width: 108px;
    height: 108px;
    margin: 0 auto 14px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    font-size: 2.7rem;
    background: linear-gradient(135deg, rgba(255,255,255,.96), var(--primary-soft));
    box-shadow: 0 20px 44px rgba(19, 33, 68, 0.12);
}

.success-mini-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 26px;
}

.wall-avatar-emoji {
    font-size: 1.5rem;
}

.wall-avatar-emoji span {
    line-height: 1;
}

.form-alert.danger {
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .avatar-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .avatar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-point {
        align-items: flex-start;
    }

    .success-shell-card {
        padding: 34px 20px;
        border-radius: 28px;
    }
}
.journey-select-shell {
    padding-top: 28px;
}

.journey-select-head {
    position: relative;
    overflow: hidden;
    gap: 20px;
}

.journey-select-head::before,
.journey-select-head::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.journey-select-head::before {
    width: 180px;
    height: 180px;
    top: -80px;
    right: -40px;
    background: radial-gradient(circle, rgba(114, 198, 255, .26), transparent 68%);
}

.journey-select-head::after {
    width: 160px;
    height: 160px;
    bottom: -70px;
    left: -30px;
    background: radial-gradient(circle, rgba(255, 136, 191, .20), transparent 68%);
}

.journey-select-pill {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(114, 198, 255, .16), rgba(255, 136, 191, .16), rgba(255, 215, 106, .18));
    color: var(--text);
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(25, 39, 69, 0.08);
}

.journey-select-pill span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .72);
}

.journey-select-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.journey-stat-bubble {
    min-width: 140px;
    padding: 16px 18px;
    border-radius: 24px;
    text-align: center;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(34, 48, 79, 0.08);
    box-shadow: var(--shadow-soft);
}

.journey-stat-bubble span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.75);
    font-size: 1.15rem;
}

.journey-stat-bubble strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
}

.journey-stat-bubble small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 700;
}

.journey-stat-bubble.is-blue { background: linear-gradient(135deg, rgba(114, 198, 255, .18), rgba(255,255,255,.95)); }
.journey-stat-bubble.is-pink { background: linear-gradient(135deg, rgba(255, 136, 191, .16), rgba(255,255,255,.95)); }
.journey-stat-bubble.is-yellow { background: linear-gradient(135deg, rgba(255, 215, 106, .18), rgba(255,255,255,.95)); }

.journey-select-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.journey-theme-card {
    --tiltX: 0deg;
    --tiltY: 0deg;
    --moveY: 0px;
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 34px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(34, 48, 79, 0.08);
    box-shadow: 0 22px 50px rgba(20, 33, 62, 0.10);
    transform: perspective(1200px) rotateX(var(--tiltX)) rotateY(var(--tiltY)) translateY(var(--moveY));
    transform-style: preserve-3d;
    transition: transform .18s ease, box-shadow .18s ease;
}

.journey-theme-card:hover {
    --moveY: -4px;
    box-shadow: 0 28px 64px rgba(20, 33, 62, 0.16);
}

.journey-theme-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,.55), transparent 42%, rgba(255,255,255,.28));
    pointer-events: none;
}

.journey-theme-noise {
    position: absolute;
    inset: auto -30px -35px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.52), transparent 70%);
    pointer-events: none;
}

.journey-theme-top,
.journey-preview-card,
.journey-theme-metrics,
.journey-theme-footer {
    position: relative;
    z-index: 1;
}

.journey-theme-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}

.journey-icon-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    flex-shrink: 0;
}

.journey-icon-core {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.68));
    box-shadow: 0 16px 36px rgba(25, 39, 69, 0.12);
}

.journey-icon-orbit {
    position: absolute;
    border-radius: 50%;
    animation: orbitFloat 4.8s ease-in-out infinite;
}

.journey-icon-orbit.orbit-a {
    width: 12px;
    height: 12px;
    top: 4px;
    right: 6px;
    background: rgba(114, 198, 255, .9);
}

.journey-icon-orbit.orbit-b {
    width: 10px;
    height: 10px;
    bottom: 10px;
    right: -2px;
    background: rgba(255, 136, 191, .9);
    animation-delay: .7s;
}

.journey-icon-orbit.orbit-c {
    width: 14px;
    height: 14px;
    top: 16px;
    left: -2px;
    background: rgba(255, 215, 106, .88);
    animation-delay: 1.2s;
}

@keyframes orbitFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.08); }
}

.journey-theme-tagline h2 {
    margin: 8px 0 6px;
    font-size: clamp(1.8rem, 2.2vw, 2.5rem);
}

.journey-theme-tagline p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.journey-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 900;
    letter-spacing: .02em;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(34, 48, 79, 0.08);
}

.journey-preview-card {
    position: relative;
    min-height: 250px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(34, 48, 79, 0.08);
    background: linear-gradient(140deg, rgba(255,255,255,.82), var(--surface));
}

.journey-preview-card.has-image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform .5s ease;
}

.journey-theme-card:hover .journey-preview-card.has-image img {
    transform: scale(1.05);
}

.journey-preview-overlay {
    position: absolute;
    inset: auto 14px 14px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.84);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 30px rgba(18, 32, 58, 0.12);
}

.journey-preview-overlay span {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.9);
    font-size: 1.2rem;
}

.journey-preview-overlay strong {
    line-height: 1.2;
}

.journey-preview-empty {
    min-height: 250px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 26px;
    gap: 10px;
    color: var(--muted);
}

.journey-preview-empty span {
    font-size: 2.4rem;
}

.journey-preview-empty strong {
    color: var(--text);
}

.journey-theme-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.journey-theme-metrics div {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(34, 48, 79, 0.06);
}

.journey-theme-metrics strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.journey-theme-metrics span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

.journey-theme-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.journey-last-move small {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-weight: 700;
}

.journey-last-move strong {
    display: block;
    font-size: .95rem;
}

.journey-enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.72));
    border: 1px solid rgba(34, 48, 79, 0.08);
    box-shadow: 0 14px 28px rgba(18, 32, 58, 0.10);
    font-weight: 900;
    color: var(--text);
    transition: transform .18s ease, box-shadow .18s ease;
}

.journey-enter-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 34px rgba(18, 32, 58, 0.14);
}

.journey-enter-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.9);
}

.theme-identidad .journey-tag,
.theme-identidad .journey-enter-btn,
.theme-identidad .journey-theme-metrics div,
.theme-identidad .journey-preview-card {
    background-image: linear-gradient(135deg, rgba(114, 198, 255, .10), rgba(255,255,255,.92));
}

.theme-pasion .journey-tag,
.theme-pasion .journey-enter-btn,
.theme-pasion .journey-theme-metrics div,
.theme-pasion .journey-preview-card {
    background-image: linear-gradient(135deg, rgba(255, 136, 191, .10), rgba(255,255,255,.92));
}

.theme-mision .journey-tag,
.theme-mision .journey-enter-btn,
.theme-mision .journey-theme-metrics div,
.theme-mision .journey-preview-card {
    background-image: linear-gradient(135deg, rgba(255, 215, 106, .12), rgba(255,255,255,.92));
}

@media (max-width: 1100px) {
    .journey-select-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .journey-theme-top {
        grid-template-columns: 1fr;
    }

    .journey-icon-wrap {
        margin: 0 auto;
    }

    .journey-theme-tagline {
        text-align: center;
    }

    .journey-theme-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .journey-enter-btn {
        justify-content: center;
        width: 100%;
    }

    .journey-stat-bubble {
        flex: 1 1 100%;
    }
}

