/* ========================================
   EVO SOCIETY — Landing Page CSS
   Design System from Figma
   ======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --bg-body: #080b10;
  --bg-card: #141b24;
  --border-card: #1f2a36;
  --text-white: #ffffff;
  --text-secondary: #8b9bb4;
  --text-tertiary: #5c6e85;
  --accent-blue: #298dff;
  --accent-teal: #14b8a6;
  --accent-blue-light: #5fb9ff;
  --accent-green: #22da8a;
  --gold: #f2db9e;
  --gold-border: rgba(240, 200, 100, 0.45);

  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1240px;
  --section-padding: 0 340px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-body);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* --- Container Helper --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ========================================
   NAV
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px calc((100% - var(--max-width)) / 2);
}

.nav-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px 11px 23px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(20, 27, 36, 0.55) 0%, rgba(10, 13, 18, 0.35) 100%);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  position: relative;
  box-shadow: 0px 12px 32px -12px rgba(0, 0, 0, 0.6), 0px 2px 8px -2px rgba(0, 0, 0, 0.3);
}

.nav-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0px 1px 0px 1px rgba(255, 255, 255, 0.08), inset 0px -1px 0px 1px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.nav-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0px 0px 40px 0px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.nav-logo video {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(41, 141, 255, 0.3));
}

.nav-logo img,
.nav-logo-png {
  height: 85%;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(41, 141, 255, 0.3));
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.04);
}

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

.btn-entrar {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  padding: 11px 17px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s;
}

.btn-entrar:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-criar-conta-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  padding: 11px 17px;
  width: 150px;
  justify-content: center;
  align-self: center;
  border-radius: 10px;
  background: linear-gradient(134deg, var(--accent-blue) 0%, var(--accent-green) 76%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 4px 18px 0px rgba(41, 141, 255, 0.35), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.2);
  transition: opacity 0.2s;
}

.btn-criar-conta-nav:hover {
  opacity: 0.9;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 0 0;
  overflow: hidden;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--bg-body);
  box-shadow: 0px 30px 60px -12px rgba(0, 0, 0, 0.5), inset 0px 1px 0px 1px rgba(255, 255, 255, 0.1), inset 0px 0px 0px 2px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  padding: 25px 49px 57px;
  margin-top: 25px;
}

.hero-gradient-1 {
  position: absolute;
  top: -298px;
  left: -123px;
  width: 1486px;
  height: 897px;
  background: radial-gradient(ellipse at center, rgba(41, 141, 255, 0.15) 0%, rgba(41, 141, 255, 0.06) 40%, transparent 75%);
  filter: blur(40px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.hero-gradient-2 {
  position: absolute;
  bottom: -200px;
  left: 125px;
  width: 1238px;
  height: 748px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.18) 0%, rgba(20, 184, 166, 0.075) 50%, transparent 80%);
  filter: blur(45px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15) translate(30px, -20px);
    opacity: 1;
  }

  100% {
    transform: scale(0.92) translate(-20px, 15px);
    opacity: 0.7;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 7px 13px;
  align-self: flex-start;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-teal);
  border-radius: 3px;
  flex-shrink: 0;
}

.badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 63.6px;
  font-weight: 500;
  line-height: 1.026;
  letter-spacing: -1.5px;
  color: var(--text-white);
}

.gradient-text {
  background: linear-gradient(135deg,
      var(--accent-blue-light) 0%,
      var(--accent-green) 25%,
      var(--accent-blue-light) 50%,
      var(--accent-green) 75%,
      var(--accent-blue-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 950;
  animation: gradientFlow 6s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 26.35px;
  color: var(--text-secondary);
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  padding-top: 9px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 23px;
  border-radius: 12px;
  background: linear-gradient(130deg, var(--accent-blue) 0%, #1e6acc 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 4px 18px 0px rgba(41, 141, 255, 0.35), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: var(--font-body);
}

.btn-primary.gratis-cta {
  text-align: center;
  justify-content: center;
  background: linear-gradient(130deg, var(--accent-green) 0%, var(--accent-blue-light) 100%);
  box-shadow: 0px 4px 18px 0px rgba(34, 218, 138, 0.35);
  width: 100%;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 23px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  min-height: 520px;
  will-change: transform;
}

.hero-visual-glow {
  position: absolute;
  inset: 12% 8%;
  border-radius: 243px;
  background: radial-gradient(ellipse at center, rgba(41, 141, 255, 0.22) 0%, rgba(20, 184, 166, 0.1) 45%, transparent 75%);
  filter: blur(30px);
  pointer-events: none;
  will-change: transform;
}

.hero-img-bg {
  position: absolute;
  top: -47px;
  left: -56px;
  width: 399px;
  height: 370px;
  object-fit: cover;
  pointer-events: none;
  will-change: transform;
}

.hero-img-laptop {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}

.hero-img-ring {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 403px;
  height: 339px;
  object-fit: cover;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
}

.hero-light-dot {
  position: absolute;
  top: 8%;
  right: 23%;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--text-white);
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.15), 0px 0px 24px 6px rgba(255, 255, 255, 0.5), 0px 0px 60px 12px rgba(41, 141, 255, 0.4);
  z-index: 4;
}

/* Hero Trust */
.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 5px;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-tertiary);
}

