/* Página de inicio pública — Orfeo (refinada) */

.landing-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    color: #0f172a;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.landing-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.55rem 1.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    flex: 0 0 auto;
    min-width: 0;
}

.landing-logo-image {
    width: auto;
    height: 60px;
    max-height: 60px;
    min-width: 0;
    object-fit: contain;
}

.landing-logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(145deg, #14b8a6, #0d9488);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.38);
}

.landing-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.landing-logo-title {
    font-weight: 700;
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.landing-logo-sub {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.landing-nav-link {
    font-size: 0.82rem;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

.landing-nav-link:hover {
    color: #0d9488;
    background: rgba(13, 148, 136, 0.08);
}

.landing-btn-clientes.mud-button-root {
    font-weight: 600 !important;
}

/* —— Hero —— */
.landing-hero {
    background:
        radial-gradient(ellipse 90% 60% at 15% -10%, rgba(45, 212, 191, 0.2), transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 20%, rgba(14, 165, 233, 0.12), transparent 50%),
        linear-gradient(180deg, #ecfdf5 0%, #f8fafc 38%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    overflow: hidden;
}

.landing-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.75rem 1.25rem 3.25rem;
}

.landing-hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 2.5rem 3rem;
    align-items: center;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.12);
    color: #0f766e;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.landing-eyebrow-icon.mud-icon-root {
    color: #0d9488 !important;
    font-size: 1.1rem !important;
}

.landing-hero-title {
    font-size: clamp(1.85rem, 4.2vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin: 0 0 1rem;
    line-height: 1.12;
    color: #0f172a;
}

.landing-hero-lead {
    font-size: 1.08rem;
    color: #475569;
    line-height: 1.65;
    max-width: 36rem;
    margin: 0 0 1.35rem;
}

.landing-hero-bullets {
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
    max-width: 38rem;
}

.landing-hero-bullets li {
    position: relative;
    padding-left: 1.45rem;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}

.landing-hero-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6, #0ea5e9);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.landing-hero-note {
    margin: 1rem 0 0;
    font-size: 0.75rem;
    color: #94a3b8;
    max-width: 32rem;
    line-height: 1.45;
}

.landing-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
}

/* Mock dashboard */
.landing-hero-visual {
    position: relative;
}

.landing-mock-card {
    border-radius: 18px;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow:
        0 28px 56px -20px rgba(15, 23, 42, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
}

.landing-mock-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.landing-mock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.landing-mock-dot:first-child {
    background: #fb7185;
}

.landing-mock-dot:nth-child(2) {
    background: #fbbf24;
}

.landing-mock-dot:nth-child(3) {
    background: #34d399;
}

.landing-mock-title {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.landing-mock-body {
    padding: 1.1rem 1.15rem 1.25rem;
}

.landing-mock-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.landing-mock-kpi {
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.landing-mock-kpi-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    margin-bottom: 0.35rem;
}

.landing-mock-kpi-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.landing-mock-kpi-trend {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.landing-mock-kpi-trend--up {
    color: #059669;
    font-weight: 600;
}

.landing-mock-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    height: 88px;
    padding: 0.5rem 0.25rem;
    margin-bottom: 0.85rem;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(13, 148, 136, 0.06) 0%, transparent 100%);
    border: 1px dashed rgba(148, 163, 184, 0.45);
}

.landing-mock-bar {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #5eead4 0%, #0d9488 100%);
    opacity: 0.92;
    animation: landing-bar-pulse 3.2s ease-in-out infinite;
}

.landing-mock-bar:nth-child(2) {
    animation-delay: 0.2s;
}
.landing-mock-bar:nth-child(3) {
    animation-delay: 0.4s;
}
.landing-mock-bar:nth-child(4) {
    animation-delay: 0.6s;
}
.landing-mock-bar:nth-child(5) {
    animation-delay: 0.8s;
}
.landing-mock-bar:nth-child(6) {
    animation-delay: 1s;
}

@keyframes landing-bar-pulse {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.08);
    }
}

.landing-mock-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.landing-mock-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    background: rgba(13, 148, 136, 0.12);
    color: #0f766e;
    border: 1px solid rgba(13, 148, 136, 0.25);
}

/* Métricas */
.landing-band--tight {
    padding: 1.75rem 1.25rem;
}

.landing-section-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0d9488;
    margin: 0 0 0.75rem;
}

