﻿/* ============================================================
   AgendaZ — CSS compartido landings Profesional y Colaborador
   Archivo: wwwroot/css/agendaz-landings-shared.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;1,300&display=swap');

/* ===== VARIABLES ===== */
:root {
    --blue: #1a56db;
    --blue-dark: #1340b0;
    --blue-light: #e8f0fd;
    --teal: #00b8c8;
    --teal-light: #e0f7fa;
    --purple: #7B3FE4;
    --purple-light: #f0e8ff;
    --orange: #f97316;
    --orange-light: #fff3e8;
    --grad: linear-gradient(135deg,#7B3FE4 0%,#1a56db 45%,#00b8c8 100%);
    --grad-soft: linear-gradient(135deg,#f0e8ff 0%,#e8f0fd 50%,#e0f7fa 100%);
    --white: #fff;
    --off: #f4f7fe;
    --text-main: #111827;
    --text-mid: #374151;
    --text-soft: #6b7280;
    --border: #e5e7eb;
}

/* ===== ANIMATIONS ===== */
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatR   { 0%,100%{transform:translateY(0) rotate(3deg)} 50%{transform:translateY(-10px) rotate(3deg)} }
@keyframes blob     { 0%,100%{border-radius:60% 40% 30% 70%/60% 30% 70% 40%} 50%{border-radius:30% 60% 70% 40%/50% 60% 30% 60%} }
@keyframes ticker   { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes pulse-ring { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.6);opacity:0} }
@keyframes slide-up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes shimmer  { 0%{background-position:-200% 0} 100%{background-position:200% 0} }

.anim-up  { animation: slide-up .7s ease both; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; }
.d4 { animation-delay: .4s; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1170px; margin: 0 auto; padding: 0 24px; }

.nav-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--purple);
    background: var(--purple-light);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .05em;
}