/* ========================================
   STATS
   ======================================== */
.stats {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.stat-value {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-white);
  padding-top: 4px;
}

.stat-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-tertiary);
}

/* ========================================
   SECTION HEADERS (Shared)
   ======================================== */
.mouse-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(41, 141, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-card:hover .mouse-glow {
  opacity: 1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 500;
  line-height: 46.2px;
  letter-spacing: -1px;
  color: var(--text-white);
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24.8px;
  color: var(--text-secondary);
}

/* ========================================
   DEMO
   ======================================== */
.demo {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 0 0;
}

.demo-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0px 20px 60px -12px rgba(0, 0, 0, 0.4);
}

.demo-gradient-1 {
  position: absolute;
  top: -91px;
  left: 118px;
  width: 709px;
  height: 363px;
  background: radial-gradient(ellipse at center, rgba(41, 141, 255, 0.12) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

.demo-gradient-2 {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 591px;
  height: 318px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.1) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  animation: pulseGlow 7s ease-in-out infinite alternate-reverse;
}

.demo-inner {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 44px;
  padding: 41px;
  position: relative;
  z-index: 1;
}

.demo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.demo-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.5px;
  color: var(--text-white);
  margin-top: 13px;
}

.demo-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-secondary);
  margin-top: 13px;
}

.demo-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.demo-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

.demo-number {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(41, 141, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #2377DB;
  flex-shrink: 0;
}

.demo-screenshot-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0px 12px 40px -8px rgba(0, 0, 0, 0.6);
  align-self: center;
}

.demo-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   FERRAMENTAS
   ======================================== */
.ferramentas {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 28px 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 29px 25px 27px;
  display: flex;
  flex-direction: column;
  gap: 7.5px;
  position: relative;
  overflow: hidden;
}

.tool-badge {
  position: absolute;
  top: 18px;
  right: 19px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.26px;
  text-transform: uppercase;
}

.badge-teal {
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: var(--accent-teal);
}

.badge-default {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-tertiary);
}

.badge-blue {
  background: rgba(41, 141, 255, 0.08);
  border: 1px solid rgba(41, 141, 255, 0.3);
  color: var(--accent-blue);
}

.tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid rgba(41, 141, 255, 0.4);
  background: linear-gradient(135deg, rgba(41, 141, 255, 0.18) 0%, rgba(20, 184, 166, 0.08) 100%);
  box-shadow: 0px 4px 16px 0px rgba(41, 141, 255, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text-white);
  padding-top: 10.5px;
}

.tool-desc {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 20.93px;
  color: var(--text-secondary);
}

.tool-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue);
  padding-top: 8.5px;
  transition: opacity 0.2s;
}

.tool-link:hover {
  opacity: 0.8;
}

/* ========================================
   COMO FUNCIONA
   ======================================== */
.como-funciona {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 0 0;
}

.steps-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  overflow: hidden;
  margin-top: 36px;
  padding: 57px 45px;
}

.steps-gradient-1 {
  position: absolute;
  left: -118px;
  bottom: 0;
  width: 709px;
  height: 239px;
  background: radial-gradient(ellipse at center, rgba(41, 141, 255, 0.1) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  animation: pulseGlow 7s ease-in-out infinite alternate;
}

.steps-gradient-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 709px;
  height: 239px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.08) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  animation: pulseGlow 9s ease-in-out infinite alternate-reverse;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-item {
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  padding: 33px 23px 27px;
}

.step-number {
  position: absolute;
  top: -13px;
  left: 21px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #2789F9;
  border: 1px solid var(--border-card);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
}

.step-icon-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text-white);
  margin-top: 4px;
}

.step-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ========================================
   SOCIETY
   ======================================== */
.society {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 28px 0;
}

.society-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  overflow: hidden;
  padding: 57px;
}

