:root {
    --dark: #111827;
    --text: #1f2937;
    --muted: #64748b;
    --orange: #f97316;
    --orange-2: #ea580c;
    --gold: #fbbf24;
    --soft: #fff7ed;
    --border: rgba(15, 23, 42, .08);
    --shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(249,115,22,.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(59,130,246,.08), transparent 28%),
        #ffffff;
    padding-top: 98px;
    overflow-x: hidden;
}

.viandas-navbar {
    margin: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(15,23,42,.10);
    border: 1px solid var(--border);
}

.navbar-brand strong {
    display: block;
    font-weight: 950;
    color: var(--dark);
    line-height: 1;
}

.navbar-brand small {
    display: block;
    font-size: .75rem;
    color: var(--muted);
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-weight: 950;
}

.nav-link {
    font-weight: 850;
    color: var(--text);
}

.nav-link:hover {
    color: var(--orange-2);
}

.btn-viandas {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #111827;
    border: 0;
    font-weight: 950;
    border-radius: 999px;
    padding: .75rem 1.25rem;
    box-shadow: 0 14px 30px rgba(249,115,22,.20);
}

.btn-viandas:hover {
    color: #111827;
    transform: translateY(-1px);
}

.btn-outline-viandas {
    border: 1px solid rgba(249,115,22,.30);
    color: var(--orange-2);
    background: #fff;
    font-weight: 950;
    border-radius: 999px;
    padding: .75rem 1.25rem;
}

.btn-outline-viandas:hover {
    background: rgba(249,115,22,.08);
    color: var(--orange-2);
}

.hero-viandas {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(249,115,22,.10);
    color: var(--orange-2);
    font-weight: 950;
    font-size: .82rem;
    margin-bottom: 18px;
}

.hero-viandas h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: .96;
    font-weight: 950;
    letter-spacing: -0.06em;
    color: var(--dark);
}

.hero-viandas p {
    max-width: 760px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.16rem;
    font-weight: 650;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-trust div {
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    border: 1px solid var(--border);
    box-shadow: 0 14px 35px rgba(15,23,42,.06);
}

.hero-trust strong {
    display: block;
    color: var(--dark);
    font-weight: 950;
    font-size: 1.1rem;
}

.hero-trust span {
    color: var(--muted);
    font-weight: 700;
    font-size: .9rem;
}

.dashboard-card {
    padding: 30px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(251,191,36,.22), transparent 36%),
        rgba(255,255,255,.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.dashboard-top span {
    color: var(--orange-2);
    font-weight: 950;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.dashboard-top h3 {
    font-weight: 950;
    color: var(--dark);
    margin: 4px 0 0;
}

.status-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34,197,94,.12);
    color: #15803d;
    font-weight: 950;
    font-size: .8rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.dashboard-stats div,
.dashboard-list div {
    background: #fff;
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 18px;
    padding: 16px;
}

.dashboard-stats span {
    color: var(--muted);
    font-weight: 800;
    font-size: .78rem;
}

.dashboard-stats strong {
    display: block;
    margin-top: 4px;
    color: var(--dark);
    font-weight: 950;
    font-size: 1.3rem;
}

.dashboard-list {
    display: grid;
    gap: 12px;
}

.dashboard-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    color: #334155;
}

.dashboard-list i {
    color: #16a34a;
}

.section-viandas {
    padding: 80px 0;
}

.section-soft {
    background: linear-gradient(135deg, rgba(255,247,237,.80), rgba(248,250,252,.90));
}

.section-title {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-title span {
    color: var(--orange-2);
    font-weight: 950;
}

.section-title h2,
.big-title,
.demo-box h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 950;
    letter-spacing: -0.05em;
    color: var(--dark);
}

.feature-card,
.price-card {
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
    transition: all .22s ease;
}

.feature-card:hover,
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 20px;
}

.feature-card h3,
.price-card h3 {
    font-weight: 950;
    color: var(--dark);
}

.feature-card p,
.soft-text,
.price-card p {
    color: var(--muted);
    font-weight: 650;
    line-height: 1.65;
}

.flow-box {
    display: grid;
    gap: 14px;
}

.flow-box div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 14px 35px rgba(15,23,42,.06);
    font-weight: 900;
    color: #334155;
}

.flow-box span {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.price-card.featured {
    border-color: rgba(249,115,22,.32);
    background:
        radial-gradient(circle at top right, rgba(251,191,36,.18), transparent 34%),
        #fff;
}

.price-badge {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(249,115,22,.10);
    color: var(--orange-2);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 18px;
}

.price {
    color: var(--orange-2);
    font-size: 1.28rem;
    font-weight: 950;
    margin-bottom: 14px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 26px;
    display: grid;
    gap: 11px;
}

.price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #334155;
    font-weight: 750;
    line-height: 1.38;
}

