/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #f97316;
  --orange-dark: #ea6a05;
  --orange-light: #fff7ed;
  --navy: #0f172a;
  --navy2: #1e293b;
  --slate: #475569;
  --slate-light: #94a3b8;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--navy2); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ── Utilities ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.4); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-white { background: #fff; color: var(--orange); }
.btn-white:hover { background: var(--orange-light); }
.section-tag { display: inline-block; background: var(--orange-light); color: var(--orange); font-weight: 700; font-size: .8rem; padding: 6px 14px; border-radius: 50px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; color: var(--slate); max-width: 580px; margin: 0 auto 48px; }
.text-center { text-align: center; }

/* ── Header ── */
header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-size: 1.5rem; font-weight: 900; color: var(--navy); }
.logo span { color: var(--orange); }
nav ul { display: flex; gap: 2px; flex-wrap: nowrap; }
nav a { padding: 7px 10px; border-radius: 8px; font-size: .84rem; font-weight: 500; color: var(--slate); transition: all .18s; white-space: nowrap; }
nav a:hover, nav a.active { background: var(--orange-light); color: var(--orange); }
.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.link-entrar { font-weight: 600; color: var(--slate); font-size: .88rem; white-space: nowrap; }
.link-entrar:hover { color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ── Hero (index) ── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%); color: #fff; padding: 100px 0 80px; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.3); color: #fdba74; font-size: .9rem; font-weight: 600; padding: 8px 18px; border-radius: 50px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p { font-size: 1.15rem; color: #cbd5e1; margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.4rem; font-weight: 800; color: #fff; }
.stat span { font-size: .85rem; color: #94a3b8; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; align-items: center; }
.phone { background: #1e293b; border: 3px solid #334155; border-radius: 40px; padding: 14px; width: 240px; box-shadow: 0 30px 80px rgba(0,0,0,.5); position: relative; }
.phone-notch { width: 80px; height: 20px; background: #0f172a; border-radius: 0 0 14px 14px; margin: 0 auto 16px; }
.phone-status { display: flex; justify-content: space-between; font-size: .7rem; color: #64748b; margin-bottom: 16px; padding: 0 4px; }
.phone-card { background: linear-gradient(135deg, var(--orange), #fb923c); border-radius: 16px; padding: 20px; color: #fff; }
.phone-card-title { font-size: .78rem; font-weight: 600; opacity: .85; margin-bottom: 8px; }
.phone-card-value { font-size: 1.8rem; font-weight: 900; margin-bottom: 4px; }
.phone-card-sub { font-size: .8rem; opacity: .8; }

/* ── Page Hero (subpages) ── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%); color: #fff; padding: 72px 0 56px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-hero .container { position: relative; }
.page-hero .section-tag { background: rgba(249,115,22,.15); color: #fdba74; border: 1px solid rgba(249,115,22,.3); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: #cbd5e1; max-width: 560px; margin: 0 auto; }

/* ── Problem Section ── */
.problem { padding: 96px 0; background: var(--bg); }
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-bottom: 48px; }
.problem-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: box-shadow .2s; }
.problem-card:hover { box-shadow: var(--shadow); }
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.problem-card p { font-size: .9rem; color: var(--slate); }
.problem-result { background: linear-gradient(135deg, #fef3c7, #fde68a); border: 1px solid #fcd34d; border-radius: var(--radius); padding: 20px 28px; text-align: center; font-weight: 600; color: #92400e; font-size: 1rem; }

/* ── Features ── */
.features { padding: 96px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.feature-card { border: 1px solid var(--border); border-radius: 16px; padding: 36px; transition: all .25s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), #fb923c); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.feature-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; color: var(--navy); }
.feature-card > p { font-size: .95rem; color: var(--slate); margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.feature-list li { font-size: .9rem; color: var(--slate); display: flex; align-items: center; gap: 8px; }
.feature-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.btn-feature { background: var(--orange-light); color: var(--orange); font-weight: 700; padding: 12px 24px; border-radius: 50px; border: none; cursor: pointer; font-size: .9rem; transition: all .2s; display: inline-block; }
.btn-feature:hover { background: var(--orange); color: #fff; }
.btn-free { background: #dcfce7; color: #16a34a; font-weight: 700; padding: 12px 24px; border-radius: 50px; border: 2px solid #86efac; cursor: pointer; font-size: .9rem; transition: all .2s; display: inline-block; }
.btn-free:hover { background: #16a34a; color: #fff; border-color: #16a34a; }

/* ── Premium Feature Card — Simulador de Custo de Frete ── */
.feature-card-premium {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #070d1a 0%, #0c1a35 55%, #0a1e42 100%);
  border: 1px solid rgba(56,189,248,.28);
  border-radius: 20px; padding: 36px;
  box-shadow: 0 0 0 1px rgba(56,189,248,.08), 0 24px 64px rgba(0,0,0,.55), 0 0 100px rgba(56,189,248,.07);
  transform: translateY(-6px);
  transition: all .3s;
}
.feature-card-premium:hover { transform: translateY(-10px); box-shadow: 0 0 0 1px rgba(56,189,248,.2), 0 32px 80px rgba(0,0,0,.6), 0 0 120px rgba(56,189,248,.14); }
.feature-card-premium::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse at 15% 25%, rgba(56,189,248,.13) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(99,102,241,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(14,165,233,.05) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(56,189,248,.025) 38px, rgba(56,189,248,.025) 39px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(56,189,248,.025) 38px, rgba(56,189,248,.025) 39px);
}
.feature-card-premium::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #38bdf8 30%, #6366f1 70%, transparent);
  border-radius: 20px 20px 0 0;
}
/* Glowing nodes decorativos */
.fc-node { position: absolute; border-radius: 50%; pointer-events: none; }
.fc-node-1 { width: 5px; height: 5px; top: 18%; right: 14%; background: rgba(56,189,248,.9); box-shadow: 0 0 8px rgba(56,189,248,1), 0 0 20px rgba(56,189,248,.5); }
.fc-node-2 { width: 3px; height: 3px; top: 42%; right: 7%;  background: rgba(99,102,241,.9); box-shadow: 0 0 6px rgba(99,102,241,1), 0 0 14px rgba(99,102,241,.5); }
.fc-node-3 { width: 4px; height: 4px; bottom: 28%; right: 22%; background: rgba(56,189,248,.7); box-shadow: 0 0 7px rgba(56,189,248,.9), 0 0 16px rgba(56,189,248,.4); }
.fc-node-4 { width: 3px; height: 3px; top: 65%; right: 40%; background: rgba(56,189,248,.6); box-shadow: 0 0 6px rgba(56,189,248,.8); }
.fc-node-5 { width: 2px; height: 2px; top: 28%; right: 32%; background: rgba(99,102,241,.7); box-shadow: 0 0 5px rgba(99,102,241,.9); }
/* Badge premium */
.premium-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(56,189,248,.12); border: 1px solid rgba(56,189,248,.35);
  color: #38bdf8; font-size: .68rem; font-weight: 800;
  padding: 4px 13px; border-radius: 20px;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.feature-card-premium .feature-icon { position: relative; z-index: 1; }
.feature-card-premium h3 { font-size: 1.28rem; font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.feature-card-premium > p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 20px; position: relative; z-index: 1; }
.feature-list-premium { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; position: relative; z-index: 1; }
.feature-list-premium li { font-size: .88rem; color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 9px; }
.feature-list-premium li::before { content: '✓'; color: #38bdf8; font-weight: 800; flex-shrink: 0; }
.btn-feature-premium {
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  color: #fff; font-weight: 700; padding: 13px 28px;
  border-radius: 50px; border: none; cursor: pointer;
  font-size: .9rem; transition: all .25s; display: inline-block;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(14,165,233,.45);
}
.btn-feature-premium:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(14,165,233,.65); }

/* ── How it Works ── */
.how { padding: 96px 0; background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 56px; }
.step { text-align: center; position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 1.4rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(249,115,22,.35); }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--slate); }
.video-cta { background: var(--navy); border-radius: 16px; padding: 48px; text-align: center; color: #fff; }
.video-cta p { color: #94a3b8; margin-top: 12px; font-size: .95rem; }
.play-btn { width: 72px; height: 72px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 1.8rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; cursor: pointer; border: none; box-shadow: 0 4px 20px rgba(249,115,22,.4); transition: transform .2s; }
.play-btn:hover { transform: scale(1.08); }

/* ── Testimonials ── */
.testimonials { padding: 96px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; }
.testi-text { font-size: 1rem; color: var(--navy2); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.testi-author strong { font-size: .95rem; display: block; }
.testi-author span { font-size: .82rem; color: var(--slate); }

/* Stats bar */
.stats-bar { background: var(--navy); color: #fff; padding: 56px 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
.stats-bar-item strong { font-size: 2.2rem; font-weight: 900; color: var(--orange); display: block; margin-bottom: 6px; }
.stats-bar-item span { font-size: .9rem; color: #94a3b8; }

/* ── Pricing ── */
.pricing { padding: 96px 0; background: var(--bg); }
.toggle-wrap { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 48px; }
.toggle-label { font-weight: 600; font-size: .95rem; color: var(--slate); cursor: pointer; }
.toggle-label.active { color: var(--navy); }
.toggle-switch { position: relative; width: 52px; height: 28px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track { position: absolute; inset: 0; background: var(--orange); border-radius: 50px; transition: .3s; }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: #fff; border-radius: 50%; transition: .3s; }
.toggle-switch input:checked ~ .toggle-thumb { left: 27px; }
.save-badge { background: #dcfce7; color: #166534; font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 720px; margin: 0 auto 40px; }
.plan-card { background: var(--white); border: 2px solid var(--border); border-radius: 20px; padding: 40px 36px; position: relative; transition: all .25s; }
.plan-card:hover { box-shadow: var(--shadow-lg); }
.plan-card.popular { border-color: var(--orange); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: .8rem; font-weight: 700; padding: 5px 18px; border-radius: 50px; white-space: nowrap; }
.plan-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.plan-price { margin-bottom: 8px; }
.plan-price strong { font-size: 2.4rem; font-weight: 900; color: var(--navy); }
.plan-price span { font-size: .95rem; color: var(--slate); }
.plan-economy { font-size: .85rem; color: #16a34a; font-weight: 600; margin-bottom: 28px; }
.plan-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-list li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--slate); }
.plan-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.plan-sub { text-align: center; font-size: .82rem; color: var(--slate); margin-top: 12px; }
.guarantee { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 32px; max-width: 480px; margin: 0 auto; }
.guarantee-icon { font-size: 2rem; flex-shrink: 0; }
.guarantee strong { display: block; font-weight: 700; margin-bottom: 4px; }
.guarantee p { font-size: .88rem; color: var(--slate); }

/* Comparison table */
.compare-wrap { overflow-x: auto; margin: 40px 0; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); min-width: 500px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: center; font-size: .93rem; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--navy); color: #fff; font-weight: 700; font-size: .9rem; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--bg); }
.check { color: var(--orange); font-size: 1.2rem; font-weight: 700; }
.dash { color: var(--slate-light); }

/* ── Blog ── */
.blog { padding: 96px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.blog-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all .25s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-img { height: 160px; background: linear-gradient(135deg, var(--navy), #1e3a5f); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 24px; }
.blog-tag { display: inline-block; font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; margin-bottom: 10px; }
.tag-leg { background: #dbeafe; color: #1d4ed8; }
.tag-dica { background: #dcfce7; color: #166534; }
.tag-gest { background: #fce7f3; color: #9d174d; }
.tag-dir { background: #fef3c7; color: #92400e; }
.tag-tec { background: #f0fdf4; color: #15803d; }
.blog-date { font-size: .8rem; color: var(--slate-light); margin-bottom: 8px; }
.blog-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.blog-card p { font-size: .87rem; color: var(--slate); margin-bottom: 16px; }
.blog-link { font-size: .87rem; font-weight: 700; color: var(--orange); }
.blog-link:hover { text-decoration: underline; }
.blog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.filter-btn { padding: 8px 18px; border-radius: 50px; font-size: .88rem; font-weight: 600; border: 2px solid var(--border); background: var(--white); color: var(--slate); cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--orange); background: var(--orange); color: #fff; }

/* ── FAQ ── */
.faq { padding: 96px 0; background: var(--bg); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s; }
.faq-q:hover { background: var(--orange-light); }
.faq-q svg { flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; padding: 0 24px; font-size: .93rem; color: var(--slate); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 22px; }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--orange) 0%, #fb923c 100%); color: #fff; padding: 80px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.cta-banner p { font-size: 1.1rem; opacity: .9; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-checks { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: .88rem; opacity: .85; }
.cta-checks span::before { content: '✓ '; font-weight: 700; }

/* ── Contact ── */
.contact-section { padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: var(--navy); }
.contact-form-card > p { font-size: .95rem; color: var(--slate); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: 10px; font-size: .95rem; font-family: inherit; transition: border-color .2s; outline: none; color: var(--navy2); background: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-section { display: flex; flex-direction: column; gap: 28px; }
.contact-info-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.contact-info-sub { font-size: .95rem; color: var(--slate); margin-bottom: 8px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--orange-light); color: var(--orange); font-size: 1.4rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-text strong { display: block; font-size: .95rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.contact-info-text span { font-size: .88rem; color: var(--slate); }
.contact-info-text a { color: var(--orange); font-weight: 600; }
.contact-info-text a:hover { text-decoration: underline; }

/* ── Footer ── */
footer { background: var(--navy); color: #94a3b8; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: .9rem; max-width: 260px; }
footer h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 16px; }
footer ul { display: flex; flex-direction: column; gap: 8px; }
footer a { font-size: .88rem; transition: color .18s; }
footer a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .82rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .link-entrar { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-buttons { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero p { margin: 0 auto 36px; }
  .phone-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 15px 24px; font-size: .95rem; min-height: 50px; }
  .btn-feature { padding: 14px 24px; min-height: 48px; }
  .btn-free { padding: 14px 24px; min-height: 48px; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .section-sub { font-size: 1rem; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  /* Premium card mobile — remove vertical offset, ajusta padding e botão */
  .feature-card-premium { transform: none; padding: 28px 22px; }
  .btn-feature-premium { width: 100%; text-align: center; padding: 14px 20px; min-height: 48px; display: block; box-sizing: border-box; }
}
@media (max-width: 375px) {
  .container { padding: 0 12px; }
  .hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .btn { padding: 14px 20px; }
  .header-inner { padding: 0 12px; }
  .plan-card { padding: 28px 20px; }
}

/* Mobile nav */
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px; flex-direction: column; gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 16px; border-radius: 8px; font-weight: 500; color: var(--slate); }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--orange-light); color: var(--orange); }