.society-gradient {
  position: absolute;
  top: -127px;
  right: 0;
  width: 827px;
  height: 508px;
  background: radial-gradient(ellipse at center, rgba(41, 141, 255, 0.1) 0%, rgba(20, 184, 166, 0.06) 40%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  animation: pulseGlow 9s ease-in-out infinite alternate-reverse;
}

.society-inner {
  display: grid;
  grid-template-columns: 507px 1fr;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.society-text {
  display: flex;
  flex-direction: column;
}

.society-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 507px;
}

.society-stats {
  display: flex;
  gap: 36px;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-top: 13px;
}

.society-stat {
  display: flex;
  flex-direction: column;
}

.society-stat-value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text-white);
}

.society-stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-tertiary);
}

/* Society Grid (Avatars/Icons) */
.society-grid {
  display: grid;
  grid-template-columns: repeat(4, 119.25px);
  grid-template-rows: repeat(2, 119.25px);
  gap: 10px;
  align-self: center;
}

.society-grid-item {
  border-radius: 16px;
  border: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.society-grid-item::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 11px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(41, 141, 255, 0.2) 0%, rgba(20, 184, 166, 0.1) 100%);
  border: 1px solid rgba(41, 141, 255, 0.3);
}

.society-grid-item::after {
  content: '';
  position: absolute;
  bottom: 9px;
  left: 9px;
  right: 19px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
}

/* ========================================
   GRÁTIS
   ======================================== */
.gratis {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 28px 0;
}

.gratis-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0px 20px 60px -12px rgba(0, 0, 0, 0.4);
}

.gratis-gradient-1 {
  position: absolute;
  top: -100px;
  left: -80px;
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(41, 141, 255, 0.12) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.gratis-gradient-2 {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 600px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.1) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}

.gratis-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
  min-height: 520px;
}

.gratis-image-wrap {
  overflow: hidden;
  border-right: 1px solid var(--border-card);
  position: relative;
}

.gratis-img-parallax {
  will-change: transform;
  height: 100%;
  position: relative;
  top: 0;
}

.gratis-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}

.gratis-content {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
}

.gratis-plan-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 218, 138, 0.08);
  border: 1px solid rgba(34, 218, 138, 0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 22px;
}

.gratis-plan-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34, 218, 138, 0.6);
}

.gratis-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-white);
}

.gratis-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 460px;
}

.gratis-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border-card);
}

.gratis-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gratis-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(41, 141, 255, 0.3);
  background: linear-gradient(135deg, rgba(41, 141, 255, 0.14) 0%, rgba(20, 184, 166, 0.06) 100%);
  box-shadow: 0px 4px 12px 0px rgba(41, 141, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gratis-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.gratis-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: -0.1px;
}

.gratis-feature-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-tertiary);
  line-height: 18px;
}

.gratis-cta {
  margin-top: 36px;
  align-self: flex-start;
}

@media (max-width: 1100px) {
  .gratis-inner {
    grid-template-columns: 1fr;
  }

  .gratis-image-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border-card);
    min-height: 280px;
  }

  .gratis-img-parallax {
    height: 100%;
    top: 0;
  }

  .gratis-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .gratis-content {
    padding: 32px 24px;
  }

  .gratis-title {
    font-size: 26px;
  }
}

/* ========================================
   PLANOS
   ======================================== */
.planos {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 28px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 33px 29px 29px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card-pro {
  background: transparent;
  border: 1px solid rgba(130, 200, 240, 0.5);
  box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.4),
    inset 0px 0px 0px 2px rgba(255, 255, 255, 0.04),
    inset 2px 2px 4px 1px rgba(79, 172, 223, 0.2),
    inset -2px -2px 8px 1px rgba(240, 200, 100, 0.12);
  overflow: hidden;
  backdrop-filter: blur(9px);
  animation: cardPulse 5s ease-in-out infinite alternate;
}

@keyframes cardPulse {
  0% {
    border-color: rgba(130, 200, 240, 0.4);
    box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.4);
  }

  100% {
    border-color: rgba(130, 200, 240, 0.8);
    box-shadow: 0px 20px 60px 0px rgba(41, 141, 255, 0.15);
  }
}

.pricing-card-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79, 172, 223, 0.12) 0%, rgba(200, 140, 40, 0.08) 100%);
  pointer-events: none;
}

.pricing-card-pro::after {
  content: '';
  position: absolute;
  top: -96px;
  left: -291px;
  width: 585px;
  height: 928px;
  background: linear-gradient(90deg, rgba(79, 172, 223, 0) 0%, rgba(79, 172, 223, 0.15) 35%, rgba(250, 220, 150, 0.28) 65%, rgba(250, 220, 150, 0) 100%);
  transform: rotate(-20deg);
  mix-blend-mode: plus-lighter;
  pointer-events: none;
  animation: proShimmer 3.5s linear infinite;
}

