/* ============================================
   VARIABLES
   ============================================ */
:root {
    --bg: #0a0b0d;
    --bg-el: #111318;
    --card: #181b22;
    --card-h: #1f232c;
    --border: #272c38;
    --fg: #f4f0e8;
    --fg-m: #706e80;
    --accent: #e85d3a;
    --accent-l: #ff8462;
    --accent-glow: rgba(232, 93, 58, .18);
    --green: #3dd68c;
    --green-bg: rgba(61, 214, 140, .1);
    --gold: #f0b429;
    --gold-bg: rgba(240, 180, 41, .1);
    --red: #f06060;
    --red-bg: rgba(240, 96, 96, .1);
    --blue: #5dadec;
    --blue-bg: rgba(93, 173, 236, .1);
}

/* ============================================
   RESET Y BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--fg);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }
a { color: inherit; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================
   UTILIDADES
   ============================================ */
.text-muted { color: var(--fg-m); }
.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-center { text-align: center; }
.mb-xl { margin-bottom: 52px; }
.mb-lg { margin-bottom: 44px; }

/* ============================================
   ATMÓSFERA Y FONDO
   ============================================ */
.atm { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.atm::before {
    content: '';
    position: absolute;
    width: 650px; height: 650px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    top: -250px; right: -150px;
    animation: dr 11s ease-in-out infinite;
}
.atm::after {
    content: '';
    position: absolute;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(240, 180, 41, .06) 0%, transparent 60%);
    bottom: -180px; left: -100px;
    animation: dr 14s ease-in-out infinite reverse;
}
@keyframes dr {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(35px, -25px) scale(1.06); }
}

.dot {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}
.dot-fade { opacity: .3; }
.dot-fade-light { opacity: .2; }
.dot-fade-lighter { opacity: .15; }

/* ============================================
   ANIMACIONES
   ============================================ */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.rv.v { opacity: 1; transform: translateY(0); }
.rv1 { transition-delay: .1s; }
.rv2 { transition-delay: .18s; }
.rv3 { transition-delay: .24s; }

