/* PartePro — Shared Styles
   Multi-page landing · partepro.com
   =============================== */

:root {
  --navy: #1E3A6E;
  --green: #2ECC71;
  --green-dark: #27ae60;
  --bg: #F5F7FA;
  --white: #FFFFFF;
  --tx: #0F1923;
  --tx2: #5A6A7E;
  --bor: #E0E6EF;
  --red: #E74C3C;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--tx);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bor);
}
.logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: var(--navy); text-decoration: none; }
.logo span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14px; font-weight: 600; color: var(--navy);
  text-decoration: none; transition: color .2s;
  position: relative;
}
.nav-link:hover { color: var(--green); }
.nav-link.active { color: var(--green); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--green); border-radius: 2px;
}
.nav-cta {
  background: var(--navy); color: #fff;
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: #162d57; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  position: relative; z-index: 101;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s; margin: 5px auto;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: -8px 0 40px rgba(0,0,0,.1);
    transition: right .3s ease;
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 16px; }
  .nav-cta { width: 100%; text-align: center; }
}

/* ── HERO STEPS ── */
.hero-steps {
  display: flex; align-items: center; gap: 12px;
  margin: 48px auto 44px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 28px 36px;
  max-width: 700px;
  box-shadow: 0 8px 40px rgba(30,58,110,.08);
}
.hero-step { flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hs-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.hs-icon { font-size: 32px; }
.hs-label { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.hs-time {
  font-size: 11px; font-weight: 600; color: var(--green);
  background: rgba(46,204,113,.1);
  border-radius: 100px; padding: 2px 10px;
}
.hero-arrow { font-size: 22px; color: var(--bor); flex-shrink: 0; font-weight: 300; }
@media (max-width: 640px) {
  .hero-steps { flex-direction: column; padding: 24px 20px; gap: 16px; }
  .hero-arrow { transform: rotate(90deg); }
  .hero-step { flex-direction: row; text-align: left; gap: 12px; }
  .hs-num { flex-shrink: 0; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 50%, #f0faf5 100%);
  position: relative; overflow: hidden;
}
.hero-sm {
  min-height: auto;
  padding: 140px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,204,113,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,58,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,204,113,0.12);
  border: 1px solid rgba(46,204,113,0.3);
  color: #1a9450;
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--navy);
  max-width: 780px;
  margin-bottom: 24px;
  animation: fadeUp .7s ease .1s both;
}
h1 em { color: var(--green); font-style: normal; }

.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--tx2); max-width: 560px;
  line-height: 1.6; margin-bottom: 44px;
  font-weight: 400;
  animation: fadeUp .7s ease .2s both;
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 56px;
  animation: fadeUp .7s ease .3s both;
}
.btn-primary {
  background: var(--green); color: #fff;
  padding: 16px 36px; border-radius: 100px;
  font-size: 17px; font-weight: 600;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 8px 32px rgba(46,204,113,.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(46,204,113,.45); }
.btn-secondary {
  background: transparent; color: var(--navy);
  padding: 16px 36px; border-radius: 100px;
  font-size: 17px; font-weight: 600;
  text-decoration: none; transition: all .2s;
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

.hero-proof {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: var(--tx2);
  animation: fadeUp .7s ease .4s both;
}
.proof-item { display: flex; align-items: center; gap: 6px; }
.proof-item svg { color: var(--green); }

/* ── APP MOCKUP ── */
.mockup-wrap {
  width: 100%; max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  animation: fadeUp .9s ease .5s both;
}
.mockup-phone {
  background: var(--navy);
  border-radius: 32px; padding: 6px;
  box-shadow: 0 40px 100px rgba(30,58,110,.25), 0 0 0 1px rgba(255,255,255,.1);
  max-width: 340px; margin: 0 auto;
}
.mockup-screen {
  background: #EBF0F8; border-radius: 27px;
  overflow: hidden; padding: 0;
}
.mock-topbar {
  background: #fff; padding: 14px 18px 10px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #D5DCE8;
}
.mock-logo { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 800; color: var(--navy); }
.mock-logo span { color: var(--green); }
.mock-av { width: 28px; height: 28px; border-radius: 50%; background: #E8EEF8; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--navy); }
.mock-body { padding: 12px 14px; }
.mock-card { background: #fff; border-radius: 12px; border: 1px solid #D5DCE8; padding: 12px 14px; margin-bottom: 8px; }
.mock-card-enc { border: 2px solid #E67E22; background: linear-gradient(135deg,#fff,#fef2e5); }
.mock-card-title { font-size: 13px; font-weight: 600; color: var(--tx); }
.mock-card-sub { font-size: 11px; color: var(--tx2); margin-top: 2px; }
.mock-card-amt { font-size: 15px; font-weight: 700; font-family: 'DM Mono', monospace; color: var(--navy); }
.mock-chips { display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap; }
.mock-chip { font-size: 10px; font-weight: 500; padding: 2px 8px; border-radius: 20px; }
.chip-g { background: #E8F5F0; color: #1a9450; }
.chip-a { background: #FEF2E5; color: #E67E22; }
.chip-b { background: #E8EEF8; color: var(--navy); }
.mock-badge { background: var(--green); color: #fff; border-radius: 10px; font-size: 9px; font-weight: 700; padding: 2px 6px; }
.mock-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.mock-stat { background: #fff; border-radius: 10px; border: 1px solid #D5DCE8; padding: 9px 11px; }
.mock-stat-l { font-size: 9px; color: var(--tx2); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
.mock-stat-v { font-size: 18px; font-weight: 700; font-family: 'DM Mono', monospace; color: var(--navy); }
.mock-btn-row { display: flex; gap: 6px; margin-top: 8px; }
.mock-btn { padding: 6px 10px; border-radius: 7px; font-size: 10px; font-weight: 600; }
.mbtn-g { background: var(--green); color: #fff; }
.mbtn-w { background: #25D366; color: #fff; }
.mbtn-b { background: #E8EEF8; color: var(--navy); }
.mock-bnav { background: #fff; border-top: 1px solid #D5DCE8; display: flex; padding: 8px 0 12px; }
.mock-nb { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mock-ni { font-size: 16px; }
.mock-nl { font-size: 9px; color: var(--tx2); font-weight: 500; }
.mock-nb.on .mock-nl { color: var(--navy); }

/* ── SECTIONS ── */
section { padding: 100px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px; color: var(--tx2); line-height: 1.6;
  max-width: 560px;
}

/* ── DOLOR ── */
.pain-section { background: var(--navy); color: #fff; }
.pain-section .section-title { color: #fff; }
.pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 56px;
  border-radius: 20px; overflow: hidden;
}
@media (max-width: 640px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: rgba(255,255,255,.05);
  padding: 36px 32px; transition: background .2s;
}
.pain-card:hover { background: rgba(255,255,255,.08); }
.pain-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.pain-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.pain-text { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── FEATURES ── */
.features-section { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 60px;
}
.feat-card {
  background: var(--white);
  border-radius: 20px; border: 1px solid var(--bor);
  padding: 36px 32px; transition: all .25s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 500;
  color: var(--green); margin-bottom: 20px; display: block;
}
.feat-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.feat-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.feat-text { font-size: 15px; color: var(--tx2); line-height: 1.7; }
.feat-badge-soon {
  display: inline-block; background: rgba(30,58,110,.08);
  color: var(--navy); font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  margin-bottom: 12px; letter-spacing: .04em;
}

/* ── HOW IT WORKS ── */
.steps-section { background: #fff; }
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 60px; max-width: 700px; }
.step {
  display: flex; gap: 32px; align-items: flex-start;
  padding-bottom: 48px; position: relative;
}
.step::after {
  content: '';
  position: absolute; left: 24px; top: 52px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--green), transparent);
}
.step:last-child::after { display: none; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 800;
  flex-shrink: 0;
}
.step-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-text { font-size: 16px; color: var(--tx2); line-height: 1.6; }
.step-time { display: inline-block; margin-top: 10px; background: #f0faf5; color: var(--green-dark); border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 600; }

/* ── PRICING ── */
.pricing-section { background: var(--bg); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px; max-width: 1100px;
}
.pricing-grid-empresa {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 32px; max-width: 1100px;
}
@media (max-width: 900px) { .pricing-grid-empresa { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-empresa { grid-template-columns: 1fr; }
}
.empresa-highlight {
  background: linear-gradient(135deg, rgba(30,58,110,.04), rgba(46,204,113,.06));
  border: 2px solid rgba(46,204,113,.2);
  border-radius: 24px; padding: 48px 36px; margin-top: 56px;
}
.empresa-highlight .section-title { font-size: clamp(24px, 3.5vw, 38px); }
.price-card-sm {
  background: var(--white);
  border-radius: 20px; border: 1px solid var(--bor);
  padding: 28px 24px; position: relative; transition: all .25s;
}
.price-card-sm:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.price-card-sm.featured { background: var(--navy); border-color: var(--navy); color: #fff; }
.price-card-sm .price-name { font-size: 12px; }
.price-card-sm .price-amount { font-size: 38px; }
.price-personas { font-size: 13px; font-weight: 600; color: var(--green-dark); background: rgba(46,204,113,.1); border-radius: 8px; padding: 4px 10px; display: inline-block; margin-bottom: 12px; }
.price-card-sm.featured .price-personas { background: rgba(46,204,113,.2); color: #7dffb8; }
.price-features-sm { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.price-features-sm li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--tx2); }
.price-card-sm.featured .price-features-sm li { color: rgba(255,255,255,.8); }
.price-features-sm li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.annual-note { text-align: center; margin-top: 20px; font-size: 14px; color: var(--tx2); background: rgba(255,255,255,.7); border-radius: 12px; padding: 12px 20px; }
.price-card {
  background: var(--white);
  border-radius: 24px; border: 1px solid var(--bor);
  padding: 40px 36px; position: relative;
}
.price-card.featured { background: var(--navy); border-color: var(--navy); color: #fff; }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  padding: 5px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.price-name { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--tx2); margin-bottom: 20px; }
.price-card.featured .price-name { color: rgba(255,255,255,.6); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-card.featured .price-amount { color: #fff; }
.price-period { font-size: 14px; color: var(--tx2); margin-bottom: 28px; }
.price-card.featured .price-period { color: rgba(255,255,255,.6); }
.price-old { font-size: 14px; color: var(--tx2); text-decoration: line-through; margin-bottom: 4px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--tx2); }
.price-card.featured .price-features li { color: rgba(255,255,255,.8); }
.price-features li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.btn-price-main {
  display: block; width: 100%;
  background: var(--green); color: #fff;
  padding: 15px; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  text-align: center; text-decoration: none;
  transition: all .2s;
  box-shadow: 0 6px 24px rgba(46,204,113,.35);
}
.btn-price-main:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-price-free {
  display: block; width: 100%;
  background: transparent; color: var(--navy);
  padding: 15px; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  text-align: center; text-decoration: none;
  border: 2px solid var(--bor); transition: all .2s;
}
.btn-price-free:hover { border-color: var(--navy); }

/* ── SOCIAL PROOF ── */
.proof-section { background: #fff; }
.testimonials {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}
@media (max-width: 640px) { .testimonials { grid-template-columns: 1fr; } }
.testi {
  background: var(--bg); border-radius: 20px;
  padding: 32px 28px; position: relative;
}
.testi::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 80px; color: var(--green); opacity: .3;
  position: absolute; top: 10px; left: 20px; line-height: 1;
}
.testi-text { font-size: 16px; line-height: 1.7; color: var(--tx); margin-bottom: 20px; padding-top: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
  overflow: hidden; flex-shrink: 0;
}
.testi-av img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 600; font-size: 14px; }
.testi-job { font-size: 12px; color: var(--tx2); }

/* ── FAQ ── */
.faq-section { background: var(--bg); }
.faqs { max-width: 720px; margin-top: 56px; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--bor); padding: 20px 0; }
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--navy);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; user-select: none;
}
.faq-icon { font-size: 22px; color: var(--green); flex-shrink: 0; transition: transform .25s; line-height: 1; }
.faq-a {
  font-size: 15px; color: var(--tx2); line-height: 1.7;
  overflow: hidden; max-height: 0;
  transition: max-height .4s ease, padding .4s ease;
  padding-top: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── CTA FINAL ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #162d57 100%);
  text-align: center; padding: 120px 24px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,204,113,.12) 0%, transparent 70%);
}
.cta-section .section-title { color: #fff; max-width: 680px; margin: 0 auto 20px; }
.cta-section .section-sub { color: rgba(255,255,255,.65); margin: 0 auto 44px; }
.cta-gratis { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 16px; }

/* ── FOOTER ── */
footer {
  background: var(--tx);
  color: rgba(255,255,255,.5);
  padding: 60px 24px 40px;
  font-size: 13px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
footer a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--green); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; display: block; }
.footer-logo span { color: var(--green); }
.footer-desc { font-size: 14px; line-height: 1.6; margin-bottom: 16px; color: rgba(255,255,255,.4); }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 14px; }
.footer-bottom {
  max-width: 1100px; margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; opacity: .5;
}
@media (max-width: 480px) { .footer-bottom { flex-direction: column; gap: 8px; } }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--bor);
  border-bottom: 1px solid var(--bor);
  padding: 32px 24px;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  text-align: center; gap: 24px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.stat-label { font-size: 14px; color: var(--tx2); margin-top: 4px; }

/* ── DETAIL GRID (funcionalidades, empresa, cobros) ── */
.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 60px; align-items: center;
}
.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .detail-grid, .detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
}
.detail-visual {
  background: var(--bg); border-radius: 24px; padding: 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.detail-visual .big-icon { font-size: 100px; }
.detail-content {}
.detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 800; color: var(--navy);
  margin-bottom: 16px; line-height: 1.2;
}
.detail-content p { font-size: 16px; color: var(--tx2); line-height: 1.7; margin-bottom: 16px; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.detail-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--tx2);
}
.detail-list li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── CHIP TAGS ── */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.chip-tag {
  background: rgba(46,204,113,.1); color: var(--green-dark);
  font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 14px 18px; }
  .logo { font-size: 19px; }
  .nav-cta { padding: 9px 18px; font-size: 13px; }
  h1 { letter-spacing: -1px; }
  .stats-inner { grid-template-columns: 1fr; gap: 20px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; text-align: center; }
  .pain-grid { border-radius: 16px; }
  section { padding: 72px 20px; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1E3A6E; color: #fff;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; z-index: 9999;
  font-size: 13px; flex-wrap: wrap;
}
.cookie-banner a { color: #2ECC71; text-decoration: none; }
.ck-btn-accept {
  background: #2ECC71; color: #fff; border: none;
  border-radius: 8px; padding: 7px 16px;
  font-size: 13px; font-weight: 600; cursor: pointer;
}
.ck-btn-reject {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px; padding: 7px 14px;
  font-size: 13px; cursor: pointer;
}
