:root {
  /* Tons quentes, neutros */
  --bg: #FAFAF7;
  --bg-elevated: #FFFFFF;
  --bg-soft: #F4F2EC;
  --bg-warm: #F7F5EF;

  /* Texto */
  --ink: #1A1614;
  --ink-2: #3D3833;
  --ink-3: #6B645C;
  --ink-4: #9A9289;
  --ink-5: #C8C2B8;

  /* Bordas */
  --line: #E8E3D9;
  --line-soft: #EFEAE0;

  /* Marca — extraídas do logo oficial */
  --purple: #7010B0;
  --purple-deep: #5A0D8F;
  --purple-darker: #45086E;
  --purple-soft: #EAD7F5;
  --purple-tint: #F5EBFA;

  /* Acentos */
  --green: #50D080;
  --green-deep: #3DB868;
  --green-soft: #DBF5E5;
  --green-tint: #ECFAF1;
  --red: #DC2626;
  --orange: #EA580C;
  --orange-soft: #FFEDD5;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(26, 22, 20, 0.04), 0 1px 1px rgba(26, 22, 20, 0.03);
  --shadow-md: 0 4px 12px -2px rgba(26, 22, 20, 0.06), 0 2px 4px -1px rgba(26, 22, 20, 0.04);
  --shadow-lg: 0 20px 40px -12px rgba(26, 22, 20, 0.12), 0 8px 16px -4px rgba(26, 22, 20, 0.06);
  --shadow-xl: 0 32px 64px -16px rgba(76, 29, 149, 0.18), 0 12px 24px -8px rgba(26, 22, 20, 0.08);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-3xl: 36px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* === Containers === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.2s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 20px -8px rgba(112, 16, 176, 0.45);
}
.btn-primary:hover { background: var(--purple-deep); box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 12px 24px -8px rgba(112, 16, 176, 0.55); }

.btn-purple {
  background: var(--purple);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 24px -8px rgba(112, 16, 176, 0.5);
}
.btn-purple:hover { background: var(--purple-deep); }

.btn-dark {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, var(--shadow-md);
}
.btn-dark:hover { background: #000; box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, var(--shadow-lg); }

.btn-green {
  background: var(--green);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 20px -8px rgba(80, 208, 128, 0.55);
}
.btn-green:hover { background: var(--green-deep); }

.btn-ghost {
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--bg-soft); }

.btn-outline {
  color: var(--ink);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}
.btn-outline:hover { background: var(--bg-soft); border-color: var(--ink-5); }

.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 17px 28px; font-size: 16px; }

/* === Type === */
h1, h2, h3, h4 {
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); }

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

.mono {
  font-family: 'Geist Mono', monospace;
  font-feature-settings: 'tnum';
}

/* === Sections === */
section {
  padding: 96px 0;
}
@media (max-width: 720px) {
  section { padding: 72px 0; }
}

.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-header h2 {
  font-size: 44px;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (max-width: 720px) {
  .section-header h2 { font-size: 32px; }
}
.section-header p {
  font-size: 18px;
  color: var(--ink-3);
  text-wrap: pretty;
}

/* === Logo === */
.logo-text {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
}
.logo-text .e { color: var(--ink); }
.logo-text .me { color: var(--green); }

/* === Card === */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  border-color: var(--ink-5);
  box-shadow: var(--shadow-md);
}

/* Hide scrollbars on app mockups */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease-out both; }

@keyframes pulseSoft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.85); opacity: 0.7; }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 4px;
}

/* === Pricing === */
.pricing-section {
  padding-top: 88px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 50% 0%, rgba(112, 16, 176, 0.08), transparent 36%),
    var(--bg);
}

.pricing-header {
  max-width: 820px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.pricing-card-featured {
  border-color: rgba(112, 16, 176, 0.36);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.pricing-card-trial {
  background:
    linear-gradient(180deg, rgba(236, 250, 241, 0.88) 0%, rgba(255, 255, 255, 0.96) 52%),
    var(--bg-elevated);
  border-color: rgba(80, 208, 128, 0.35);
}

.pricing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.pricing-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.pricing-period {
  margin-top: 3px;
  color: var(--ink-3);
  font-size: 15px;
}

.pricing-text {
  margin-bottom: 22px;
  color: var(--ink-3);
  font-size: 15.5px;
  line-height: 1.58;
}

.pricing-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(80, 208, 128, 0.34);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
}

.pricing-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
}

.pricing-icon-green {
  background: var(--green);
  box-shadow: 0 10px 20px -10px rgba(80, 208, 128, 0.75);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 26px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--purple);
  color: white;
  box-shadow: 0 10px 20px -12px rgba(112, 16, 176, 0.75);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 2px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.4;
}

.pricing-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.pricing-button {
  width: 100%;
  margin-top: auto;
}

.pricing-microcopy {
  margin-top: 14px;
  color: var(--ink-4);
  font-size: 12.5px;
  line-height: 1.45;
}

.pricing-note {
  max-width: 900px;
  margin: 26px auto 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.55;
  text-align: center;
}

.pricing-note strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .pricing-section {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-note {
    text-align: left;
  }
}