.price-card li i {
    color: var(--orange-2);
}

.note-box {
    display: flex;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(249,115,22,.08);
    border: 1px solid rgba(249,115,22,.14);
    color: #7c2d12;
    font-weight: 750;
}

.demo-section {
    padding: 70px 0;
}

.demo-box {
    text-align: center;
    border-radius: 34px;
    padding: 54px 28px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(251,191,36,.35), transparent 28%),
        linear-gradient(135deg, #111827, #1f2937);
    box-shadow: var(--shadow);
}

.demo-box h2 {
    color: #fff;
}

.demo-box p {
    color: rgba(255,255,255,.78);
    font-size: 1.1rem;
}

.footer-viandas {
    padding: 50px 0 30px;
    background: #111827;
    color: #fff;
}

.footer-viandas p {
    color: rgba(255,255,255,.70);
}

.footer-link {
    display: inline-block;
    color: rgba(255,255,255,.78);
    font-weight: 800;
    margin-left: 16px;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-viandas hr {
    border-color: rgba(255,255,255,.12);
}

@media (max-width: 991px) {
    body {
        padding-top: 86px;
    }

    .viandas-navbar {
        margin: 8px;
    }

    .hero-viandas {
        padding: 60px 0 45px;
    }

    .hero-viandas h1 {
        font-size: 2.45rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .section-viandas {
        padding: 56px 0;
    }
}

@media (max-width: 575px) {
    .hero-viandas h1 {
        font-size: 2.1rem;
    }

    .dashboard-card,
    .feature-card,
    .price-card {
        padding: 24px;
        border-radius: 24px;
    }

    .hero-trust,
    .note-box {
        flex-direction: column;
    }

    .footer-link {
        margin-left: 0;
        margin-right: 12px;
    }
}
/* =========================================================
   NUEVAS SECCIONES LANDING VIANDAS
   ========================================================= */

/* APP SECTION */

.app-section {
    position: relative;
    background:
        radial-gradient(circle at 10% 20%, rgba(249, 115, 22, .08), transparent 30%),
        #ffffff;
}

.app-benefits {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.app-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    font-weight: 850;
    color: #334155;
}

.app-benefits i {
    color: #16a34a;
    font-size: 1.1rem;
}

/* PHONE MOCKUP */

.phone-mockup {
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 14px;
    border-radius: 42px;
    background: linear-gradient(135deg, #111827, #1f2937);
    box-shadow: 0 30px 90px rgba(15, 23, 42, .28);
    border: 1px solid rgba(255, 255, 255, .12);
}

.phone-top {
    width: 96px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .25);
    margin: 0 auto 14px;
}

.phone-screen {
    min-height: 560px;
    border-radius: 32px;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, .20), transparent 36%),
        linear-gradient(180deg, #ffffff, #fff7ed);
    overflow: hidden;
}

.phone-chip {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .12);
    color: #15803d;
    font-size: .78rem;
    font-weight: 950;
    margin-bottom: 18px;
}

.phone-screen h3 {
    font-size: 1.55rem;
    font-weight: 950;
    color: var(--dark);
    margin-bottom: 22px;
}

.meal-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .07);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    font-weight: 850;
    color: #334155;
}

.meal-option.active {
    border-color: rgba(249, 115, 22, .28);
    background: rgba(255, 247, 237, .92);
}

.meal-option i {
    color: var(--orange-2);
}

.phone-screen button {
    width: 100%;
    margin-top: 18px;
    border: 0;
    border-radius: 999px;
    padding: 15px 18px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #111827;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(249, 115, 22, .22);
}

/* AI ABASTECIMIENTO */

.ai-section {
    position: relative;
    background:
        radial-gradient(circle at 85% 20%, rgba(249, 115, 22, .10), transparent 28%),
        radial-gradient(circle at 20% 90%, rgba(59, 130, 246, .08), transparent 26%),
        #ffffff;
}

.ai-card {
    height: 100%;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, .22), transparent 36%),
        linear-gradient(135deg, #111827, #1f2937);
    color: #ffffff;
    box-shadow: 0 30px 90px rgba(15, 23, 42, .22);
    border: 1px solid rgba(255, 255, 255, .10);
}

.ai-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 22px;
    box-shadow: 0 18px 38px rgba(249, 115, 22, .26);
}

.ai-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 950;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
}

.ai-card p {
    color: rgba(255, 255, 255, .74);
    font-weight: 650;
    line-height: 1.65;
    margin-bottom: 26px;
}

