:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eff6ff;
  --navy: #111827;
  --text: #334155;
  --muted: #64748b;
  --line: rgba(15, 23, 42, .09);
  --surface: #ffffff;
  --soft: #f6f7fb;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(15, 23, 42, .09);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.container.narrow { max-width: 980px; }
.section-pad { padding: 88px 0; }
.section-soft { background: var(--soft); }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 14px; background: #fff; border-radius: 10px; transform: translateY(-150%); box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 1000; top: 0; padding: 14px 0; background: rgba(246, 247, 251, .84); backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: .2s ease; }
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px rgba(15, 23, 42, .06); }
.header-inner { min-height: 70px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 10px 12px 10px 18px; border: 1px solid var(--line); border-radius: 25px; background: rgba(255,255,255,.96); box-shadow: 0 10px 30px rgba(15, 23, 42, .07); }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; color: var(--navy); font-size: 20px; font-weight: 900; letter-spacing: -.025em; }
.brand img { border-radius: 12px; }
.desktop-nav { display: flex; align-items: center; gap: 8px; }
.desktop-nav a { padding: 10px 12px; border-radius: 10px; color: #475569; font-size: 14px; font-weight: 750; transition: .18s ease; }
.desktop-nav a:hover { color: var(--blue); background: var(--blue-soft); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.header-login { min-height: 38px; display: inline-flex; align-items: center; padding: 0 4px 0 22px; margin-left: 14px; border-left: 1px solid var(--line); color: #475569; font-size: 14px; font-weight: 850; }
.header-login:hover { color: var(--blue); }
.menu-button { display: none; width: 46px; height: 46px; place-items: center; border: 0; border-radius: 14px; color: var(--navy); background: var(--soft); cursor: pointer; }
.menu-button svg { width: 24px; height: 24px; }
.mobile-nav { position: fixed; inset: 98px 20px auto; z-index: 1001; display: grid; gap: 6px; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a:not(.button) { padding: 12px 14px; border-radius: 12px; font-weight: 750; }
.mobile-nav a:not(.button):hover { background: var(--soft); }
.mobile-nav .mobile-login { margin-bottom: 6px; padding-bottom: 14px; border-bottom: 1px solid var(--line); color: var(--blue); }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 22px; border: 1px solid transparent; border-radius: 16px; font-weight: 850; line-height: 1.1; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-small { min-height: 48px; padding: 12px 18px; font-size: 14px; }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 25px rgba(37, 99, 235, .22); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 15px 30px rgba(37, 99, 235, .28); }
.button-secondary { color: var(--blue); background: #fff; border-color: rgba(37, 99, 235, .22); }
.button-light { color: var(--blue); background: #fff; }
.button-outline-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.38); }
.button.full { width: 100%; }

.hero { position: relative; overflow: hidden; padding-top: 72px; background: radial-gradient(circle at 50% 0%, rgba(37,99,235,.14), transparent 36%), var(--soft); }
.hero::before, .hero::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(70px); opacity: .2; pointer-events: none; }
.hero::before { top: 10%; left: -220px; background: #60a5fa; }
.hero::after { top: 35%; right: -240px; background: #93c5fd; }
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pill, .eyebrow { display: inline-flex; align-items: center; width: max-content; padding: 8px 14px; border-radius: 999px; color: var(--blue); background: rgba(37,99,235,.1); font-size: 13px; font-weight: 850; letter-spacing: .01em; }
.eyebrow { margin-bottom: 14px; text-transform: uppercase; letter-spacing: .09em; font-size: 12px; }
.eyebrow.light { color: #fff; background: rgba(255,255,255,.14); }
.hero h1 { max-width: 960px; margin: 20px 0 0; color: var(--navy); font-size: clamp(2.35rem, 5.4vw, 4.25rem); line-height: 1.02; letter-spacing: -.055em; }
.hero-copy { max-width: 840px; margin: 22px 0 0; color: #536176; font-size: clamp(1rem, 1.7vw, 1.22rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.hero-checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-top: 22px; color: #536176; font-size: 14px; font-weight: 750; }
.hero-checks span { display: inline-flex; align-items: center; gap: 7px; }
.hero-checks svg { color: var(--blue); }

.product-preview { position: relative; width: 100%; margin-top: 34px; padding: 16px; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: 0 30px 80px rgba(15, 23, 42, .12); cursor: zoom-in; overflow: hidden; }
.browser-chrome { display: flex; align-items: center; gap: 7px; height: 42px; padding: 0 13px; border-bottom: 1px solid var(--line); color: #94a3b8; }
.browser-chrome > span { width: 9px; height: 9px; border-radius: 50%; background: #dbe2ea; }
.browser-chrome > div { min-width: 190px; margin-inline: auto; padding: 5px 16px; border-radius: 999px; background: var(--soft); font-size: 11px; }
.preview-stage { position: relative; aspect-ratio: 16 / 9; margin-top: 14px; overflow: hidden; border-radius: 20px; background: #f8fafc; }
.real-screenshot { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 1; transition: opacity .2s ease; }
.real-screenshot.is-missing { opacity: 0; pointer-events: none; }
.preview-fallback { position: absolute; inset: 0; display: grid; grid-template-columns: 19% 1fr; background: #eef3fa; }
.preview-fallback aside { padding: 4%; background: #1f57d6; }
.fake-logo { width: 45%; aspect-ratio: 1; margin-bottom: 16%; border-radius: 20%; background: rgba(255,255,255,.9); }
.preview-fallback aside i { display: block; width: 80%; height: 3.8%; margin: 9% 0; border-radius: 999px; background: rgba(255,255,255,.28); }
.fake-dashboard { padding: 4%; }
.fake-top { display: flex; justify-content: space-between; align-items: center; color: #25324a; font-size: clamp(9px, 1.4vw, 20px); }
.fake-top span { width: 16%; height: 24px; border-radius: 999px; background: #2563eb; }
.fake-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 3%; margin: 5% 0; }
.fake-stats i { height: 68px; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgba(15,23,42,.05); }
.fake-board { display: grid; grid-template-columns: repeat(5,1fr); gap: 2%; height: 55%; padding: 3%; border-radius: 14px; background: #fff; }
.fake-board span { border-radius: 8px; background: linear-gradient(#dbeafe 18%, #f1f5f9 18%); }
.zoom-hint { position: absolute; z-index: 4; right: 28px; bottom: 27px; padding: 8px 12px; border-radius: 999px; color: #fff; background: rgba(15,23,42,.75); font-size: 12px; font-weight: 750; backdrop-filter: blur(8px); }

.section-heading { max-width: 860px; margin: 0 auto 38px; text-align: center; }
.section-heading.compact { margin-top: 70px; margin-bottom: 28px; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading h2, .pricing-heading h2, .contact-card h2, .final-cta h2 { margin: 0; color: var(--navy); font-size: clamp(1.9rem, 3.8vw, 2.7rem); line-height: 1.12; letter-spacing: -.04em; }
.section-heading p, .pricing-heading p { max-width: 760px; margin: 14px auto 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.section-heading.left p { margin-left: 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { display: flex; align-items: flex-start; gap: 16px; min-height: 175px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: .2s ease; }
.info-card:hover, .feature-box:hover, .step-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,.22); box-shadow: 0 18px 40px rgba(15,23,42,.07); }
.icon-box { flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; color: var(--blue); background: var(--blue-soft); }
.icon-box svg { width: 25px; height: 25px; }
.info-card h3, .step-card h3, .feature-box h3 { margin: 1px 0 8px; color: var(--navy); font-size: 18px; letter-spacing: -.02em; }
.info-card p, .step-card p, .feature-box p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; text-align: center; transition: .2s ease; }
.step-card > span { color: var(--blue); font-size: 30px; font-weight: 950; letter-spacing: -.04em; }
.step-card h3 { margin-top: 10px; font-size: 20px; }

.showcase { display: grid; grid-template-columns: 34% 1fr; gap: 26px; align-items: stretch; padding: 22px; border: 1px solid var(--line); border-radius: 30px; background: var(--soft); }
.showcase-copy { align-self: center; padding: 20px 12px 20px 20px; }
.slide-number { display: inline-block; margin-bottom: 12px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.showcase h3 { margin: 0; color: var(--navy); font-size: 30px; letter-spacing: -.035em; }
.showcase p { margin: 14px 0 0; color: var(--muted); line-height: 1.65; }
.showcase-media { position: relative; min-height: 390px; display: grid; place-items: center; overflow: hidden; border-radius: 22px; background: #e9eef6; }
.showcase-media img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: opacity .25s ease, transform .25s ease; }
.showcase-media img.is-changing { opacity: 0; transform: scale(.985); }
.showcase-media img.is-missing { opacity: 0; pointer-events: none; }
.showcase-fallback { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #52627a; text-align: center; }
.showcase-fallback svg { width: 70px; height: 70px; color: var(--blue); }
.showcase-fallback strong { color: var(--navy); font-size: 24px; }
.carousel-dots { display: flex; gap: 7px; margin-top: 24px; }
.carousel-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(37,99,235,.2); cursor: pointer; transition: .2s ease; }
.carousel-dots button.is-active { width: 24px; background: var(--blue); }
.carousel-button { position: absolute; z-index: 5; top: 50%; width: 42px; height: 42px; display: grid; place-items: center; transform: translateY(-50%); border: 1px solid var(--line); border-radius: 50%; color: var(--blue); background: rgba(255,255,255,.92); box-shadow: 0 8px 20px rgba(15,23,42,.12); font-size: 30px; line-height: 1; cursor: pointer; }
.carousel-button.previous { left: 12px; }
.carousel-button.next { right: 12px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.feature-box { min-height: 205px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: .2s ease; }
.feature-box > svg { width: 29px; height: 29px; margin-bottom: 20px; color: var(--blue); }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan-card { display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.plan-card.featured { color: #fff; border-color: var(--blue); background: var(--blue); box-shadow: 0 24px 55px rgba(37,99,235,.22); transform: translateY(-10px); }
.plan-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.plan-badge { padding: 8px 11px; border-radius: 999px; color: var(--blue); background: var(--blue-soft); font-size: 11px; font-weight: 900; text-align: center; }
.featured .icon-box, .featured .plan-badge { color: #fff; background: rgba(255,255,255,.15); }
.plan-card h3 { margin: 22px 0 0; color: var(--navy); font-size: 24px; letter-spacing: -.03em; }
.featured h3 { color: #fff; }
.price { margin: 13px 0 0; color: var(--navy); font-size: 29px; font-weight: 950; line-height: 1.1; letter-spacing: -.035em; }
.featured .price { color: #fff; }
.price-detail { margin: 5px 0 0; color: var(--muted); font-size: 14px; font-weight: 750; }
.featured .price-detail, .featured .plan-description { color: rgba(255,255,255,.78); }
.plan-description { min-height: 74px; margin: 20px 0 0; color: var(--muted); line-height: 1.55; }
.plan-card ul { display: grid; gap: 10px; margin: 20px 0 25px; padding: 0; list-style: none; }
.plan-card li { position: relative; padding-left: 28px; color: #475569; line-height: 1.45; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: 11px; font-weight: 900; }
.featured li { color: rgba(255,255,255,.92); }
.featured li::before { color: var(--blue); background: #fff; }
.plan-card .button { margin-top: auto; }
.trial-notice { display: flex; align-items: flex-start; gap: 13px; margin-top: 28px; padding: 19px 21px; border: 1px solid rgba(37,99,235,.16); border-radius: 20px; background: rgba(37,99,235,.075); }
.trial-notice svg { flex: 0 0 23px; color: var(--blue); }
.trial-notice p { margin: 0; color: #52627a; font-size: 14px; line-height: 1.6; }
.pricing-heading { margin: 68px auto 26px; text-align: center; }
.pricing-heading h2 { font-size: clamp(1.75rem, 3.2vw, 2.25rem); }
.price-tables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.price-table { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; }
.price-table.highlighted { border-color: rgba(37,99,235,.3); }
.price-table header { padding: 24px; border-bottom: 1px solid var(--line); }
.price-table h3 { margin: 0; color: var(--navy); font-size: 23px; }
.price-table header p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.price-row { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 13px; padding: 13px 24px; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; }
.vip { padding: 7px 8px; border-radius: 10px; color: var(--blue); background: var(--blue-soft); font-size: 13px; font-weight: 900; text-align: center; }
.price-row span:nth-child(2) { color: #52627a; font-size: 14px; font-weight: 700; }
.price-row span:nth-child(2) b { display: block; color: var(--navy); font-size: 14px; font-weight: 900; }
.price-row span:nth-child(2) small { display: block; margin-top: 2px; color: #52627a; font-size: 13px; font-weight: 700; }
.price-row strong { color: var(--navy); font-size: 14px; white-space: nowrap; }

.contact-section { padding-top: 0; background: var(--soft); }
.contact-card { padding: 48px 34px; border-radius: 30px; color: #fff; background: radial-gradient(circle at 50% -30%, rgba(255,255,255,.2), transparent 42%), var(--blue); text-align: center; box-shadow: 0 25px 55px rgba(37,99,235,.2); }
.contact-card h2 { color: #fff; }
.contact-card > p { max-width: 720px; margin: 14px auto 0; color: rgba(255,255,255,.86); font-size: 17px; line-height: 1.6; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 25px; }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; color: var(--navy); font-size: 17px; font-weight: 850; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { flex: 0 0 20px; transition: transform .2s ease; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.65; }
.final-cta { margin-top: 55px; padding: 38px; border: 1px solid var(--line); border-radius: 28px; background: #fff; text-align: center; }
.final-cta img { margin: 0 auto 17px; border-radius: 20px; }
.final-cta p { max-width: 720px; margin: 14px auto 0; color: var(--muted); font-size: 16px; line-height: 1.65; }

.site-footer { padding: 25px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-inner > div { display: flex; gap: 16px; color: #52627a; font-size: 13px; font-weight: 750; }
.footer-inner a:hover { color: var(--blue); }

.image-modal { width: min(96vw, 1420px); max-height: 94vh; padding: 12px; border: 0; border-radius: 24px; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.image-modal::backdrop { background: rgba(2,6,23,.82); backdrop-filter: blur(5px); }
.image-modal img { width: 100%; max-height: calc(94vh - 24px); object-fit: contain; border-radius: 16px; }
.modal-close { position: absolute; z-index: 3; top: 20px; right: 20px; width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--navy); background: rgba(255,255,255,.94); box-shadow: 0 8px 25px rgba(15,23,42,.18); cursor: pointer; }
.noscript { padding: 14px; color: #7c2d12; background: #ffedd5; text-align: center; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-button { display: grid; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .plan-card.featured { transform: none; }
  .plan-description { min-height: auto; }
}

@media (max-width: 780px) {
  .section-pad { padding: 68px 0; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .site-header { padding: 9px 0; }
  .header-inner { min-height: 62px; padding: 8px 8px 8px 13px; border-radius: 20px; }
  .brand { font-size: 18px; }
  .brand img { width: 39px; height: 39px; }
  .header-actions .button,
  .header-login { display: none; }
  .mobile-nav { inset: 82px 14px auto; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: clamp(2.15rem, 10vw, 3.15rem); }
  .hero-copy { font-size: 16px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-checks { align-items: flex-start; flex-direction: column; }
  .product-preview { margin-top: 32px; padding: 9px; border-radius: 21px; }
  .browser-chrome { height: 34px; padding: 0 8px; }
  .browser-chrome > div { min-width: 145px; font-size: 9px; }
  .preview-stage { margin-top: 8px; border-radius: 14px; }
  .zoom-hint { display: none; }
  .benefit-grid, .steps-grid, .feature-grid, .price-tables { grid-template-columns: 1fr; }
  .info-card { min-height: 0; }
  .showcase { grid-template-columns: 1fr; padding: 14px; }
  .showcase-copy { order: 2; padding: 8px 6px 12px; }
  .showcase-media { min-height: 290px; }
  .showcase h3 { font-size: 25px; }
  .feature-box { min-height: 0; }
  .plans-grid { gap: 14px; }
  .price-row { grid-template-columns: 64px 1fr; padding: 13px 16px; }
  .price-row strong { grid-column: 2; }
  .contact-card { padding: 36px 20px; }
  .contact-actions .button { width: 100%; }
  .final-cta { padding: 30px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 430px) {
  .pill { font-size: 11px; }
  .hero h1 { letter-spacing: -.045em; }
  .info-card { padding: 18px; }
  .icon-box { flex-basis: 46px; width: 46px; height: 46px; border-radius: 14px; }
  .showcase-media { min-height: 240px; }
  .plan-card { padding: 21px; }
  .plan-top { flex-direction: column; }
  .price { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Mobile simplificado: preserva integralmente a versão desktop. */
.mobile-only,
.mobile-plan-note { display: none; }

@media (max-width: 780px) {
  html { scroll-padding-top: 82px; }
  .desktop-only { display: none !important; }
  .mobile-only { display: inline !important; }
  .mobile-plan-note { display: block; }

  .section-pad { padding: 44px 0; }
  .section-heading { margin-bottom: 24px; }
  .section-heading p { display: none; }
  .section-heading h2,
  .pricing-heading h2,
  .contact-card h2,
  .final-cta h2 { font-size: 1.75rem; }
  .eyebrow { margin-bottom: 10px; }

  .site-header { padding: 7px 0; }
  .header-inner { min-height: 58px; }
  .mobile-nav { gap: 4px; padding: 13px; }
  .mobile-nav a:not(.button) { padding: 10px 12px; }

  .hero { padding-top: 38px; padding-bottom: 46px; }
  .hero .pill { display: none; }
  .hero h1 { max-width: 360px; margin-top: 0; font-size: clamp(2rem, 9.3vw, 2.7rem); line-height: 1.04; }
  .hero-copy { max-width: 340px; margin-top: 15px; font-size: 15px; line-height: 1.5; }
  .hero-actions { margin-top: 21px; gap: 10px; }
  .hero-actions .button { min-height: 49px; padding: 13px 18px; }
  .hero-demo-button { order: 1; color: #fff; background: var(--blue); box-shadow: 0 12px 25px rgba(37, 99, 235, .22); }
  .hero-plan-button { order: 2; color: var(--blue); background: #fff; border-color: rgba(37, 99, 235, .22); box-shadow: none; }
  .hero-team-button { display: none !important; }
  .hero-checks,
  .product-preview { display: none; }

  #beneficios .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  #beneficios .info-card { min-height: 125px; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 15px 10px; text-align: center; border-radius: 18px; }
  #beneficios .info-card:nth-child(4),
  #beneficios .info-card:nth-child(5) { display: none; }
  #beneficios .info-card p { display: none; }
  #beneficios .info-card h3 { margin: 0; font-size: 14px; line-height: 1.25; }
  #beneficios .icon-box { flex-basis: 42px; width: 42px; height: 42px; border-radius: 13px; }
  #beneficios .steps-wrap { display: none; }

  #funcionalidades .showcase { display: none; }
  #funcionalidades .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 0; }
  #funcionalidades .feature-box { min-height: 118px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 15px 10px; text-align: center; border-radius: 18px; }
  #funcionalidades .feature-box:nth-child(3),
  #funcionalidades .feature-box:nth-child(4),
  #funcionalidades .feature-box:nth-child(7),
  #funcionalidades .feature-box:nth-child(8) { display: none; }
  #funcionalidades .feature-box p { display: none; }
  #funcionalidades .feature-box h3 { margin: 8px 0 0; font-size: 14px; line-height: 1.25; }
  #funcionalidades .feature-box > svg { width: 27px; height: 27px; margin: 0; }

  #planos .plans-grid { gap: 12px; }
  #planos .plan-card:first-child { display: none; }
  #planos .plan-card { padding: 20px; border-radius: 22px; }
  #planos .plan-card.featured { order: -1; }
  #planos .plan-card h3 { margin-top: 15px; font-size: 21px; }
  #planos .price { margin-top: 9px; font-size: 26px; }
  #planos .plan-description { margin-top: 13px; font-size: 14px; line-height: 1.45; }
  #planos .plan-card ul { gap: 7px; margin: 15px 0 18px; }
  #planos .plan-card li { font-size: 13px; }
  #planos .plan-card li:nth-child(n+4) { display: none; }
  #planos .mobile-plan-note { margin: 14px 2px 0; color: var(--muted); font-size: 13px; line-height: 1.5; text-align: center; }
  #planos .trial-notice { margin-top: 16px; padding: 14px 15px; border-radius: 16px; }
  #planos .trial-notice p { font-size: 12px; line-height: 1.45; }
  #planos .pricing-heading,
  #planos .price-tables { display: none; }

  .contact-section { padding-top: 0; }
  .contact-card { padding: 28px 18px; border-radius: 22px; }
  .contact-card > p { margin-top: 10px; font-size: 14px; line-height: 1.5; }
  .contact-actions { margin-top: 18px; }
  .contact-actions .button-outline-light { display: none; }

  #faq .faq-item:nth-child(3),
  #faq .faq-item:nth-child(5),
  #faq .faq-item:nth-child(6) { display: none; }
  .faq-list { gap: 9px; }
  .faq-item { border-radius: 16px; }
  .faq-item summary { padding: 16px; font-size: 15px; }
  .faq-item p { padding: 0 16px 16px; font-size: 14px; line-height: 1.5; }
  .final-cta { display: none; }

  .site-footer { padding: 20px 0; }
  .footer-inner .brand { display: none; }
  .footer-inner > div { gap: 14px; }
}

@media (max-width: 430px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .hero h1 { font-size: 2.08rem; }
  #beneficios .info-card,
  #funcionalidades .feature-box { min-height: 112px; }
  #planos .plan-top { flex-direction: row; align-items: center; }
  #planos .plan-badge { max-width: 175px; }
}