/* ===== SECTION BASE ===== */
.sec { padding: 90px 0; }
.sec-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--blue); margin-bottom: 12px; }
.sec-h { font-family: 'Nunito',sans-serif; font-size: clamp(26px,3.5vw,40px); font-weight: 900; letter-spacing: -.8px; margin-bottom: 16px; line-height: 1.15; color: #111827; }
.sec-p { font-size: 16px; color: #6b7280; line-height: 1.7; font-weight: 300; max-width: 520px; }
.center { text-align: center; }
.center .sec-p { margin: 0 auto; }

/* ===== TICKER ===== */
.ticker { overflow: hidden; background: #f4f7fe; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 22s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 10px; padding: 0 32px; font-size: 13px; font-weight: 700; color: #6b7280; white-space: nowrap; }
.ticker-item .ti-dot { color: var(--teal); }

/* ===== HERO COMPARTIDO ===== */
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 30px; padding: 7px 16px; margin-bottom: 22px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); position: relative; }
.badge-dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: var(--teal); animation: pulse-ring 1.5s ease-out infinite; }
.badge-txt { font-size: 12px; font-weight: 700; color: #374151; letter-spacing: .06em; text-transform: uppercase; }

.hero-h { font-family: 'Nunito',sans-serif; font-size: clamp(34px,4.5vw,54px); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px; color: #111827; }
.grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 17px; color: #6b7280; line-height: 1.7; margin-bottom: 32px; font-weight: 400; max-width: 460px; }
.hero-sub strong { color: #111827; font-weight: 700; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary {
    background: var(--grad); color: #fff; border: none; padding: 14px 32px; border-radius: 8px;
    font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 800; cursor: pointer; transition: .3s;
    box-shadow: 0 4px 16px rgba(123,63,228,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,63,228,0.45); }
.btn-secondary {
    background: #fff; color: var(--purple); border: 1.5px solid var(--purple);
    padding: 14px 28px; border-radius: 8px;
    font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; transition: .2s;
}
.btn-secondary:hover { background: var(--purple-light); }

.trust-row { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #6b7280; font-weight: 600; }
.trust-check { color: var(--teal); font-size: 14px; }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; padding: 80px 0; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(123,63,228,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(123,63,228,.04) 1px,transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black,transparent); }

/* Floating badges */
.fl-badge { position: absolute; background: rgba(255,255,255,0.95); border-radius: 14px; padding: 10px 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 8px; z-index: 3; }
.fl-1 { top: 10px; right: -40px; animation: floatR 4s ease-in-out infinite; }
.fl-2 { bottom: 60px; left: -45px; animation: floatR 5s 1s ease-in-out infinite; }
.fl-icon { font-size: 18px; }
.fl-text { font-size: 11px; font-weight: 700; color: #111827; line-height: 1.3; }
.fl-text span { display: block; font-weight: 400; color: #666; font-size: 10px; }

/* ===== HERO PROFESIONAL ===== */
.hero-pro {
    min-height: 80vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 0px;
    background: linear-gradient(135deg,#f0e8ff 0%,#e8f0fd 40%,#e0f7fa 100%);
}
.hero-blob1,.hero-blob2,.hero-blob3 { position: absolute; border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; animation: blob 9s ease-in-out infinite; pointer-events: none; }
.hero-blob1 { width: 520px; height: 520px; top: -120px; right: -100px; background: linear-gradient(135deg,rgba(123,63,228,.14),rgba(0,184,200,.08)); }
.hero-blob2 { width: 360px; height: 360px; bottom: -80px; left: -80px; background: linear-gradient(135deg,rgba(26,86,219,.1),rgba(123,63,228,.1)); animation-delay: -4s; }
.hero-blob3 { width: 220px; height: 220px; top: 35%; right: 18%; background: rgba(0,184,200,.07); animation-delay: -7s; }

/* Profile mockup */
.hero-right { display: flex; justify-content: center; position: relative; margin-top: -100px;}
.pm-glow,.dm-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 340px; height: 340px; background: radial-gradient(circle,rgba(123,63,228,0.12) 0%,transparent 70%); pointer-events: none; }

.profile-mockup {
    width: 280px; background: #fff; border: 1px solid var(--border);
    border-radius: 20px; padding: 24px 20px;
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.pm-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.pm-avatar { font-size: 32px; }
.pm-name { font-family: 'Nunito',sans-serif; font-size: 14px; font-weight: 800; color: #111827; }
.pm-role { font-size: 12px; color: #6b7280; margin-top: 2px; }
.pm-verified { font-size: 11px; color: var(--purple); font-weight: 700; margin-top: 3px; }
.pm-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.pm-stat { background: #f4f7fe; border-radius: 10px; padding: 10px 8px; text-align: center; }
.ps-n { font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 900; color: var(--purple); }
.ps-l { font-size: 10px; color: #9ca3af; margin-top: 2px; }
.pm-next { background: #f4f7fe; border-radius: 12px; padding: 12px; margin-bottom: 14px; }
.pn-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; margin-bottom: 4px; }
.pn-val { font-family: 'Nunito',sans-serif; font-size: 14px; font-weight: 800; color: #111827; }
.pn-loc { font-size: 12px; color: #6b7280; margin-top: 3px; }
.pm-btn { width: 100%; background: var(--grad); border: none; color: #fff; padding: 11px; border-radius: 8px; font-family: 'Nunito',sans-serif; font-size: 13px; font-weight: 800; cursor: pointer; }

/* ===== HERO COLABORADOR ===== */
.hero {
    min-height: 70vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 0px;
    background: linear-gradient(135deg,#e8f0fd 0%,#f0e8ff 40%,#e0f7fa 100%);
}

/* Dashboard mockup */
.dash-mockup {
    width: 300px; background: #fff; border: 1px solid var(--border);
    border-radius: 20px; padding: 22px 20px;
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.dm-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dm-title { font-family: 'Nunito',sans-serif; font-size: 14px; font-weight: 800; color: #111827; }
.dm-live { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #059669; font-weight: 700; }
.dm-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #059669; }
.dm-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.dm-stat { background: #f4f7fe; border-radius: 10px; padding: 12px; }
.ds-n { font-family: 'Nunito',sans-serif; font-size: 22px; font-weight: 900; color: var(--blue); }
.ds-n.green { color: #059669; }
.ds-l { font-size: 10px; color: #9ca3af; margin-top: 2px; }
.dm-rooms { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.dm-room { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: #f9fafb; border-radius: 10px; }
.dr-name { font-family: 'Nunito',sans-serif; font-size: 13px; font-weight: 700; color: #111827; }
.dr-sub { font-size: 10px; color: #9ca3af; margin-top: 1px; }
.dr-badge { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.dr-ok { background: #d1fae5; color: #059669; }
.dr-busy { background: #fee2e2; color: #ef4444; }
.dr-soon { background: #fef3c7; color: #d97706; }
.dm-income { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(135deg,var(--blue),var(--teal)); border-radius: 12px; padding: 14px 16px; }
.di-label { font-size: 10px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.di-val { font-family: 'Nunito',sans-serif; font-size: 22px; font-weight: 900; color: #fff; }
.di-sub { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.di-icon { font-size: 28px; }

/* ===== DOLOR vs SOLUCIÓN ===== */
.pain-sec { background: #fff; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pain-card { border-radius: 20px; padding: 32px 28px; }
.is-pain { background: #fff5f5; border: 1px solid #fecaca; }
.is-sol { background: linear-gradient(135deg,#f0fdf4,#e8f0fd); border: 1px solid #bbf7d0; }
.pc-icon-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pc-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.icon-pain { background: #fee2e2; }
.icon-sol { background: #d1fae5; }
.pc-title { font-family: 'Nunito',sans-serif; font-size: 20px; font-weight: 900; color: #111827; }
.pc-body { font-size: 14px; color: #6b7280; line-height: 1.7; }

/* ===== BENEFICIOS ===== */
.benefits-sec { background: linear-gradient(180deg,#ffffff,#f4f7fe); }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; }
.benefit-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px 24px; transition: .3s; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.07); }
.bc-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.ic-purple { background: var(--purple-light); }
.ic-blue { background: var(--blue-light); }
.ic-teal { background: var(--teal-light); }
.ic-orange { background: var(--orange-light); }
.ic-green { background: #dcfce7; }
.ic-cyan { background: #e0f7fa; }
.bc-h { font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 8px; color: #111827; }
.bc-p { font-size: 13.5px; color: #6b7280; line-height: 1.6; }

/* ===== CÓMO FUNCIONA ===== */
.how-sec { background: #f4f7fe; }
.how-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 50px; position: relative; }
.how-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,var(--purple),var(--blue),var(--teal)); opacity: .3; }
.how-step { text-align: center; position: relative; }
.hs-num { width: 56px; height: 56px; border-radius: 50%; background: var(--grad); color: #fff; font-family: 'Nunito',sans-serif; font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.hs-h { font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 8px; color: #111827; }
.hs-p { font-size: 13px; color: #6b7280; line-height: 1.6; }

/* ===== SOFTWARE + MARKETPLACE ===== */
.dual-sec { background: #fff; }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.dual-card { border-radius: 24px; padding: 36px 32px; position: relative; overflow: hidden; }
.dual-software { background: linear-gradient(160deg,#7B3FE4,#1a56db); }
.dual-market { background: linear-gradient(160deg,#1a56db,#00b8c8); }
.dual-badge { display: inline-block; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); border-radius: 20px; padding: 5px 16px; font-size: 11px; font-weight: 800; letter-spacing: .12em; color: #fff; text-transform: uppercase; margin-bottom: 18px; }
.dual-h { font-family: 'Nunito',sans-serif; font-size: clamp(18px,2vw,22px); font-weight: 900; color: #fff; line-height: 1.3; margin-bottom: 12px; }
.dual-p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 24px; }
.dual-list { display: flex; flex-direction: column; gap: 10px; }
.dl-item { display: flex; align-items: flex-start; gap: 10px; }
.dl-check { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.dl-check svg { width: 11px; height: 9px; }
.dl-text { font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.5; }
.dual-figure { position: absolute; bottom: 20px; right: 24px; font-family: 'Nunito',sans-serif; font-size: 48px; font-weight: 900; color: rgba(255,255,255,0.08); }

/* ===== INGRESO PASIVO (colaborador) ===== */
.ingreso-sec { background: linear-gradient(135deg,#1340b0,#1a56db,#0e7ab0); padding: 90px 0; position: relative; overflow: hidden; }
.ingreso-blob { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle,rgba(123,63,228,0.25),transparent); top: -150px; right: -100px; pointer-events: none; }
.ingreso-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.ig-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.ig-h { font-family: 'Nunito',sans-serif; font-size: clamp(26px,3vw,38px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.ig-h em { font-style: normal; color: #7ee8f5; }
.ig-p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; }
.ig-items { display: flex; flex-direction: column; gap: 14px; }
.ig-item { display: flex; align-items: flex-start; gap: 12px; }
.ig-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ig-item-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.ig-item-text strong { color: #fff; }

/* Revenue widget */
.revenue-widget { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 28px 24px; }
.rw-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.rw-big { font-family: 'Nunito',sans-serif; font-size: 48px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.rw-sub { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.rw-bars { display: flex; gap: 6px; align-items: flex-end; height: 70px; margin-bottom: 8px; }
.rw-bar { flex: 1; background: rgba(255,255,255,0.2); border-radius: 4px; transition: .3s; }
.rw-bar.active { background: rgba(255,255,255,0.9); }
.rw-labels { display: flex; gap: 6px; }
.rw-label { flex: 1; text-align: center; font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 600; }
.rw-divider { border: none; border-top: 1px solid rgba(255,255,255,.15); margin: 16px 0; }
.rw-row { display: flex; justify-content: space-between; align-items: center; }
.rw-row-label { font-size: 12px; color: rgba(255,255,255,.7); }
.rw-row-val { font-family: 'Nunito',sans-serif; font-size: 14px; font-weight: 800; color: #fff; }

/* ===== STATS ===== */
.stats-sec { background: linear-gradient(135deg,#1340b0,#1a56db,#0e7ab0); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 44px; }
.stat-item { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 28px 20px; text-align: center; transition: .2s; }
.stat-item:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.si-n { font-family: 'Nunito',sans-serif; font-size: 38px; font-weight: 900; margin-bottom: 6px; background: linear-gradient(135deg,#fff,#7ee8ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.si-l { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.si-sub { font-size: 12px; color: rgba(255,255,255,0.5); }
.stats-sec .sec-h { color: #fff; }

/* ===== TESTIMONIOS ===== */
.test-sec { background: #f4f7fe; padding: 90px 0; }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.test-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; transition: .3s; }
.test-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.07); transform: translateY(-2px); }
.tc-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.tc-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 10px; }
.tc-avatar { width: 40px; height: 40px; border-radius: 12px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.tc-name { font-family: 'Nunito',sans-serif; font-size: 14px; font-weight: 800; color: var(--text-main); }
.tc-role { font-size: 12px; color: var(--text-soft); }

/* ===== CTA FINAL ===== */
.cta-sec { background: var(--grad); padding: 60px 0; position: relative; overflow: hidden; }
.cta-blobs { position: absolute; inset: 0; pointer-events: none; }
.cb1 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.1),transparent); top: -120px; left: -100px; }
.cb2 { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.08),transparent); bottom: -80px; right: -80px; }
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-pill { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 24px; padding: 8px 22px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 28px; }
.cta-h { font-family: 'Nunito',sans-serif; font-size: clamp(28px,4vw,48px); font-weight: 900; letter-spacing: -.8px; margin-bottom: 16px; line-height: 1.1; color: #fff; }
.cta-h em { font-style: normal; color: #a5f3ff; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.8); max-width: 480px; margin: 0 auto 36px; line-height: 1.65; }
.cta-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-input { background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3); border-radius: 8px; padding: 15px 22px; font-size: 15px; color: #fff; font-family: 'Nunito Sans',sans-serif; width: 300px; outline: none; transition: .2s; }
.cta-input::placeholder { color: rgba(255,255,255,.45); }
.cta-input:focus { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.22); }
.cta-btn { background: #fff; color: var(--blue); border: none; padding: 15px 30px; border-radius: 8px; font-family: 'Nunito',sans-serif; font-size: 15px; font-weight: 800; cursor: pointer; transition: .2s; white-space: nowrap; box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.cta-btn:hover { transform: translateY(-2px); background: #f4f7fe; }
.cta-contact { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 6px; }
.cta-contact a { color: rgba(255,255,255,.75); text-decoration: none; font-size: 14px; font-weight: 600; transition: .2s; }
.cta-contact a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav { padding: 8px 0 !important; }
    .nav-inner { display: flex !important; justify-content: space-between !important; align-items: center !important; padding: 0 16px !important; flex-wrap: nowrap !important; }
    .nav-links { display: none !important; }
    .logo { display: flex !important; align-items: center !important; flex-shrink: 0; }
    .logo-img { background: none !important; box-shadow: none !important; width: auto !important; height: auto !important; border-radius: 0 !important; }
    .logo-img img { display: block !important; height: 38px !important; width: auto !important; }
    .menu-m { display: flex !important; align-items: center; justify-content: flex-end; width: auto !important; flex-shrink: 0; }
    .menu-m .dropdown-toggle { background: none !important; border: none !important; box-shadow: none !important; padding: 6px 8px !important; margin-top: 0 !important; font-size: 0 !important; color: transparent !important; }
    .menu-m .dropdown-toggle::before { content: ''; display: block; width: 24px; height: 2px; background: #311B92; box-shadow: 0 7px 0 #311B92, 0 14px 0 #311B92; position: relative; top: -3px; }
    .menu-m .dropdown-toggle::after { display: none !important; }
    .menu-m .dropdown-menu { right: 0 !important; left: auto !important; min-width: 180px !important; transform: none !important; margin-top: 10px !important; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); padding: 6px; }
    .menu-m .nav-a, .menu-m .dropdown-item { display: block !important; padding: 9px 14px !important; font-size: 14px !important; font-weight: 600 !important; color: #311B92 !important; text-decoration: none !important; border-radius: 8px; }

    .hero, .hero-pro { padding-top: 70px !important; min-height: auto !important; }
    .hero-inner { grid-template-columns: 1fr !important; gap: 24px !important; padding: 30px 0 40px !important; }
    .hero-right { display: none !important; }
    .hero-h { font-size: 32px !important; }
    .hero-sub { font-size: 15px !important; }
    .hero-actions { flex-direction: column; gap: 10px !important; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    .fl-1, .fl-2 { display: none; }

    .pain-grid, .dual-grid, .ingreso-inner { grid-template-columns: 1fr !important; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .how-steps { grid-template-columns: 1fr 1fr; }
    .how-steps::before { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .test-grid { grid-template-columns: 1fr; }

    .cta-form { flex-direction: column; align-items: center; }
    .cta-input { width: 100% !important; max-width: 340px; }
    .cta-btn { width: 100%; max-width: 340px; }
    .wrap { padding: 0 16px !important; }
    .sec { padding: 60px 0 !important; }
}

@media (max-width: 480px) {
    .benefits-grid, .how-steps, .stats-grid { grid-template-columns: 1fr !important; }
}

/* ===== NAV MÓVIL COMPARTIDO ===== */
.menu-m {
    display: none;
}

@media (max-width: 768px) {
    nav {
        padding: 8px 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9998 !important;
        background: #fff;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 16px !important;
        flex-wrap: nowrap !important;
    }

    .nav-links {
        display: none !important;
    }

    .logo {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0;
    }

    .logo-img {
        background: none !important;
        box-shadow: none !important;
        width: auto !important;
        height: auto !important;
        border-radius: 0 !important;
    }

        .logo-img img {
            display: block !important;
            height: 38px !important;
            width: auto !important;
        }

    .menu-m {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        width: auto !important;
        flex-shrink: 0;
    }

        .menu-m .btn.btn-primary.dropdown-toggle {
            background: none !important;
            border: none !important;
            box-shadow: none !important;
            padding: 6px 8px !important;
            margin-top: 0 !important;
            font-size: 0 !important;
            color: transparent !important;
        }

            .menu-m .btn.btn-primary.dropdown-toggle::before {
                content: '';
                display: block;
                width: 24px;
                height: 2px;
                background: #311B92;
                box-shadow: 0 7px 0 #311B92, 0 14px 0 #311B92;
                position: relative;
                top: -3px;
            }

            .menu-m .btn.btn-primary.dropdown-toggle::after {
                display: none !important;
            }

        .menu-m .dropdown-menu {
            right: 0 !important;
            left: auto !important;
            min-width: 180px !important;
            transform: none !important;
            margin-top: 10px !important;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            padding: 6px;
        }

            .menu-m .dropdown-menu li {
                margin: 0 !important;
            }

        .menu-m .nav-a {
            display: block !important;
            padding: 9px 14px !important;
            font-size: 14px !important;
            font-weight: 600 !important;
            color: #311B92 !important;
            text-decoration: none !important;
            border-radius: 8px;
        }

            .menu-m .nav-a:hover {
                background: #f4f7fe !important;
            }
}

/* ===== MODAL CHAT FLOTANTE ===== */
.modal-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    bottom: auto !important;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

#btnMostrar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #311B92 !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(49,27,146,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
}

    #btnMostrar:hover {
        transform: scale(1.08);
    }

    #btnMostrar svg {
        fill: #fff;
    }

.modal-fixed {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 16px;
    width: 160px;
    border: 1px solid #e5e7eb;
    margin-bottom: 8px;
}

    .modal-fixed .modal-header {
        background: none;
        border: none;
        padding: 0 0 10px 0;
        margin: 0;
    }

    .modal-fixed .modal-title {
        font-size: 13px;
        font-weight: 700;
        color: #311B92;
    }

    .modal-fixed .contact-icons {
        gap: 16px;
        margin: 0 0 8px 0;
        justify-content: center;
    }

    .modal-fixed .modal-footer {
        border: none;
        background: none;
        padding: 8px 0 0 0;
        margin: 0;
        text-align: center;
        border-top: 1px solid #f0f0f0;
    }

        .modal-fixed .modal-footer a {
            color: #311B92;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
        }

#modalFixed {
    display: none;
}


/* Contenedor formulario*/
.az-tipo-form {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 40px;
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto 24px;
    flex-wrap: nowrap;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
}

.az-tipo-form-light {
    background: #ffffff;
    border: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-top: 20px;
}

    .az-tipo-form-light .az-tipo-sep {
        background: #e5e7eb;
        display: block;
    }

/* Botón activo más destacado */
.az-tipo-btn {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.25) !important;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: .2s;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Nunito', sans-serif;
}

    .az-tipo-btn.active {
        background: #fff !important;
        color: #1a56db !important;
        border-color: #fff !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }


    .az-tipo-btn:hover:not(.active) {
        background: rgba(255,255,255,0.15);
    }


.az-tipo-btn-dark {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.08) !important;
    background: rgba(255,255,255,0.08);
    color: #1a56db !important;
    transition: .2s;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.3);
}

    .az-tipo-btn-dark.active {
        background: #1a56db !important;
        color: #fff !important;
        border-color: #fff !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }


    .az-tipo-btn-dark:hover:not(.active) {
        background: rgba(255,255,255,0.15);
    }



.az-tipo-submit {
    padding: 12px 16px;
    font-size: 13px;
}


.az-tipo-email {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.08) !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #fff;
    min-width: 0;
    width: 160px;
    flex: 1;
    outline: none;
    font-family: 'Nunito Sans', sans-serif;
}

    .az-tipo-email::placeholder {
        color: rgba(255,255,255,0.55);
    }


.az-tipo-email-dark {
    background: rgba(255,255,255,0.08);
    color: #1a56db !important;
    border: 1.5px solid rgba(255,255,255,0.8) !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    min-width: 190px;
    flex: 1;
    outline: none;
    font-family: 'Nunito Sans', sans-serif;
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.3);
}

.az-tipo-submit {
    background: #00d4e8;
    color: #003a50 !important;
    border: none !important;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none !important;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 0 0 3px rgba(0,212,232,0.3);
    transition: .2s;
    display: inline-block;
}

    .az-tipo-submit:hover {
        background: #00eaff;
        color: #003a50 !important;
    }



        /* ===== SECCIÓN PRECIOS ===== */

        .px-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 20px;
            align-items: stretch;
            margin-top: 40px;
            font-family: 'Nunito', sans-serif;
            "
        }

        .px-card {
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .px-a {
            background: linear-gradient(180deg, #1a56db 0%, #0e7ab0 60%, #00b8c8 100%) !important;
        }

        .px-az {
            background: linear-gradient(180deg, #7B20E8 0%, #4a35d4 40%, #1a56db 100%) !important;
        }

        .px-sol {
            background: linear-gradient(180deg, #1a56db 0%, #0a7a6a 50%, #0d9e7e 100%) !important;
        }

        .px-inner {
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .px-header-row {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 16px;
        }

        .px-plan-label {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
        }

        .px-plan-name {
            font-size: 36px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            font-family: 'Nunito', sans-serif;
        }

            .px-plan-name em {
                font-style: normal;
                color: #7ee8f5;
            }

        .px-old {
            font-size: 14px;
            color: rgba(255,255,255,0.45);
            text-decoration: line-through;
            margin-bottom: 6px;
        }

        .px-price {
            font-size: 32px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            margin-bottom: 4px;
            font-family: 'Nunito', sans-serif;
        }

            .px-price span {
                font-size: 14px;
                font-weight: 400;
                color: rgba(255,255,255,0.7);
            }

        .px-sep {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.2);
            margin: 20px 0;
            margin-top: 10px;
        }

        .px-includes {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: white;
            margin-bottom: 8px;
        }

        .px-features {
            display: flex;
            flex-direction: column;
            gap: 7px;
            flex: 1;
            margin-bottom: 14px;
        }

        .px-feat {
            display: flex;
            gap: 7px;
            align-items: flex-start;
            font-size: 12px;
            color: rgba(255,255,255,0.88);
            line-height: 1.35;
        }

        .px-check {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

            .px-check svg {
                width: 7px;
                height: 6px;
            }

        .px-check-gold {
            background: rgba(255,220,100,0.35);
        }

        .px-highlight {
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 12px 14px;
            margin-bottom: 14px;
        }

        .px-highlight-txt {
            font-size: 15px;
            font-weight: 900;
            color: #fff;
            line-height: 1.3;
        }

            .px-highlight-txt em {
                font-style: normal;
                color: #7ee8f5;
            }

        .px-note-specific {
            font-size: 10px;
            color: white;
            line-height: 1.5;
            margin-bottom: 14px;
        }

            .px-note-specific strong {
                color: white;
            }

        .px-cta {
            background: rgba(255,255,255,0.2);
            border: 1.5px solid rgba(255,255,255,0.4) !important;
            color: #fff !important;
            border-radius: 10px;
            padding: 13px;
            text-align: center;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            text-decoration: none !important;
            display: block;
            margin-top: auto;
            transition: .2s;
        }

            .px-cta:hover {
                background: rgba(255,255,255,0.3);
            }

        .px-common-notes {
            margin-top: 20px;
            background: #f4f7fe;
            border-radius: 14px;
            padding: 16px 20px;
            font-size: 12px;
            color: #374151;
            line-height: 1.7;
            text-align: center;
            border: 1px solid #e5e7eb;
        }

            .px-common-notes strong {
                color: #1a56db;
            }

        @media (max-width: 768px) {
            .px-grid {
                grid-template-columns: 1fr !important;
            }

            .px-grid-2col {
                grid-template-columns: 1fr !important;
            }
        }
