@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Syne:wght@700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #f7f6f1;
    --bg2: #eeecea;
    --white: #ffffff;
    --ink: #0d0d0d;
    --ink2: #2a2a2a;
    --ink3: #686868;
    --lime: #c8f135;
    --lime-dk: #7fa80e;
    --border: #0d0d0d;
    --border-soft: rgba(0, 0, 0, 0.15);
    --r: 4px;
    --r-lg: 8px;
    --font-h: 'Syne', sans-serif;
    --font-b: 'Inter', sans-serif;
    --font-m: 'DM Mono', monospace;
    --shadow: 4px 4px 0px #0d0d0d;
    --shadow-sm: 2px 2px 0px #0d0d0d;
    --heading-weight: 800;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-b);
    font-size: 15px;
    line-height: 1.6;
    padding-top: 50px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-logo {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 18px;
    letter-spacing: -0.5px;
    color: var(--ink);
    text-decoration: none;
}

.nav-logo span {
    font-family: var(--font-m);
    font-weight: 400;
    font-size: 11px;
    color: var(--ink3);
    margin-left: 8px;
    background: var(--bg2);
    padding: 2px 6px;
    border-radius: var(--r);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    font-size: 13px;
    font-weight: 500;
}

.nav-links a {
    color: var(--ink2);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.nav-cta {
    background: var(--ink);
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-b);
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.hero-left {
    padding: 64px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
}

.eyebrow {
    font-family: var(--font-m);
    font-size: 11px;
    color: var(--ink3);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

h1 {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

h1 em {
    font-style: normal;
    background: var(--lime);
    padding: 0 6px;
    border-radius: var(--r);
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg2);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 6px 14px 6px 10px;
    font-size: 12px;
    color: var(--ink2);
    margin-bottom: 24px;
    align-self: flex-start;
    font-family: var(--font-m);
}

.pill-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-soft);
    display: block;
}

.hero-trust-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime-dk);
}

.hero-sub {
    font-size: 16px;
    color: var(--ink2);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-sub strong {
    color: var(--ink);
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-lime {
    background: var(--lime);
    color: var(--ink);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-b);
    box-shadow: var(--shadow);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-lime:hover {
    transform: translateY(-1px);
}

.btn-ink {
    background: var(--ink);
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px 26px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-b);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-ink:hover {
    opacity: 0.95;
}

.trust-micro {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.trust-item {
    font-family: var(--font-m);
    font-size: 11px;
    color: var(--ink3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item::before {
    content: '✓';
    color: var(--lime-dk);
    font-weight: 700;
}

.hero-right {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: var(--bg2);
}

.felix-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.felix-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--r);
    flex-shrink: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.felix-info {
    flex: 1;
}

.felix-name {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 16px;
    margin-bottom: 2px;
}

.felix-role {
    font-size: 12px;
    color: var(--ink3);
    margin-bottom: 10px;
    font-family: var(--font-m);
}

.felix-quote {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.5;
    font-style: italic;
}

.mockup-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.mockup-label {
    font-family: var(--font-m);
    font-size: 10px;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-client {
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: var(--heading-weight);
    margin-top: 2px;
}

.mockup-badge {
    background: var(--lime);
    color: var(--ink);
    font-family: var(--font-m);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: var(--r);
    font-weight: 600;
    border: 1px solid var(--border);
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.bar-label {
    font-size: 12px;
    color: var(--ink2);
    width: 110px;
    flex-shrink: 0;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: var(--bg2);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

.bar-fill {
    height: 100%;
    background: var(--lime-dk);
    border-radius: 4px;
}

.bar-val {
    font-family: var(--font-m);
    font-size: 12px;
    font-weight: 600;
    width: 45px;
    text-align: right;
}

.quemado-banner {
    background: var(--ink);
    color: var(--white);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 36px;
    border-bottom: 1px solid var(--border);
}

.qb-icon {
    font-size: 36px;
    background: rgba(255, 255, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r);
    flex-shrink: 0;
}

.qb-text {
    flex: 1;
}

.qb-title {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 20px;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.qb-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.qb-sub strong {
    color: var(--lime);
}

section {
    padding: 80px 50px;
    border-bottom: 1px solid var(--border);
}

.section-header {
    margin-bottom: 44px;
}

.section-num {
    font-family: var(--font-m);
    font-size: 12px;
    color: var(--ink3);
    display: block;
    margin-bottom: 8px;
}

h2 {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 32px;
    letter-spacing: -1px;
}

h2 em {
    font-style: normal;
    color: var(--lime-dk);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.card-icon {
    font-size: 24px;
    margin-bottom: 16px;
}

.card-title {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 18px;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.5;
}

.casos-section {
    background: var(--white);
}

.caso-metrica {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 28px;
    color: var(--lime-dk);
    margin-bottom: 6px;
    margin-top: 14px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-num {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 36px;
    color: var(--bg2);
    line-height: 1;
    margin-bottom: 12px;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-h);
}

.step-desc {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.5;
}

.step-benefit {
    margin-top: 10px;
    font-size: 12px;
    color: var(--lime-dk);
    font-weight: 600;
}

.step-time {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--ink3);
    margin-top: 8px
}

.pricing-section {
    background: var(--bg2);
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.price-col {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.price-col.featured {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    box-shadow: var(--shadow);
}

.pricing-note {
    font-size: 12px;
    color: var(--ink3);
    margin-top: 12px;
    font-family: 'DM Mono', monospace
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: var(--ink);
    font-family: var(--font-m);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    text-transform: uppercase;
}

.plan-name {
    font-family: var(--font-m);
    font-size: 12px;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 10px;
    font-weight: 600;
}

.price-col.featured .plan-name {
    color: rgba(255, 255, 255, 0.5);
}

.plan-price {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 38px;
    letter-spacing: -1px;
    line-height: 1;
}

.plan-iva {
    font-size: 12px;
    color: var(--ink3);
    margin-top: 4px;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--ink2);
}

.price-col.featured .plan-features li {
    color: rgba(255, 255, 255, 0.8);
}

.feat-check {
    color: var(--lime-dk);
    font-weight: 700;
}

.price-col.featured .feat-check {
    color: var(--lime);
}

.plan-cta {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-b);
}

.plan-cta:hover {
    background: var(--bg2);
}

.plan-cta-featured {
    width: 100%;
    padding: 14px;
    background: var(--lime);
    color: var(--ink);
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-b);
    box-shadow: var(--shadow-sm);
}

.plan-cta-featured:hover {
    transform: translateY(-1px);
}

.pricing-basica {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px 24px;
    font-size: 13px;
    color: var(--ink2);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.pricing-basica strong {
    color: var(--ink);
}

/* TESTIMONIOS */
.rating-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r)
}

.rating-big {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -1px
}

.rating-stars {
    color: var(--lime-dk);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 2px
}

.rating-sub {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--ink3)
}

.google-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--ink3)
}

.google-g {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc04, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

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

.testi-grid-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column
}

.testi-card.featured {
    border: 1.5px solid var(--lime-dk)
}

.testi-stars {
    color: var(--lime-dk);
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 2px
}

.testi-quote {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1
}

.highlight-phrase {
    background: rgba(199, 241, 53, 0.3);
    border-radius: 3px;
    padding: 1px 3px
}

.testi-footer {
    margin-top: auto
}

.author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px
}

.author-ava {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
    flex-shrink: 0
}

.author-name {
    font-size: 13px;
    font-weight: 600
}

.author-biz {
    font-size: 11px;
    color: var(--ink3)
}

.testi-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border)
}