@keyframes proShimmer {
  0% {
    transform: rotate(-20deg) translateX(-100%);
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(-20deg) translateX(200%);
    opacity: 0.5;
  }
}

.pro-badge {
  position: absolute;
  top: 21px;
  right: 20px;
  padding: 5px 9px 7px;
  border-radius: 4px;
  background: linear-gradient(133deg, rgba(230, 180, 70, 0.18) 0%, rgba(200, 140, 40, 0.04) 100%);
  border: 1px solid var(--gold-border);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 2px 0px rgba(240, 200, 100, 0.18);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}

.pricing-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text-white);
  position: relative;
  z-index: 2;
}

.pricing-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 14px;
  padding-bottom: 22px;
  position: relative;
  z-index: 2;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 0 4px;
  letter-spacing: -1.5px;
  position: relative;
  z-index: 2;
}

.price-currency {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
}

.price-value {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-white);
}

.price-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 17px;
  margin-top: 12px;
  border-top: 1px solid var(--border-card);
  position: relative;
  z-index: 2;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-features li svg {
  flex-shrink: 0;
}

.pricing-btn {
  margin-top: auto;
  padding-top: 14px;
  width: 100%;
  justify-content: center;
  height: 10%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 23px;
  border-radius: 12px;
  background: linear-gradient(90deg,
      var(--accent-blue) 0%,
      var(--accent-teal) 25%,
      var(--accent-blue) 50%,
      var(--accent-teal) 75%,
      var(--accent-blue) 100%);
  background-size: 200% auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 6px 24px 0px rgba(41, 141, 255, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.25);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-white);
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: var(--font-body);
  animation: btnGradient 8s linear infinite;
}

@keyframes btnGradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.btn-pro:hover {
  opacity: 0.9;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 0 0;
}

.faq-list {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-white);
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 21px;
}

.faq-answer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-secondary);
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 28px 0;
}

.cta-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  overflow: hidden;
  padding: 72px 49px;
  text-align: center;
}