@keyframes waIn {
    from { opacity: 0; transform: translateY(8px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeR {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
    0% { opacity: 0; transform: scale(.9); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes pp {
    0%, 100% { transform: scale(1); opacity: .35; }
    50% { transform: scale(2); opacity: 0; }
}
@keyframes fu {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    15% { opacity: .3; }
    85% { opacity: .2; }
    100% { transform: translateY(-100vh) scale(.4); opacity: 0; }
}

/* ============================================
   BOTONES
   ============================================ */
.ba {
    background: linear-gradient(135deg, var(--accent), #c94425);
    color: #fff;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}
.ba::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .5s;
}
.ba:hover::after { transform: translateX(100%); }
.ba:hover {
    box-shadow: 0 0 40px var(--accent-glow), 0 8px 28px rgba(0,0,0,.3);
    transform: translateY(-2px);
}
.ba-sm { padding: 9px 20px; font-size: .86rem; }
.ba-full { width: 100%; justify-content: center; }
.ba-xl { padding: 17px 48px; font-size: 1.02rem; }

.bg {
    background: transparent;
    color: var(--fg);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 500;
    font-size: .95rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}
.bg:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.bg-full { width: 100%; justify-content: center; }

/* ============================================
   FORMULARIOS
   ============================================ */
.fi {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 15px;
    color: var(--fg);
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    outline: none;
    transition: border-color .3s;
}
.fi:focus { border-color: var(--accent); }
.fi::placeholder { color: var(--fg-m); }
select.fi { appearance: none; cursor: pointer; }
label {
    font-size: .76rem;
    color: var(--fg-m);
    display: block;
    margin-bottom: 5px;
}
.form-error {
    color: var(--red);
    font-size: .78rem;
    margin-top: 8px;
}

/* ============================================
   NAV
   ============================================ */
.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 11, 13, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 13px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
}
.logo-icon {
    width: 34px; height: 34px;
    background: var(--accent);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
}
.logo-icon i { color: #fff; font-size: 13px; }
.logo-icon-sm { width: 26px; height: 26px; border-radius: 7px; }
.logo-icon-sm i { font-size: 10px; }
.nav-logo span {
    font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.2rem;
}
.nav-links {
    display: flex; align-items: center; gap: 26px;
}
.nav-links a {
    color: var(--fg-m); text-decoration: none; font-size: .86rem;
    transition: color .3s;
}
.nav-links a:hover { color: var(--fg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 110px 24px 80px;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-inner {
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 1; width: 100%;
}
.hg {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px; align-items: center;
}
.hero-text { min-width: 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 40px; padding: 5px 15px 5px 8px;
    margin-bottom: 22px;
}
.hero-badge span { font-size: .76rem; color: var(--fg-m); }
.pd {
    width: 8px; height: 8px;
    background: var(--green); border-radius: 50%; position: relative;
}
.pd::before {
    content: ''; position: absolute; inset: -5px;
    background: var(--green); border-radius: 50%;
    opacity: .35; animation: pp 2s ease-in-out infinite;
}
.hh { font-size: 3.3rem; font-weight: 700; line-height: 1.08; margin-bottom: 18px; }
.hero-desc {
    font-size: 1.05rem; color: var(--fg-m);
    line-height: 1.75; margin-bottom: 34px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 26px; margin-top: 36px; flex-wrap: wrap;
}
.hero-stat-val { font-weight: 700; font-size: 1rem; }
.hero-stat-label { font-size: .76rem; color: var(--fg-m); }
.stat-divider { width: 1px; background: var(--border); }

/* ============================================
   WHATSAPP (Hero)
   ============================================ */
.hr { position: relative; }
.wa-phone {
    background: #0b141a; border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.5);
    transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
}
.wa-header {
    background: #1f2c34; padding: 13px 18px;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid #2a3942;
}
.wa-back { color: var(--fg-m); font-size: .82rem; }
.wa-avatar {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--accent), #c94425);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.wa-avatar i { color: #fff; font-size: 12px; }
.wa-header-info div:first-child { font-weight: 600; font-size: .88rem; }
.wa-online { font-size: .7rem; color: var(--green); }
.wa-body {
    padding: 20px; display: flex; flex-direction: column; gap: 14px;
    min-height: 380px;
}
.wa-sent-group {
    align-self: flex-end;
    display: flex; flex-direction: column; gap: 6px;
}
.wa-sent {
    background: #075e54;
    border-radius: 14px 14px 4px 14px;
    padding: 12px 16px; color: #d9fdd3;
    font-size: .88rem; max-width: 300px;
    line-height: 1.5; position: relative;
    animation: waIn .35s ease both;
}
.wa-sent::after {
    content: ''; position: absolute; bottom: 0; right: -7px;
    width: 0; height: 0;
    border-left: 7px solid #075e54; border-bottom: 7px solid transparent;
}
.wa-sent-note {
    background: #064e3b;
    border-radius: 14px 14px 4px 14px;
    font-size: .78rem; padding: 8px 12px;
}
.wa-sent-note::after { border-left-color: #064e3b; }
.wa-sent-dim { color: #8696a0; font-size: .8rem; }
.wa-sent-dim::after { border-left-color: #075e54; }
.wa-link { color: var(--accent); text-decoration: underline; word-break: break-word; }
.wa-recv {
    background: #1f2c34;
    border-radius: 14px 14px 14px 4px;
    padding: 12px 16px; color: #d9fdd3;
    font-size: .88rem; max-width: 280px;
    line-height: 1.5; position: relative;
    animation: waIn .35s ease both;
    align-self: flex-start;
}
.wa-recv::after {
    content: ''; position: absolute; bottom: 0; left: -7px;
    width: 0; height: 0;
    border-right: 7px solid #1f2c34; border-bottom: 7px solid transparent;
}
.wa-recv-dim { color: #8696a0; font-style: italic; }
.wa-recv-good { color: var(--green); }
.wa-recv-good::after { border-right-color: #1f2c34; }
.wa-footer {
    background: #1f2c34; padding: 10px 16px;
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid #2a3942;
}
.wa-input {
    flex: 1; background: #2a3942;
    border-radius: 20px; padding: 10px 16px;
    font-size: .84rem; color: var(--fg-m);
}
.wa-send-icon { color: var(--accent); font-size: 1.2rem; }
.wa-pdf-card {
    background: #1a2730; border-radius: 10px;
    padding: 10px 14px; display: flex; align-items: center; gap: 10px;
    margin-top: 8px; border: 1px solid #2a3942;
    align-self: flex-end;
}
.wa-pdf-card i { color: var(--red); font-size: 1.3rem; }
.wa-pdf-card div div:first-child { color: #d9fdd3; font-size: .82rem; font-weight: 600; }
.wa-pdf-card div div:last-child { color: #8696a0; font-size: .7rem; }
.wa-glow {
    position: absolute; inset: -25%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 55%);
    z-index: -1; filter: blur(40px);
}

/* ============================================
   SECCIONES
   ============================================ */
.section { padding: 100px 24px; position: relative; }
.section-alt { background: var(--bg-el); }
.section-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.section-narrow { max-width: 1060px; margin: 0 auto; position: relative; z-index: 1; }
.section-narrow-pricing { max-width: 840px; margin: 0 auto; position: relative; z-index: 1; }
.section-narrow-faq { max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }
.section-narrow-cta { max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }
.section-tag {
    color: var(--accent); font-weight: 600;
    font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
}
.section-tag + h2 { font-size: 2.6rem; font-weight: 700; margin-top: 10px; line-height: 1.15; }
.section-sub { color: var(--fg-m); margin-top: 8px; font-size: .95rem; }

/* ============================================
   CARDS (Feed de dolor)
   ============================================ */
.fb {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 14px; padding: 20px 22px;
    transition: all .3s;
}
.fb:hover {
    border-color: rgba(232, 93, 58, .15);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.fb-header { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; }
.fb-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.fb-avatar i { color: #fff; font-size: 12px; }
.fb-avatar-1 { background: linear-gradient(135deg, #e85d3a, #c94425); }
.fb-avatar-2 { background: linear-gradient(135deg, #f0b429, #d4940a); }
.fb-avatar-3 { background: linear-gradient(135deg, #3dd68c, #0fa36e); }
.fb-avatar-4 { background: linear-gradient(135deg, #5dadec, #2b7fc4); }
.fb-name { font-weight: 600; font-size: .86rem; }
.fb-role { font-size: .7rem; color: var(--fg-m); }
.fb-text { color: var(--fg-m); font-size: .86rem; line-height: 1.65; }
.fb-meta {
    display: flex; gap: 16px; margin-top: 10px;
    font-size: .76rem; color: var(--fg-m);
}
.fb-meta i { margin-right: 3px; }

/* ============================================
   STATS
   ============================================ */
.sv {
    font-family: 'Space Grotesk'; font-weight: 700; font-size: 2.6rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-l));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1.1;
}
.sv-label { color: var(--fg-m); font-size: .82rem; margin-top: 6px; }

/* ============================================
   GRIDS
   ============================================ */
.sg { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 920px; margin: 0 auto; }
.pg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 68px; }
.fg { display: grid; gap: 22px; }
.fg-3 { grid-template-columns: repeat(3, 1fr); }
.fg-2 { grid-template-columns: 1fr 1fr; }

/* ============================================
   FEATURE CARDS
   ============================================ */
.gc {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px;
    transition: all .4s; position: relative; overflow: hidden;
}
.gc::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0; transition: opacity .4s;
}
.gc:hover {
    border-color: rgba(232, 93, 58, .2); background: var(--card-h);
    transform: translateY(-3px); box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.gc:hover::before { opacity: 1; }
.gc-row { display: flex; gap: 16px; align-items: flex-start; }
.gc-icon {
    width: 50px; height: 50px; min-width: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.gc-row .gc-icon { margin-bottom: 0; width: 42px; height: 42px; min-width: 42px; border-radius: 12px; }
.gc-icon-accent { background: var(--accent-glow); }
.gc-icon-accent i { color: var(--accent); font-size: 1.1rem; }
.gc-row .gc-icon-accent i { font-size: .95rem; }
.gc-icon-green { background: var(--green-bg); }
.gc-icon-green i { color: var(--green); }
.gc-icon-gold { background: var(--gold-bg); }
.gc-icon-gold i { color: var(--gold); }
.gc-icon-red { background: var(--red-bg); }
.gc-icon-red i { color: var(--red); }
.gc-icon-blue { background: var(--blue-bg); }
.gc-icon-blue i { color: var(--blue); }
.gc-step { font-size: .72rem; font-weight: 700; margin-bottom: 6px; }
.gc-step-accent { color: var(--accent); }
.gc-step-green { color: var(--green); }
.gc-step-gold { color: var(--gold); }
.gc h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.gc h4 { font-weight: 700; margin-bottom: 5px; }
.gc p { color: var(--fg-m); line-height: 1.7; font-size: .9rem; }
.gc-row p { font-size: .86rem; line-height: 1.6; }

/* ============================================
   DEMO: Carta del restaurante
   ============================================ */
.demo-container {
    background: var(--bg-el); border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden; max-width: 960px; margin: 0 auto;
}
.demo-cover {
    position: relative; height: 180px; overflow: hidden;
}
.demo-cover img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); }
.demo-cover-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg-el) 0%, transparent 60%);
}
.demo-cover-info {
    position: absolute; bottom: 20px; left: 24px; right: 24px;
    display: flex; align-items: center; gap: 14px;
}
.demo-cover-logo {
    width: 52px; height: 52px; background: var(--accent);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid var(--bg-el);
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.demo-cover-logo i { color: #fff; font-size: 18px; }
.demo-cover-info h3 { font-weight: 700; font-size: 1.3rem; }
.demo-cover-info p { font-size: .82rem; color: rgba(255,255,255,.7); }
.demo-body { padding: 24px; }
.demo-meta { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.demo-meta-item {
    display: flex; align-items: center; gap: 6px;
    font-size: .82rem; color: var(--fg-m);
}
.demo-meta-item i { color: var(--accent); font-size: .75rem; }
.demo-search-wrap { position: relative; margin-bottom: 18px; }
.demo-search-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: var(--fg-m); font-size: .85rem;
}
.demo-search-wrap .fi { padding-left: 38px; }
.demo-cats { display: flex; gap: 8px; margin-bottom: 20px; overflow-x: auto; padding-bottom: 4px; }
.demo-empty {
    display: none; text-align: center; padding: 50px 20px;
}
.demo-empty i { font-size: 2.5rem; color: var(--fg-m); opacity: .15; }
.demo-empty p { color: var(--fg-m); margin-top: 12px; font-size: .88rem; }
.demo-add-wrap { margin-top: 20px; text-align: center; }
.demo-add-btn {
    background: var(--card); border: 1px dashed var(--border);
    color: var(--fg-m); padding: 14px 28px;
    border-radius: 12px; font-weight: 600; font-size: .9rem;
    cursor: pointer; transition: all .25s;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'DM Sans', sans-serif;
}
.demo-add-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================
   CATEGORÍAS (Demo)
   ============================================ */
.cat-btn {
    padding: 8px 18px; border-radius: 20px;
    font-size: .82rem; font-weight: 600;
    border: 1px solid var(--border);
    background: transparent; color: var(--fg-m);
    cursor: pointer; transition: all .25s;
    white-space: nowrap; font-family: 'DM Sans', sans-serif;
}
.cat-btn:hover { border-color: var(--accent); color: var(--accent); }
.cat-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============================================
   TARJETAS DE MENÚ (Demo)
   ============================================ */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.menu-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden;
    transition: all .3s; cursor: default;
}
.menu-card:hover {
    border-color: rgba(232, 93, 58, .2);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,.2);
}
.menu-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.menu-card-body { padding: 14px 16px; }
.menu-tag {
    display: inline-block; padding: 3px 9px;
    border-radius: 6px; font-size: .68rem;
    font-weight: 700; letter-spacing: .3px;
}
.tag-new { background: var(--green-bg); color: var(--green); }
.tag-pop { background: var(--gold-bg); color: var(--gold); }
.tag-spic { background: var(--red-bg); color: var(--red); }

/* ============================================
   FORMULARIO AGREGAR PLATO
   ============================================ */
.dish-form {
    max-width: 600px; margin: 20px auto 0;
    background: var(--card); border: 1px solid var(--accent);
    border-radius: 16px; padding: 24px;
    animation: popIn .3s ease;
}
.dish-form-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
}
.dish-form-header h4 { font-weight: 700; font-size: 1.05rem; }
.dish-form-close {
    background: none; border: none; color: var(--fg-m);
    cursor: pointer; font-size: 1rem;
}
.dish-form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.dish-form-full { grid-column: 1 / -1; }

/* ============================================
   WHATSAPP COMPARATIVA
   ============================================ */
.wa-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.wa-compare-card {
    background: #0b141a; border: 1px solid #2a3942;
    border-radius: 18px; overflow: hidden;
}
.wa-compare-header {
    background: #1f2c34; padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid #2a3942;
}
.wa-compare-header span { font-size: .82rem; font-weight: 600; color: #d9fdd3; }
.wa-compare-badge {
    font-size: .68rem; background: var(--green); color: var(--bg);
    padding: 2px 8px; border-radius: 10px;
    font-weight: 700; margin-left: auto;
}
.wa-compare-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.wa-compare-result {
    border-radius: 10px; padding: 12px 14px;
}
.wa-compare-result div { font-size: .78rem; font-weight: 600; }
.wa-compare-result ul {
    font-size: .76rem; color: var(--fg-m);
    margin-top: 6px; padding-left: 16px; line-height: 1.7;
}
.wa-compare-bad {
    background: rgba(240, 96, 96, .1); border: 1px solid rgba(240, 96, 96, .2);
}
.wa-compare-bad div { color: var(--red); }
.wa-compare-good {
    background: rgba(61, 214, 140, .08); border: 1px solid rgba(61, 214, 140, .18);
}
.wa-compare-good div { color: var(--green); }

/* ============================================
   PRICING
   ============================================ */
.prg { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pc {
    background: var(--card); border: 2px solid var(--border);
    border-radius: 18px; padding: 36px;
    transition: all .4s; position: relative;
}
.pc.pop {
    border-color: var(--accent);
    box-shadow: 0 0 65px var(--accent-glow);
}
.pc.pop::before {
    content: 'RECOMENDADO';
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    padding: 4px 16px; border-radius: 20px;
    font-size: .62rem; font-weight: 800; letter-spacing: 1.5px;
}
.pc-tier { font-size: .8rem; color: var(--fg-m); font-weight: 600; margin-bottom: 6px; }
.pc-tier-accent { color: var(--accent); }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pc-price span:first-child {
    font-family: 'Space Grotesk'; font-weight: 700; font-size: 2.6rem;
}
.pc-price-period { color: var(--fg-m); }
.pc-desc { color: var(--fg-m); font-size: .86rem; margin-bottom: 22px; }
.pc-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 28px;
}
.pc-list li {
    display: flex; align-items: center; gap: 9px; font-size: .9rem;
}
.pc-list li i.fa-check { color: var(--green); font-size: .72rem; }
.pc-list-off { color: var(--fg-m); }
.pc-list-off i { font-size: .72rem; }
.pc-note {
    text-align: center; color: var(--fg-m);
    font-size: .8rem; margin-top: 18px;
}
.pc-note i { margin-right: 4px; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.fq {
    border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; transition: border-color .3s;
}
.fq:hover { border-color: rgba(232, 93, 58, .22); }
.fq-q {
    padding: 18px 22px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; transition: background .3s; user-select: none;
}
.fq-q:hover { background: var(--card); }
.fq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    padding: 0 22px; color: var(--fg-m); line-height: 1.7;
}
.fq.open .fq-a { max-height: 260px; padding: 0 22px 18px; }
.fq.open .fq-c { transform: rotate(180deg); }
.fq-c { transition: transform .3s; color: var(--accent); }

/* ============================================
   CTA FINAL
   ============================================ */
.section-cta { overflow: hidden; }
.cta-title { font-size: 2.7rem; font-weight: 700; line-height: 1.12; margin-bottom: 18px; }
.cta-desc {
    color: var(--fg-m); font-size: 1.02rem;
    line-height: 1.7; margin-bottom: 34px;
}
.cta-note {
    color: var(--fg-m); font-size: .76rem; margin-top: 14px;
}
.cta-note i { margin-right: 4px; }

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    padding: 34px 24px; border-top: 1px solid var(--border);
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-logo {
    display: flex; align-items: center; gap: 9px;
    font-family: 'Space Grotesk'; font-weight: 700;
}
.footer-copy { color: var(--fg-m); font-size: .76rem; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
    color: var(--fg-m); transition: color .3s; text-decoration: none;
}
.footer-socials a:hover { color: var(--fg); }

/* ============================================
   MODAL
   ============================================ */
.mo {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mo.open { opacity: 1; pointer-events: all; }
.mo-b {
    background: var(--bg-el); border: 1px solid var(--border);
    border-radius: 20px; padding: 40px;
    max-width: 440px; width: 92%;
    transform: scale(.92);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}
.mo.open .mo-b { transform: scale(1); }
.mo-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 22px;
}
.mo-header h3 { font-weight: 700; font-size: 1.2rem; }
.mo-close {
    background: none; border: none; color: var(--fg-m);
    cursor: pointer; font-size: 1.1rem;
}
.mo-form { display: flex; flex-direction: column; gap: 13px; }
.mo-slug-preview {
    text-align: center; font-size: .76rem; color: var(--fg-m);
}
.mo-slug-preview span { color: var(--accent); }

/* ============================================
   TOAST
   ============================================ */
.ts {
    position: fixed; bottom: 28px; right: 28px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 14px; padding: 15px 22px;
    display: flex; align-items: center; gap: 12px;
    z-index: 1100;
    transform: translateX(140%);
    transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    max-width: 420px;
}
.ts.show { transform: translateX(0); }
#tIcon { color: var(--green); font-size: 1.1rem; }
#tMsg { font-size: .86rem; }

/* ============================================
   PARTÍCULAS
   ============================================ */
.fp {
    position: absolute; border-radius: 50%;
    pointer-events: none;
    animation: fu linear infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
    .hg { grid-template-columns: 1fr !important; }
    .hr { display: none !important; }
    .pg { grid-template-columns: 1fr 1fr !important; }
    .sg { grid-template-columns: 1fr !important; }
    .fg { grid-template-columns: 1fr !important; }
    .prg { grid-template-columns: 1fr !important; max-width: 440px; margin: 0 auto; }
    .nav-links { display: none !important; }
    .dish-form-grid { grid-template-columns: 1fr !important; }
    .wa-compare { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
    .sv { font-size: 2rem; }
    .pg { grid-template-columns: 1fr !important; }
    h2 { font-size: 2rem !important; }
    .hh { font-size: 2.2rem !important; }
    .sg { grid-template-columns: 1fr !important; }
    .menu-grid { grid-template-columns: 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}