.landing-section-label--on-dark {
    color: #5eead4;
}

.landing-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.landing-stat {
    padding: 1.1rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    text-align: center;
}

.landing-stat-value {
    display: block;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 0.35rem;
}

.landing-stat-label {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
}

/* Secciones genéricas */
.landing-band {
    padding: 3rem 1.25rem;
}

.landing-band--alt {
    background: #fff;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.landing-section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.landing-h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
    color: #0f172a;
}

.landing-h2--center {
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.landing-h2--on-dark {
    color: #f8fafc;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.landing-h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
    color: #0f172a;
}

.landing-intro {
    margin: 0 0 1.25rem;
    color: #475569;
    line-height: 1.65;
    max-width: 48rem;
    font-size: 1.02rem;
}

.landing-intro--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.landing-intro--on-dark {
    color: rgba(226, 232, 240, 0.92);
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.landing-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-checklist li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.35rem;
    color: #334155;
    line-height: 1.45;
}

.landing-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d9488;
    font-weight: 700;
    font-size: 0.85rem;
}

.landing-checklist--compact li {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    font-size: 0.88rem;
}

/* Pilares */
.landing-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.landing-pillar {
    padding: 1.35rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.landing-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    background: linear-gradient(145deg, color-mix(in srgb, var(--pillar) 22%, white), color-mix(in srgb, var(--pillar) 8%, white));
    color: var(--pillar);
}

.landing-pillar-icon .mud-icon-root {
    font-size: 1.5rem !important;
}

.landing-pillar p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
}

/* Quote */
.landing-band--quote {
    padding: 2.5rem 1.25rem;
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.08) 0%, rgba(14, 165, 233, 0.06) 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.landing-quote {
    margin: 0 auto;
    max-width: 44rem;
    text-align: center;
    border: none;
    padding: 0;
}

.landing-quote p {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.55;
    font-style: italic;
}

.landing-quote footer {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    font-style: normal;
}

.landing-quote-meta {
    font-weight: 500;
    color: #94a3b8;
    font-size: 0.82rem;
}

/* Feature grid */
.landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.35rem;
    margin-top: 2rem;
}

.landing-grid--features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-card {
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 16px;
    padding: 1.35rem 1.4rem;
}

.landing-card--feature {
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

.landing-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    background: linear-gradient(145deg, rgba(13, 148, 136, 0.18), rgba(13, 148, 136, 0.06));
    color: #0d9488;
}

.landing-card-icon-wrap--amber {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.25), rgba(245, 158, 11, 0.08));
    color: #b45309;
}

.landing-card-icon-wrap--violet {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.22), rgba(139, 92, 246, 0.07));
    color: #6d28d9;
}

.landing-card-icon-wrap--rose {
    background: linear-gradient(145deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.06));
    color: #be123c;
}

.landing-card-icon.mud-icon-root {
    font-size: 1.45rem !important;
}

.landing-card p {
    margin: 0 0 0.65rem;
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.55;
}

/* Pasos */
.landing-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.landing-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.landing-step-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(145deg, #14b8a6, #0d9488);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.35);
}

.landing-step-body p {
    margin: 0;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
}

/* FAQ */
.landing-faq-inner {
    max-width: 640px;
}

.landing-faq {
    margin-top: 1.5rem;
}

.landing-faq-item {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 12px;
    background: #fff;
    margin-bottom: 0.65rem;
    overflow: hidden;
}

.landing-faq-item summary {
    padding: 1rem 1.15rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
}

.landing-faq-item summary::-webkit-details-marker {
    display: none;
}

.landing-faq-item summary::after {
    content: "+";
    float: right;
    font-weight: 800;
    color: #0d9488;
}

.landing-faq-item[open] summary::after {
    content: "−";
}