.cta-gradient {
  position: absolute;
  top: -126px;
  left: -117px;
  width: 1418px;
  height: 373px;
  background: radial-gradient(ellipse at center, rgba(41, 141, 255, 0.12) 0%, rgba(20, 184, 166, 0.06) 40%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.cta-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.cta-input {
  width: 388px;
  padding: 14px 17px;
  border-radius: 12px;
  border: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.cta-input::placeholder {
  color: var(--text-tertiary);
}

.cta-input:focus {
  border-color: rgba(41, 141, 255, 0.5);
}

.cta-btn {
  border: none;
}

/* ========================================
   BTN CRIAR CONTA (CTA FINAL)
   ======================================== */

@keyframes btn-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes btn-glow-pulse {
  0%, 100% { box-shadow: 0 0 10px 2px rgba(34, 218, 138, 0.2), 0 4px 16px rgba(41, 141, 255, 0.15); }
  50%       { box-shadow: 0 0 18px 4px rgba(34, 218, 138, 0.32), 0 6px 22px rgba(41, 141, 255, 0.22); }
}

@keyframes btn-arrow-slide {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.btn-criar-conta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(130deg, #22da8a, #298dff, #5fb9ff, #22da8a);
  background-size: 300% 300%;
  animation:
    btn-gradient-shift 4s ease infinite,
    btn-glow-pulse 3s ease-in-out infinite;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
  font-family: var(--font-body);
}

.btn-criar-conta:hover {
  transform: scale(1.06);
}

.btn-criar-conta:active {
  transform: scale(0.97);
}

/* Shimmer sweep */
.btn-criar-conta__shimmer {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,0.35) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.55s ease;
  pointer-events: none;
}

.btn-criar-conta:hover .btn-criar-conta__shimmer {
  background-position: 200% 0;
}

/* Content layer */
.btn-criar-conta__content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-criar-conta__icon-left {
  flex-shrink: 0;
  opacity: 0.92;
}

.btn-criar-conta__arrow {
  flex-shrink: 0;
  animation: btn-arrow-slide 1.8s ease-in-out infinite;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  max-width: 1920px;
  margin: 100px auto 0;
  border-top: 1px solid var(--border-card);
  padding: 57px calc((100% - var(--max-width)) / 2);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

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

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 274px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 29px;
  margin-top: 40px;
  border-top: 1px solid var(--border-card);
}

.footer-bottom span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-tertiary);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 11, 16, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 48px;
  padding: 80px 32px 48px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.mobile-nav-link {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-secondary);
  letter-spacing: -0.5px;
  padding: 12px 24px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1300px) {
  .nav {
    padding: 14px 20px;
  }

  .hero,
  .stats,
  .demo,
  .como-funciona,
  .faq {
    padding-left: 28px;
    padding-right: 28px;
  }

  .footer {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1.1;
  }

  .nav-links {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .society-inner {
    grid-template-columns: 1fr;
  }

  .society-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .demo-inner {
    grid-template-columns: 1fr;
  }

  .gratis-inner {
    grid-template-columns: 1fr;
  }

  .gratis-image-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border-card);
    min-height: 300px;
  }

  .gratis-img-parallax {
    height: 100%;
    top: 0;
  }

  .gratis-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {

  /* --- Nav --- */
  .nav {
    padding: 10px 16px;
  }

  .nav-bar {
    padding: 9px 12px 9px 16px;
    border-radius: 14px;
  }

  .nav-right .btn-entrar {
    display: none;
  }

  .nav-right .btn-criar-conta-nav {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  /* --- Global section spacing --- */
  .demo,
  .ferramentas,
  .como-funciona,
  .gratis,
  .planos,
  .cta-final,
  .faq {
    padding-top: 64px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .stats {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stats {
    padding-top: 20px;
  }

  .section-header {
    gap: 10px;
  }

  .section-title {
    font-size: 28px;
    line-height: 33px;
  }

  .section-subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  /* --- Hero --- */
  .hero {
    padding-top: 80px;
  }

  .hero-card {
    padding: 22px 20px 36px;
    border-radius: 18px;
  }

  .hero-content {
    padding-top: 20px;
    gap: 24px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 23px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  .hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  /* --- Stats --- */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-value {
    font-size: 22px;
  }

  .stat-sub {
    font-size: 10px;
  }

  /* --- Demo --- */
  .demo-card {
    border-radius: 14px;
    margin-top: 28px;
  }

  .demo-inner {
    padding: 24px 20px;
    gap: 24px;
  }

  .demo-title {
    font-size: 20px;
    line-height: 27px;
    margin-top: 8px;
  }

  .demo-description {
    font-size: 13px;
    margin-top: 10px;
  }

  .demo-video-placeholder {
    min-height: 200px;
    border-radius: 10px;
  }

  .demo-list {
    margin-top: 16px;
    gap: 6px;
  }

  /* --- Ferramentas --- */
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .tool-card {
    padding: 22px 20px 20px;
  }

  /* --- Como funciona --- */
  .steps-card {
    padding: 36px 20px;
    border-radius: 14px;
    margin-top: 28px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step-item {
    padding: 28px 20px 22px;
  }

  /* --- Grátis --- */
  .gratis-card {
    border-radius: 14px;
    margin-top: 28px;
  }

  .gratis-image-wrap {
    min-height: 220px;
  }

  .gratis-content {
    padding: 26px 20px 32px;
  }

  .gratis-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .gratis-desc {
    font-size: 13px;
    margin-top: 12px;
  }

  .gratis-features {
    gap: 14px;
    margin-top: 22px;
    padding-top: 22px;
  }

  .gratis-feature-title {
    font-size: 13px;
  }

  .btn-primary.gratis-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 24px;
  }

  /* --- Planos --- */
  .pricing-grid {
    max-width: 100%;
    gap: 12px;
    margin-top: 32px;
  }

  .pricing-card {
    padding: 26px 20px 22px;
    border-radius: 14px;
  }

  .price-value {
    font-size: 36px;
  }

  /* --- FAQ --- */
  .faq-list {
    margin-top: 28px;
  }

  .faq-item summary {
    font-size: 14px;
    padding: 16px 16px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }

  /* --- CTA --- */
  .cta-card {
    padding: 44px 22px;
    border-radius: 14px;
  }

  .cta-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cta-input {
    width: 100%;
  }

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

  /* --- Footer --- */
  .footer {
    margin-top: 64px;
    padding: 40px 16px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .section-title {
    font-size: 24px;
    line-height: 30px;
  }

  .gratis-title {
    font-size: 22px;
  }

  .nav-logo video {
    height: 38px;
  }

  .nav-logo-png {
    height: 38px;
  }

  /* Hero badge — evita overflow horizontal em telas estreitas */
  .hero-badge {
    max-width: 100%;
    overflow: hidden;
  }

  .badge-text {
    font-size: 9px;
    letter-spacing: 1.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* CTA button — evita extravazar em telas de 320px */
  .btn-criar-conta__content {
    padding: 14px 20px;
    font-size: 14px;
    gap: 8px;
  }
}