/* ============================================================
   MeuSuperApp — Consultoria em Transformação Digital
   Dark / neon-green landing page styles
   ============================================================ */

:root {
  --bg: #080b0d;
  --surface: #12171a;
  --surface-2: #171d22;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --green: #22e6a6;
  --green-dark: #14b98a;
  --green-glow: rgba(34, 230, 166, 0.45);
  --green-soft: rgba(34, 230, 166, 0.1);

  --text: #f5f7f8;
  --muted: #9aa7ad;
  --dim: #6b7680;

  --max-width: 1180px;
  --radius: 16px;
}

/* ---- Resets / base ---- */
html {
  scroll-behavior: smooth;
}

body,
.container-fluid {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img, svg {
  display: block;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 96px 0;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-heading {
  font-size: 2.1rem;
  max-width: 720px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 48px;
}

.glow-text {
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
}

.text-green {
  color: var(--green);
}

/* ---- Grid background pattern ---- */
.grid-bg {
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  background-position: center;
}

/* ---- Top glow line ---- */
.top-glow-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 300;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.8;
}

/* ---- Pill badge ---- */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 230, 166, 0.35);
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #04140f;
  box-shadow: 0 8px 26px var(--green-glow);
}

.btn-primary:hover {
  background: #3ffcc0;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--green);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.brand-name .accent {
  color: var(--green);
}

.brand-tag {
  font-size: 0.68rem;
  color: var(--dim);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a.nav-item {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a.nav-item:hover {
  color: var(--text);
}

.nav-links a.nav-item.active {
  color: var(--text);
  border-color: rgba(34, 230, 166, 0.4);
  background: var(--green-soft);
  box-shadow: 0 0 16px rgba(34, 230, 166, 0.25);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-cta {
  padding: 11px 20px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

/* ---- Hero ---- */
.hero {
  padding: 20px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 20%, rgba(34, 230, 166, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.hero h1 .line-2 {
  display: block;
  color: var(--muted);
}

.hero p.subtitle {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 620px;
  margin: 26px auto 36px;
}

.hero .btn-row {
  justify-content: center;
}

/* ---- Problema (checklist) ---- */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.97rem;
  color: var(--text);
}

.check-item .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green);
}

.closing-note {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 720px;
}

/* ---- O que fazemos ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.split p:last-child {
  margin-bottom: 0;
}

.split-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.split-card h3 {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.split-card h3 .icon-inline {
  color: var(--green);
  margin-right: 8px;
}

.split-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-card-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

/* ---- Bento / feature cards (Como funciona, Soluções) ---- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 230, 166, 0.35);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.bento-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
}

.bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.bento-icon svg {
  width: 22px;
  height: 22px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #04140f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  margin-bottom: 18px;
}

.bento-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  padding-right: 60px;
}

.bento-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---- Quem atendemos (pills) ---- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.pill:hover {
  border-color: rgba(34, 230, 166, 0.4);
}

/* ---- Diferenciais (checklist card) ---- */
.diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text);
}

.diff-item .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green);
}

/* ---- Forma de trabalhar (quote) ---- */
.quote-section {
  text-align: center;
}

.quote-section .wrap {
  max-width: 760px;
}

.quote-section h2 {
  font-size: 1.9rem;
  margin-bottom: 22px;
}

.quote-section p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

/* ---- CTA final ---- */
.cta-section {
  padding: 40px 0 100px;
}

.cta-card {
  background: linear-gradient(160deg, var(--surface), #0c2420);
  border: 1px solid rgba(34, 230, 166, 0.25);
  border-radius: 24px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 230, 166, 0.25), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-copy h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  max-width: 480px;
}

.cta-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 440px;
}

.cta-actions {
  flex-shrink: 0;
}

.cta-note {
  color: var(--dim);
  font-size: 0.82rem;
  margin-top: 12px;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-col .icon {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: var(--dim);
  font-size: 0.82rem;
  text-align: center;
}

/* ---- Floating WhatsApp button with rotating light ring ---- */
.wa-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 66px;
  height: 66px;
}

.wa-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--green) 35deg,
    transparent 110deg,
    transparent 360deg
  );
  animation: wa-spin 2.4s linear infinite;
}

.wa-float {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(34, 230, 166, 0.55);
  z-index: 1;
  color: #04140f;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@keyframes wa-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .split,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .check-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cta-card {
    padding: 36px 28px;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 18px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-row {
    flex-direction: column;
  }
}
