/* ============ Hero ============ */
.hero { padding: 100px 0 120px; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.badges { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px; }
.badge { color: var(--muted); font-size: 14px; }
.hero__signature {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 0.50em;              /* Dancing Script também é "fina", precisa de mais tamanho */
  margin-top: 6px;
  letter-spacing: 0.01em;
}
/* Browser mockup */
.browser {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: #0D0D0F; box-shadow: var(--shadow-elegant);
}
html[data-theme="light"] .browser { background: #101014; }
.browser__bar {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: #16161D; border-bottom: 1px solid #22222E;
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot--r { background: #FF5F57; } .dot--y { background: #FEBC2E; } .dot--g { background: #28C840; }
.browser__url { margin-left: auto; font-size: 11px; color: #7A7A8A; }
.browser__body { padding: 20px; background: #0D0D0F; }
.mock-nav { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid #22222E; }
.mock-logo { width: 60px; height: 14px; background: var(--accent); border-radius: 3px; }
.mock-nav-links { display: flex; gap: 10px; }
.mock-nav-links span { width: 34px; height: 8px; background: #26262E; border-radius: 2px; }
.mock-hero { padding: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.mock-line { height: 12px; background: #2A2A34; border-radius: 4px; }
.w80{width:80%}.w70{width:70%}.w60{width:60%}.w50{width:50%}.w40{width:40%}
.mock-btn { width: 100px; height: 30px; background: var(--accent); border-radius: 6px; margin-top: 8px; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-card { padding: 10px; background: #1A1A22; border: 1px solid #22222E; border-radius: 8px; display: flex; flex-direction: column; gap: 6px; }
.mock-img { height: 44px; background: #2A2A34; border-radius: 4px; }

/* ============ Stats ============ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 24px 0; }
.stat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 32px; transition: var(--transition);
}
.stat-card:hover { border-color: var(--border-strong); }
.stat__num { font-family: var(--display); font-size: clamp(48px, 6vw, 72px); font-weight: 700; margin-bottom: 12px; letter-spacing: -0.03em; }
.stat-card p { color: var(--muted); line-height: 1.5; }

.problem-quote {
  margin: 48px auto 32px; max-width: 780px; padding: 32px 40px;
  border-left: 3px solid var(--accent); background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.problem-quote p { font-size: 20px; line-height: 1.5; color: var(--text); font-style: italic; }
.problem-quote strong { color: var(--accent); font-style: normal; }

/* ============ Steps ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 40px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent); z-index: 0;
}
.step { position: relative; z-index: 1; background: var(--bg); padding-right: 12px; }
.step__num { font-family: var(--display); font-size: 48px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
.step h3 { font-size: 20px; margin-bottom: 12px; }
.step p { color: var(--muted); line-height: 1.6; }

/* ============ Features ============ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px; transition: transform .2s, border-color .2s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--accent); }
.feature__ico { font-size: 28px; margin-bottom: 16px; }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.features-cta {
  margin-top: 48px; padding: 40px; text-align: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.features-cta p { max-width: 620px; }

/* ============ Plans ============ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 36px 28px; display: flex; flex-direction: column; position: relative;
  transition: transform .2s;
}
.plan:hover { transform: translateY(-4px); }
.plan--featured { border-color: var(--accent); box-shadow: var(--shadow-plan); }
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
}
.plan__name { font-size: 22px; margin-bottom: 6px; }
.plan__desc { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.plan__price { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.plan__setup { color: var(--muted); font-size: 13px; }
.plan__monthly { font-family: var(--display); font-size: 16px; color: var(--muted); }
.plan__monthly strong { font-size: 40px; color: var(--text-strong); font-weight: 700; letter-spacing: -0.02em; }
.plan__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex-grow: 1; }
.plan__list li { color: var(--muted); font-size: 14px; padding-left: 24px; position: relative; line-height: 1.4; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.addon-note { text-align: center; margin-top: 40px; color: var(--muted); }
.link-btn { color: var(--accent); font-weight: 600; }
.link-btn:hover { color: var(--accent-hover); text-decoration: underline; }

/* ============ Templates ============ */
.templates { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.tpl {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s, border-color .25s;
}
.tpl:hover { transform: translateY(-6px); border-color: var(--accent); }
.tpl__browser { background: var(--bg, #0D0D0F); border-bottom: 1px solid var(--border); }
.tpl__browser .browser__bar { background: rgba(0,0,0,0.25); border-bottom-color: rgba(255,255,255,0.08); }
.tpl__browser--light .browser__bar { background: rgba(0,0,0,0.05); border-bottom-color: rgba(0,0,0,0.08); }
.tpl__mock { padding: 18px; background: var(--bg); min-height: 220px; display: flex; flex-direction: column; gap: 14px; }
.m-nav { display: flex; justify-content: space-between; align-items: center; }
.m-logo { width: 50px; height: 12px; background: var(--ac); border-radius: 3px; }
.m-links { display: flex; gap: 8px; }
.m-links i { display: block; width: 28px; height: 6px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.tpl__mock--light .m-links i { background: rgba(0,0,0,0.12); }
.m-hero { display: flex; flex-direction: column; gap: 8px; padding: 10px 0; }
.m-line { height: 10px; background: rgba(255,255,255,0.12); border-radius: 3px; }
.tpl__mock--light .m-line { background: rgba(0,0,0,0.10); }
.m-cta { width: 80px; height: 22px; background: var(--ac); border-radius: 4px; margin-top: 4px; }
.m-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.m-card { height: 46px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 5px; border-top: 3px solid var(--ac); }
.tpl__mock--light .m-card { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); border-top-color: var(--ac); }
.tpl__body { padding: 24px; }
.tag { display: inline-block; font-size: 12px; color: var(--muted); background: var(--mock-card); padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); margin-bottom: 12px; }
.tpl__body h3 { font-size: 22px; margin-bottom: 8px; }
.tpl__body p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.tpl__ctas { display: flex; gap: 10px; }
.tpl-cta {
  margin-top: 64px; padding: 48px; text-align: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl);
}
.tpl-cta h3 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 24px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ============ About ============ */
.about { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.about__num { font-family: var(--display); font-size: clamp(120px, 18vw, 220px); font-weight: 700; line-height: 0.9; letter-spacing: -0.05em; }
.about__left p { max-width: 260px; margin-top: 16px; line-height: 1.5; }
.about__right p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-size: 16px; }
.about__right strong { color: var(--text-strong); }
.creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cred {
  background: var(--card); border: 1px solid var(--border); padding: 10px 16px;
  border-radius: 999px; font-size: 13px; color: var(--text-strong); font-weight: 500;
}
.about__cta { margin-top: 28px; }

/* ============ Testimonials ============ */
.testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 16px; }
.testi p { font-size: 16px; line-height: 1.6; margin-bottom: 20px; }
.testi__who { font-weight: 600; font-size: 14px; }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 22px 24px; font-size: 16px; font-weight: 600; color: var(--text-strong); }
.faq__ico { font-size: 24px; color: var(--accent); transition: transform .25s; font-weight: 400; }
.faq__q[aria-expanded="true"] .faq__ico { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 24px 22px; color: var(--muted); line-height: 1.6; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero__grid, .about { grid-template-columns: 1fr; gap: 48px; }
  .templates { grid-template-columns: 1fr; }
  .stats, .steps, .features, .plans, .testis { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 768px) {
  .hero { padding: 60px 0 80px; }
  .stats, .steps, .features, .plans, .testis { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
  .tpl-cta { padding: 32px 24px; }
  .problem-quote { padding: 24px; }
  .problem-quote p { font-size: 17px; }
  .features-cta { padding: 28px 20px; }
}
