/* ── HERO SPLIT ── */
.hero {
  position: relative; z-index: 1;
  padding: 130px 6% 80px;
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.hero-content { display: flex; flex-direction: column; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border: 1px solid rgba(37,99,235,0.20); border-radius: 100px;
  font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  margin-bottom: 28px; background: rgba(37,99,235,0.06);
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800; line-height: 1.04; letter-spacing: -3px; margin-bottom: 24px;
}
.hero h1 .accent-c { color: var(--accent); }

.hero-sub {
  font-size: 17px; font-weight: 400; color: var(--muted);
  line-height: 1.8; max-width: 500px; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
}

.hv-card {
  position: relative; z-index: 1;
  background: #fff;
  border: 1px solid rgba(15,22,51,0.10);
  border-radius: 18px;
  box-shadow:
    0 32px 80px rgba(15,22,51,0.12),
    0 8px 24px rgba(15,22,51,0.07);
  padding: 22px;
  width: 296px;
  animation: hvFloat 5s ease-in-out infinite;
}
@keyframes hvFloat {
  0%, 100% { transform: rotate(2.5deg) translateY(0px); }
  50%       { transform: rotate(2.5deg) translateY(-10px); }
}

.hv-titlebar {
  display: flex; align-items: center; gap: 6px; margin-bottom: 16px;
}
.hv-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hv-app-name {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-left: 4px;
}

.hv-kpis {
  display: flex; gap: 20px; margin-bottom: 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.hv-kpi { display: flex; flex-direction: column; gap: 2px; }
.hv-kpi-lbl { font-size: 11px; color: var(--muted); }
.hv-kpi-val { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: var(--text); }
.hv-green { color: #16a34a; }

.hv-chart-area { height: 82px; margin-bottom: 14px; }
.hv-bar-wrap { display: flex; align-items: flex-end; gap: 7px; height: 100%; }
.hv-bar {
  flex: 1; height: var(--h);
  background: rgba(37,99,235,0.18);
  border-radius: 4px 4px 0 0;
}
.hv-bar-hi { background: var(--accent); }

.hv-tags { display: flex; gap: 6px; }
.hv-tag {
  padding: 3px 10px; border-radius: 100px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
}
.hv-tag-b { background: rgba(37,99,235,0.09); color: var(--accent); }
.hv-tag-g { background: rgba(22,163,74,0.09); color: #16a34a; }
.hv-tag-p { background: rgba(124,58,237,0.09); color: #7c3aed; }

/* PILLS FLUTUANTES */
.hv-pill {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  padding: 9px 15px;
  background: #fff;
  border: 1px solid rgba(15,22,51,0.10);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 8px 28px rgba(15,22,51,0.11), 0 2px 8px rgba(15,22,51,0.06);
  white-space: nowrap; z-index: 2;
}
.hv-pill-1 {
  top: 6%; right: 4%;
  color: var(--accent);
  animation: hvFloat 5s ease-in-out infinite;
  animation-delay: -1.8s;
}
.hv-pill-2 {
  bottom: 8%; left: 4%;
  color: #16a34a;
  animation: hvFloat 5s ease-in-out infinite;
  animation-delay: -3.2s;
}

/* ── STATS STRIP ── */
.stats-strip {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 36px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
  padding: 0 52px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 30px; font-weight: 800;
  color: var(--text); letter-spacing: -1px;
}
.stat-label { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.stat-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ── ABOUT — grade 2×2 ── */
.about-section {
  position: relative; z-index: 1;
  padding: 100px 6%;
  max-width: 1160px; margin: 0 auto;
}
.about-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.about-header .section-tag { justify-content: center; }
.about-header .section-tag::before { display: none; }
.about-header .section-sub { max-width: 100%; margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 32px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.about-card:hover {
  border-color: rgba(37,99,235,0.28);
  box-shadow: 0 8px 32px rgba(37,99,235,0.07);
  transform: translateY(-3px);
}
.about-card-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.about-card h4 {
  font-size: 16px; font-weight: 700; margin-bottom: 9px; color: var(--text);
}
.about-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── CONTACT ── */
.contact-section {
  position: relative; z-index: 1;
  padding: 0 6% 100px;
  max-width: 1160px; margin: 0 auto;
}
.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; font-size: 14px; color: var(--muted);
}
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px; width: 100%;
  color: var(--text); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }

/* FEEDBACK DO FORMULÁRIO */
.form-msg { font-size: 13px; padding: 10px 14px; border-radius: 8px; line-height: 1.5; display: none; }
.form-msg.success {
  display: block; color: #16a34a;
  background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.20);
}
.form-msg.error {
  display: block; color: #dc2626;
  background: rgba(220,38,38,0.07); border: 1px solid rgba(220,38,38,0.18);
}
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 0; padding-bottom: 60px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(36px, 7vw, 58px); }
  .about-section { padding: 80px 4%; }
  .contact-section { padding: 0 4% 80px; }
  .contact-card { grid-template-columns: 1fr; padding: 36px 24px; gap: 32px; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .stats-strip { padding: 28px 4%; }
  .stat-item { padding: 0 24px; }
  .stat-num { font-size: 24px; }
}
@media (max-width: 560px) {
  .stats-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-sep { display: none; }
  .stat-item { padding: 20px 16px; border: 1px solid var(--border); }
  .stat-item:nth-child(1) { border-radius: 12px 0 0 0; }
  .stat-item:nth-child(3) { border-radius: 0 12px 0 0; }
  .stat-item:nth-child(5) { border-radius: 0 0 0 12px; }
  .stat-item:nth-child(7) { border-radius: 0 0 12px 0; }
}