.landing-faq-item p {
    margin: 0;
    padding: 0 1.15rem 1.1rem;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* CTA final */
.landing-cta-final {
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 42%, #0f172a 100%);
    border: none;
    padding: 3.5rem 1.25rem;
}

.landing-cta-block {
    text-align: center;
}

.landing-cta-block .landing-hero-cta {
    justify-content: center;
    margin-top: 1.75rem;
}

.landing-cta-btn-light.mud-button-root {
    background: #f8fafc !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

.landing-cta-btn-outline {
    border-color: rgba(248, 250, 252, 0.45) !important;
    color: #f8fafc !important;
}

.landing-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Footer */
.landing-footer {
    margin-top: auto;
    padding: 1.35rem 1.25rem;
    background: #020617;
    color: rgba(248, 250, 252, 0.72);
    font-size: 0.82rem;
}

.landing-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.75rem;
    text-align: center;
}

.landing-footer-sep {
    opacity: 0.45;
}

.landing-footer-hint {
    opacity: 0.85;
}

.landing-footer-link {
    color: #5eead4;
    text-decoration: none;
    font-weight: 600;
}

.landing-footer-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .landing-hero-split {
        grid-template-columns: 1fr;
    }

    .landing-hero-visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }

    .landing-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-grid--features {
        grid-template-columns: 1fr;
    }

    .landing-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .landing-header-inner {
        justify-content: center;
        gap: 0.5rem;
    }

    .landing-logo-image {
        width: auto;
        height: 40px;
        max-height: 40px;
        min-width: 0;
    }

    .landing-nav {
        justify-content: center;
        width: 100%;
    }

    .landing-nav .landing-nav-link {
        display: none;
    }

    .landing-stats {
        grid-template-columns: 1fr;
    }

    .landing-pillars {
        grid-template-columns: 1fr;
    }

    .landing-steps {
        grid-template-columns: 1fr;
    }

    .landing-mock-kpis {
        grid-template-columns: 1fr;
    }
}

/* color-mix fallback for older browsers */
@supports not (color: color-mix(in srgb, red, blue)) {
    .landing-pillar-icon {
        background: rgba(13, 148, 136, 0.12);
    }
}

/* Orfeo cobre overrides */
.landing-nav-link:hover,
.landing-footer-link {
    color: var(--orfeo-cobre);
}

.landing-nav-link:hover {
    background: rgba(198, 127, 64, 0.1);
}

.landing-section-label,
.landing-eyebrow {
    color: var(--orfeo-cobre);
}

.landing-eyebrow {
    background: rgba(198, 127, 64, 0.12);
}

.landing-eyebrow-icon.mud-icon-root {
    color: var(--orfeo-cobre) !important;
}

