﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg-0: #050505;
  --bg-1: #0a0a0a;
  --panel: #0c0c0c;
  --panel-border: rgba(255, 255, 255, 0.06);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --blue: #1ea1ff;
  --red: #f87171;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #0b0b0b 0%, #070707 55%, #050505 100%);
  font-family: "Poppins", sans-serif;
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 20px 64px;
}

.hero-glow {
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 420px;
  background: radial-gradient(circle at top, rgba(30, 161, 255, 0.45) 0%, rgba(30, 161, 255, 0.15) 35%, rgba(5, 5, 5, 0) 70%);
  filter: blur(10px);
  opacity: 0.8;
  pointer-events: none;
}

.nav {
  width: min(1100px, 100%);
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 999px;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-title {
  font-size: 22px;
  font-weight: 600;
}

.pill {
  font-size: 13px;
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

.hero-content {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.cta.primary {
  border-radius: 10px;
  padding: 12px 16px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(30, 161, 255, 0.4), 0 0 18px rgba(30, 161, 255, 0.3);
}

.cta.secondary {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.cta-note {
  font-size: 12px;
  color: #94a3b8;
}

.hero-card {
  width: 100%;
  max-width: 400px;
  justify-self: end;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.98) 0%, rgba(9, 9, 9, 0.98) 100%);
  border-radius: 20px;
  border: 1px solid var(--panel-border);
  padding: 26px;
  box-shadow: none;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 4px;
}

.panel-logo {
  width: 48px;
  height: 48px;
  display: block;
}

.panel-title-text {
  font-size: 20px;
  font-weight: 600;
}

.automation-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-text {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.45;
}

.panel-title {
  font-size: 20px;
  font-weight: 700;
  color: #f8fafc;
}

.panel-subtitle {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

.panel-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #111111;
  border-radius: 12px;
  padding: 8px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-toggle button {
  border: none;
  background: transparent;
  color: #7c818a;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 10px;
  cursor: default;
}

.panel-toggle button.active {
  background: #1b1b1b;
  color: #e5e7eb;
}

.panel-input {
  min-height: 50px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121212;
}

.panel-lock {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.panel-lock svg {
  width: 100%;
  height: 100%;
}


.panel-primary {
  width: 100%;
  background: var(--blue);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}

.panel-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.panel-divider::before,
.panel-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
}

.panel-secondary {
  width: 100%;
  background: #0f172a;
  color: #dbeafe;
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: 12px;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}

.strip {
  background: var(--blue);
  color: #ffffff;
  overflow: hidden;
  padding: 10px 0;
}

.strip-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.strip-row {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding: 0 24px;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.strip-row span {
  display: inline-flex;
  align-items: center;
}

.strip-row span::after {
  content: "\2022";
  display: inline-block;
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.strip-row span:last-child::after {
  content: "";
  margin: 0;
}

.section {
  padding: 64px 20px;
}


.section .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section .container.split {
  gap: 24px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.section .container.split > div {
  height: 100%;
}
.section.alt {
  background: rgba(255, 255, 255, 0.02);
}

.section h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
  max-width: 720px;
  line-height: 1.6;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.problem-card {
  position: relative;
  grid-column: span 6;
  background: linear-gradient(160deg, rgba(18, 18, 18, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
  border-radius: 18px;
  padding: 18px 18px 18px 54px;
  font-size: 14px;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 161, 255, 0.45), rgba(30, 161, 255, 0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.problem-card:nth-child(1),
.problem-card:nth-child(4) {
  grid-column: span 7;
}

.problem-card:nth-child(2),
.problem-card:nth-child(3) {
  grid-column: span 5;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 161, 255, 0.45);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.5);
}

.problem-icon {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(30, 161, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 16px;
  height: 16px;
}

.highlight {
  margin-top: 12px;
  color: #c7d2fe;
  font-weight: 600;
  background: rgba(30, 161, 255, 0.08);
  border: 1px solid rgba(30, 161, 255, 0.2);
  padding: 12px 14px;
  border-radius: 12px;
}


.info-card {
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-card-left {
  background: linear-gradient(160deg, rgba(12, 18, 26, 0.95) 0%, rgba(10, 12, 16, 0.95) 100%);
  border-color: rgba(30, 161, 255, 0.2);
}

.info-card-right {
  background: linear-gradient(160deg, rgba(16, 14, 20, 0.95) 0%, rgba(10, 10, 12, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.08);
}
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}


.idea-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.idea-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #7c8ca3;
}

.idea-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.idea-card {
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  text-align: left;
}

.idea-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.idea-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.idea-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-color: rgba(30, 161, 255, 0.25);
  background: linear-gradient(160deg, rgba(12, 18, 26, 0.9) 0%, rgba(10, 12, 16, 0.9) 100%);
}

.idea-metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7ba2c7;
}

.idea-metric strong {
  font-size: 16px;
}.accent-card {
  background: rgba(30, 161, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(30, 161, 255, 0.25);
}

.accent-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(12, 12, 12, 0.7);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature .icon {
  font-size: 18px;
  color: var(--blue);
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(30, 161, 255, 0.2);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.step p {
  color: var(--muted);
  font-size: 13px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.benefit {
  background: rgba(12, 12, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 18px;
}

.benefit h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.benefit p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.spacer {
  margin-top: 24px;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.bullet-list li::before {
  content: "\2022";
  color: var(--blue);
  margin-right: 8px;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  color: #d1d5db;
}

.bullet-list.muted li {
  color: #9ca3af;
}

.bullet-list.muted li::before {
  color: var(--red);
}

.cta-section {
  padding-bottom: 72px;
}

.checkout-form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.label {
    font-size: 13px;
    color: #1ea1ff;
}

.input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #121212;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
}

.input-prefix {
  color: #6b7280;
  font-size: 13px;
  white-space: nowrap;
}

#behanceUser {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 14px;
}

#behanceUser::placeholder {
  color: #6b7280;
}

#checkoutButton {
  border: none;
  background: var(--blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

#checkoutButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hint {
  font-size: 12px;
  color: var(--muted);
}

.status {
  font-size: 12px;
  color: #93c5fd;
  min-height: 16px;
}

@media (max-width: 960px) {
  .problem-card,
  .problem-card:nth-child(1),
  .problem-card:nth-child(2),
  .problem-card:nth-child(3),
  .problem-card:nth-child(4) {
    grid-column: span 12;
  }
}

@media (max-width: 860px) {
  .hero-copy h1 {
    font-size: 28px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 44px 18px;
  }

  .section h2 {
    font-size: 22px;
  }

  .subtitle {
    font-size: 14px;
  }

  .lead {
    font-size: 13px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy h1 {
    order: 1;
  }

  .hero-copy .subtitle {
    order: 2;
  }

  .hero-card {
    order: 3;
  }

  .hero-copy .checkout-form {
    order: 4;
  }
  .hero {
    padding-top: 32px;
  }

  .input-row {
    flex-direction: column;
    align-items: stretch;
  }

  #checkoutButton {
    width: 100%;
  }

  .pill {
    margin-left: 0;
  }

  .brand {
    flex-wrap: wrap;
  }

  .hero-card {
    justify-self: start;
  }
}







/* Harmonizacao abaixo do hook */
.section {
  padding: 64px 20px;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section .container {
  gap: 18px;
  align-items: flex-start;
  text-align: left;
}

.section .container > h2 {
  letter-spacing: -0.01em;
}

.section .container > .lead {
  margin-bottom: 0;
}

.problem-grid {
  margin-top: 6px;
}

.problem-card {
  box-shadow: none;
  background: rgba(12, 12, 12, 0.85);
}

.info-card {
  background: rgba(12, 12, 12, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
}

.info-card-left {
  border-color: rgba(30, 161, 255, 0.22);
}

.info-card-right {
  border-color: rgba(255, 255, 255, 0.08);
}

.benefits {
  gap: 18px;
}

.benefit {
  background: rgba(12, 12, 12, 0.85);
  border-color: rgba(255, 255, 255, 0.06);
}

.bullet-list {
  gap: 10px;
}

.cta-section .container {
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 860px) {
  .section h2 {
    font-size: 24px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 44px 18px;
  }

  .section + .section {
    border-top: none;
  }

  .section .container {
    gap: 14px;
  }

  .problem-grid {
    gap: 14px;
  }

  .benefits {
    gap: 14px;
  }
}


.idea-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.idea-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #7c8ca3;
}

.idea-grid {
  display: grid;
  gap: 14px;
}

.idea-tile {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
}

.idea-tile.emphasis {
  background: linear-gradient(160deg, rgba(12, 18, 26, 0.9) 0%, rgba(10, 12, 16, 0.9) 100%);
  border-color: rgba(30, 161, 255, 0.22);
}

.tile-icon {
  min-width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(30, 161, 255, 0.15);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
}

.tile-kicker {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7ba2c7;
  margin-bottom: 6px;
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.info-panel {
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.step-list {
  display: grid;
  gap: 12px;
}

.step-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.step-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(30, 161, 255, 0.2);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.benefit-card {
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(30, 161, 255, 0.15);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.compare-card {
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.compare-card-negative {
  border-color: rgba(248, 113, 113, 0.35);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(30, 161, 255, 0.12);
  border: 1px solid rgba(30, 161, 255, 0.25);
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

@media (max-width: 720px) {
  .idea-layout,
  .split-cards,
  .compare-grid {
    grid-template-columns: 1fr;
  }
}