.testi-date {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--ink3)
}

.testi-source {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--ink3);
    display: flex;
    align-items: center;
    gap: 4px
}

.verified-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime-dk);
    flex-shrink: 0
}

.mini-testi {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px
}

.mini-stars {
    color: var(--lime-dk);
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 6px
}

.mini-quote {
    font-size: 12px;
    color: var(--ink2);
    line-height: 1.55;
    margin-bottom: 10px
}

.mini-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink)
}

.mini-source {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--ink3)
}

/* GARANTÍA */
.guarantee-box {
    background: var(--ink);
    color: var(--white);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0 40px 40px
}

.g-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.8px;
    line-height: 1.1;
    margin-bottom: 12px
}

.g-title em {
    font-style: normal;
    color: var(--lime)
}

.g-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 16px
}

.g-phone {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: var(--lime);
    margin-top: 8px
}

.g-items {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.g-item {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 14px
}

.g-item-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 8px
}

.g-item-body {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5
}

.guarantee-box {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--r-lg);
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow);
}

.g-left h3 {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 26px;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.g-left h3 em {
    font-style: normal;
    color: var(--lime);
}

.g-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 14px;
}

.g-phone {
    font-family: var(--font-m);
    font-size: 13px;
    color: var(--lime);
    font-weight: 600;
}

.g-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.g-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    padding: 16px;
}

.g-item-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.g-item-body {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.final-cta {
    padding: 90px 40px;
    text-align: center;
    background: var(--white);
}

.cta-eyebrow {
    font-family: var(--font-m);
    font-size: 11px;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.cta-h2 {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 38px;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.cta-h2 em {
    font-style: normal;
    background: var(--lime);
    padding: 0 6px;
    border-radius: var(--r);
}

.cta-sub {
    font-size: 15px;
    color: var(--ink2);
    max-width: 540px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.cta-note {
    font-family: var(--font-m);
    font-size: 11px;
    color: var(--ink3);
}

footer {
    padding: 24px 50px;
    background: var(--white);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ink3);
}

.footer-logo {
    font-family: var(--font-h);
    font-weight: var(--heading-weight);
    font-size: 14px;
    color: var(--ink);
}

@media(max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 44px 24px;
    }

    .hero-right {
        padding: 44px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    section {
        padding: 50px 24px;
    }

    nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .quemado-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }

    h1 {
        font-size: 32px;
    }
}