.landing-hero-bullets li::before,
.landing-step-num {
    background: linear-gradient(135deg, #c67f40, #a6662d);
}

.landing-mock-tag {
    background: rgba(198, 127, 64, 0.12);
    border-color: rgba(198, 127, 64, 0.35);
    color: #8f5728;
}

.landing-cta-final {
    background: linear-gradient(135deg, #0f0f12 0%, #26262d 42%, #0f0f12 100%);
}

/* Sustituir remanentes verdes por ocre */
.landing-hero {
    background:
        radial-gradient(ellipse 90% 60% at 15% -10%, rgba(198, 127, 64, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 20%, rgba(198, 127, 64, 0.08), transparent 50%),
        linear-gradient(180deg, #fcf8f4 0%, #fafaf8 38%, #f5f3f1 100%);
}

.landing-mock-bar {
    background: linear-gradient(180deg, #dbab7f 0%, #c67f40 100%);
}

.landing-mock-chart {
    background: linear-gradient(180deg, rgba(198, 127, 64, 0.08) 0%, transparent 100%);
}

.landing-checklist li::before,
.landing-faq-item summary::after {
    color: var(--orfeo-cobre);
}

.landing-section-label--on-dark {
    color: #dbab7f;
}

/* Manual de marca Orfeo: tipografía y acentos */
.landing-nav-link,
.landing-hero-lead,
.landing-intro,
.landing-card p,
.landing-step-body p,
.landing-stat-label {
    font-family: "Jost", "Segoe UI", Arial, sans-serif;
}

.landing-hero-title,
.landing-h2,
.landing-h3,
.landing-quote p {
    font-family: "Cormorant", Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.landing-mock-kpi-value,
.landing-mock-title {
    font-family: "DM Mono", Consolas, monospace;
}

.landing-pillar-icon {
    background: rgba(198, 127, 64, 0.14);
    color: #a6662d;
}

.landing-card-icon-wrap,
.landing-card-icon-wrap--amber,
.landing-card-icon-wrap--violet,
.landing-card-icon-wrap--rose {
    background: rgba(198, 127, 64, 0.14);
    color: #a6662d;
}

/* Forzar eliminación de acentos verdosos heredados */
.landing-logo-mark,
.landing-eyebrow-icon.mud-icon-root,
.landing-checklist li::before,
.landing-faq-item summary::after {
    color: #c67f40 !important;
}

.landing-nav-link:hover {
    color: #a6662d !important;
    background: rgba(198, 127, 64, 0.1) !important;
}

.landing-hero-bullets li::before,
.landing-step-num,
.landing-mock-bar {
    background: linear-gradient(135deg, #c67f40, #a6662d) !important;
    box-shadow: 0 0 0 3px rgba(198, 127, 64, 0.18);
}

.landing-band--quote,
.landing-card-icon-wrap,
.landing-card-icon-wrap--amber,
.landing-card-icon-wrap--violet,
.landing-card-icon-wrap--rose,
.landing-mock-tag {
    background-color: rgba(198, 127, 64, 0.1) !important;
}

/* ===== Página de Planes y precios ===== */
.landing-hero--pricing {
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.landing-pricing-head {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.landing-pricing-head .landing-eyebrow {
    justify-content: center;
}

.landing-pricing-lead {
    margin-left: auto;
    margin-right: auto;
}

.landing-pricing-flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.1rem;
    margin: 1.25rem 0 0.9rem;
}

.landing-pricing-flag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: #334155;
}

.landing-pricing-flag .mud-icon-root {
    font-size: 1.05rem !important;
    color: #a6662d;
}

.landing-pricing-annual {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0.4rem auto 0;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    background: rgba(198, 127, 64, 0.1);
    border: 1px solid rgba(198, 127, 64, 0.28);
    color: #7c4a1e;
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 44rem;
    text-align: left;
}

.landing-pricing-annual .mud-icon-root {
    font-size: 1.2rem !important;
    color: #a6662d;
    flex: 0 0 auto;
}

.landing-band--pricing {
    padding-top: 2.5rem;
}

.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: start;
}

.landing-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 18px;
    padding: 1.6rem 1.5rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
}

.landing-plan--featured {
    border-color: rgba(166, 102, 45, 0.55);
    box-shadow: 0 18px 44px rgba(166, 102, 45, 0.18);
}

.landing-plan-badge {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #c67f40, #a6662d);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(166, 102, 45, 0.4);
    white-space: nowrap;
}

.landing-plan-badge .mud-icon-root {
    font-size: 0.95rem !important;
}

.landing-plan-head {
    margin-bottom: 0.9rem;
}

.landing-plan-name {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 0.3rem;
}

.landing-plan-claim {
    margin: 0;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.45;
    min-height: 2.5rem;
}

.landing-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0.2rem;
}

.landing-plan-amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #0f172a;
    line-height: 1;
}

.landing-plan-period {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
}

.landing-plan-annual-note {
    margin: 0 0 1.1rem;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

.landing-plan-cta.mud-button-root {
    font-weight: 700 !important;
    margin-bottom: 1.1rem;
}

.landing-plan-incluye {
    margin: 0 0 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #a6662d;
}

.landing-plan-features {
    margin-top: 0.1rem;
}

.landing-plan-features li {
    font-size: 0.86rem;
}

.landing-pricing-foot {
    max-width: 52rem;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
}

.landing-nav-link--active {
    color: #a6662d;
    background: rgba(198, 127, 64, 0.1);
}

@media (max-width: 900px) {
    .landing-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 30rem;
        margin: 0 auto;
    }
}

/* ===== Página de alta / autoregistro ===== */
.landing-band--alta {
    padding: 2.75rem 1.25rem 3.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 60vh;
}

.landing-alta-inner {
    max-width: 760px;
    margin: 0 auto;
}

.landing-alta-head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.landing-alta-head .landing-intro {
    margin-left: auto;
    margin-right: auto;
}

.landing-alta-card {
    padding: 2rem 1.75rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
}

.landing-alta-nota {
    margin: 0.75rem 0 0;
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
}

.landing-alta-ok {
    text-align: center;
    max-width: 32rem;
    margin: 1.5rem auto;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
}

.landing-alta-ok-icon.mud-icon-root {
    font-size: 3.25rem !important;
    color: #3f6a4d;
    margin-bottom: 0.5rem;
}

.landing-alta-ok .landing-hero-cta {
    justify-content: center;
    margin-top: 1.5rem;
}

.gap-2 {
    gap: 0.5rem;
}