.ai-grid {
    display: grid;
    gap: 14px;
}

.ai-grid div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
}

.ai-grid strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 950;
    color: #ffffff;
}

.ai-grid span {
    display: block;
    color: rgba(255, 255, 255, .66);
    font-weight: 700;
    font-size: .9rem;
    margin-top: 4px;
}

/* MINI FEATURES */

.mini-feature {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
    transition: all .2s ease;
}

.mini-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.mini-feature i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 16px;
    background: rgba(249, 115, 22, .10);
    color: var(--orange-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mini-feature span {
    font-weight: 900;
    color: #334155;
    line-height: 1.25;
}

/* PROCESS */

.process-card {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
    transition: all .22s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.process-card div {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    margin-bottom: 20px;
}

.process-card h3 {
    font-weight: 950;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-card p {
    color: var(--muted);
    font-weight: 650;
    line-height: 1.6;
    margin: 0;
}

/* MEJORAS RESPONSIVE */

@media (max-width: 991px) {
    .phone-mockup {
        margin-top: 20px;
    }

    .phone-screen {
        min-height: auto;
    }

    .ai-card {
        padding: 28px;
        border-radius: 28px;
    }
}

@media (max-width: 575px) {
    .phone-mockup {
        width: 100%;
        border-radius: 32px;
        padding: 10px;
    }

    .phone-screen {
        border-radius: 26px;
        padding: 20px;
    }

    .phone-screen h3 {
        font-size: 1.35rem;
    }

    .meal-option {
        padding: 14px;
        font-size: .94rem;
    }

    .ai-card,
    .process-card,
    .mini-feature {
        border-radius: 24px;
    }

    .ai-card {
        padding: 24px;
    }

    .mini-feature {
        align-items: flex-start;
    }
}
/* =========================================================
   CAPTURAS INTEGRADAS POR SECCIÓN
   ========================================================= */

.screen-showcase {
    position: relative;
    width: 100%;
    padding: 14px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, .20), transparent 34%),
        rgba(255, 255, 255, .96);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
    overflow: hidden;
}

.screen-showcase--hero {
    transform: rotate(.5deg);
}

.screen-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,.22), transparent 42%),
        radial-gradient(circle at 20% 10%, rgba(249,115,22,.08), transparent 34%);
    pointer-events: none;
    z-index: 1;
}

.screen-showcase img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    max-height: 430px;
    object-fit: contain;
    object-position: top center;
    display: block;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .06);
}

.screen-label {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(249, 115, 22, .10);
    color: var(--orange-2);
    font-size: .82rem;
    font-weight: 950;
}

.screen-label i {
    font-size: 1rem;
}

.screen-caption {
    position: relative;
    z-index: 3;
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(15,23,42,.06);
}

.screen-caption strong {
    display: block;
    color: var(--dark);
    font-weight: 950;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.screen-caption span {
    display: block;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.45;
    font-size: .94rem;
}

/* Variante para secciones con fondo suave */
.section-soft .screen-showcase {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, .13), transparent 34%),
        rgba(255,255,255,.98);
}

/* Ajuste para que las secciones respiren mejor */
.section-viandas .row.align-items-center {
    row-gap: 42px;
}

.section-viandas .big-title {
    max-width: 720px;
}

/* Efecto suave */
.screen-showcase {
    transition: transform .22s ease, box-shadow .22s ease;
}

.screen-showcase:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 85px rgba(15, 23, 42, .16);
}

.screen-showcase--hero:hover {
    transform: rotate(.5deg) translateY(-4px);
}

/* =========================================================
   RESPONSIVE CAPTURAS
   ========================================================= */

@media (max-width: 1199px) {
    .screen-showcase img {
        max-height: 380px;
    }
}

@media (max-width: 991px) {
    .screen-showcase,
    .screen-showcase--hero {
        transform: none;
        border-radius: 28px;
    }

    .screen-showcase:hover,
    .screen-showcase--hero:hover {
        transform: translateY(-3px);
    }

    .screen-showcase img {
        max-height: none;
        border-radius: 20px;
    }

    .screen-caption {
        border-radius: 18px;
    }
}

@media (max-width: 575px) {
    .screen-showcase {
        padding: 10px;
        border-radius: 24px;
    }

    .screen-label {
        font-size: .76rem;
        padding: 8px 11px;
    }

    .screen-showcase img {
        border-radius: 18px;
    }

    .screen-caption {
        padding: 14px;
        margin-top: 10px;
    }

    .screen-caption strong {
        font-size: .98rem;
    }

    .screen-caption span {
        font-size: .88rem;
    }
}