/* ══════════════════════════════════════════════════════
   PEDIDO WEB — Brand Refresh
   Palette: #E53935 · #1C1C22 · #FFEDEF · #FFFFFF
   Type: Inter (titles/subtitles) · Dark Regular (body)
   Aesthetic: Editorial food-tech with soft warmth
══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand */
  --red: #E53935;
  --red-dark: #C62828;
  --red-soft: #FFEDEF;
  --red-dim: rgba(229, 57, 53, 0.08);
  --charcoal: #1C1C22;
  --charcoal-2: #2A2A34;
  --charcoal-3: #4A4A58;

  /* Surfaces */
  --bg: #FFFFFF;
  --bg-2: #F7DDE1;
  --bg-white: #FFFFFF;

  /* Text */
  --ink: #1C1C22;
  --ink-2: #30303B;
  --ink-3: #5B5B6A;

  /* Borders */
  --border: rgba(28, 28, 34, 0.12);
  --border-accent: rgba(229, 57, 53, 0.20);

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(28, 28, 34, 0.08);
  --shadow-md: 0 10px 32px rgba(28, 28, 34, 0.12);
  --shadow-lg: 0 22px 64px rgba(28, 28, 34, 0.16);
  --shadow-red: 0 10px 30px rgba(229, 57, 53, 0.28);

  /* Typography */
  --title-font: 'Poppins', sans-serif;
  --body-font: 'Poppins', 'Inter', sans-serif;
}

/* ─── BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

::selection {
  background: var(--red);
  color: #fff;
}

body {
  font-family: var(--body-font);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg-2);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
}

/* ─── CURSOR ─── */
.cursor {
  position: fixed;
  z-index: 9000;
  pointer-events: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}

.cursor-trail {
  position: fixed;
  z-index: 8999;
  pointer-events: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(229, 57, 53, .4);
  transform: translate(-50%, -50%);
  transition: width .28s, height .28s, border-color .28s;
}

body.cursor-hover .cursor {
  width: 16px;
  height: 16px;
  background: var(--red);
}

body.cursor-hover .cursor-trail {
  width: 52px;
  height: 52px;
  border-color: rgba(229, 57, 53, .6);
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 90px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  gap: 20px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--charcoal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  background: transparent;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
}

.logo:empty {
  display: none;
}

.logo em {
  color: var(--red);
  font-style: normal;
}

.nav-branding {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  flex: 1;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  height: auto;
}

.nav-logo img {
  height: 70px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1;
  margin-left: 12px;
}

.nav-badge {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.5px;
  line-height: 1.3;
  max-width: 150px;
}

nav > .nav-entrar {
  align-self: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: space-around;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 8px 4px;
}

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

.nav-center {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav-cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--red);
  padding: 16px 26px;
  border-radius: 4px;
  box-shadow: var(--shadow-red);
  transition: background .2s, transform .15s, box-shadow .2s;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(229, 57, 53, .38);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  min-height: 100vh;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr;
}

/* Bold diagonal accent — brand energy */
.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;

  /*
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(229, 57, 53, .08) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 10% 80%, rgba(28, 28, 34, .06) 0%, transparent 55%),
    url('public/assets/BrandBoard.png') center/cover no-repeat;

  mix-blend-mode: multiply;
  opacity: .35;

*/
}


/* Diagonal stripe — visual energy */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-lines::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(-48deg,
      transparent 0, transparent 100px,
      rgba(229, 57, 53, .025) 100px, rgba(229, 57, 53, .025) 101px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: calc(100vh - 90px);
}

/* Left */
.hero-left {
  padding: 80px 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
}

.hero-tagline {
  display: inline-block;
  font-family: var(--title-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  animation: riseIn .5s ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  animation: riseIn .6s .1s ease both;
}

.hero-kicker-line {
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
  border-radius: 2px;
}

.hero-h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -2.5px;
  color: var(--charcoal);
  animation: riseIn .7s .18s ease both;
}

.hero-h1 .ital {
  color: var(--red);
  display: block;
  font-style: italic;
}

.hero-h1 .outline {
  -webkit-text-stroke: 2.5px var(--charcoal);
  color: transparent;
  display: block;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 480px;
  font-weight: 400;
  animation: riseIn .6s .3s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: riseIn .6s .42s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 4px;
  box-shadow: var(--shadow-red);
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(229, 57, 53, .4);
}

.btn-primary .icon {
  transition: transform .2s;
}

.btn-primary:hover .icon {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  border: 2px solid var(--border);
  transition: border-color .2s, color .2s;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Right stats panel */
.hero-right {
  display: flex;
  flex-direction: column;
  animation: riseIn .7s .28s ease both;
  background: var(--bg-white);
}

.hero-stat {
  flex: 1;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}

.hero-stat:last-of-type {
  border-bottom: none;
}

.hero-stat:hover {
  background: var(--red-soft);
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s ease;
}

.hero-stat:hover::before {
  transform: scaleY(1);
}

.stat-value {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--red);
  letter-spacing: -1px;
}

.stat-desc {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

.hero-live {
  padding: 20px 36px;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 255, 255, .6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 255, 255, .7)
  }

  50% {
    opacity: .3;
    box-shadow: none
  }
}

/* ══════════════════════════════
   SHARED UTILS
══════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.display-title {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -1.5px;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.display-title-tight {
  margin-bottom: 0;
}

.display-title-sm {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
}

.display-title em {
  color: var(--red);
  font-style: italic;
}

.display-title .ghost {
  -webkit-text-stroke: 1.5px rgba(33, 33, 33, .18);
  color: transparent;
}

.body-text {
  font-size: 0.97rem;
  color: var(--ink-2);
  line-height: 1.78;
  font-weight: 400;
}

/* ══════════════════════════════
   PROBLEMA
══════════════════════════════ */
#problema {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problema-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
}

.problema-main {
  padding: 96px 64px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.ghost-bg {
  position: absolute;
  bottom: -48px;
  right: -16px;
  font-size: clamp(90px, 16vw, 220px);
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(229, 57, 53, .06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.problema-intro {
  max-width: 620px;
  margin-bottom: 44px;
}

.problema-intro p {
  font-size: 0.97rem;
  color: var(--ink-2);
  line-height: 1.78;
  font-weight: 400;
  margin-bottom: 16px;
}

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

.problema-pull {
  margin: 36px 0;
  padding: 24px 36px;
  border-left: 4px solid var(--red);
  background: var(--red-dim);
  border-radius: 0 4px 4px 0;
}

.problema-pull p {
  font-size: clamp(.95rem, 1.6vw, 1.25rem);
  font-style: italic;
  font-weight: 600;
  color: var(--red-dark);
  line-height: 1.5;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pain-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 16px;
  border: 1px solid rgba(229, 57, 53, .1);
  background: rgba(229, 57, 53, .03);
  border-radius: 3px;
  font-size: 0.88rem;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.45;
  transition: background .2s, border-color .2s;
}

.pain-item:hover {
  background: rgba(229, 57, 53, .07);
  border-color: rgba(229, 57, 53, .22);
}

.pain-x {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  margin-top: 1px;
}

.problema-aside {
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
}

.aside-block {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.aside-block:last-child {
  border-bottom: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.aside-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.aside-big {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.aside-body {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.72;
  font-weight: 400;
  margin-top: 8px;
}

.aside-quote-box {
  padding: 22px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 3px;
}

.aside-quote-box p {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

/* ══════════════════════════════
   SOLUÇÃO
══════════════════════════════ */
#solucao {
  border-bottom: 1px solid var(--border);
}

.solucao-wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
}

.solucao-left {
  padding: 72px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.side-label-vert {
  position: absolute;
  right: -42px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .12);
  pointer-events: none;
  white-space: nowrap;
}

.solucao-logo {
  height: 34px;
  width: auto;
  margin: 8px 0 18px;
  opacity: .9;
}

.mockup-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  position: relative;
}

.mockup-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 57, 53, .15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mockup {
  width: 210px;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 48px rgba(229, 57, 53, .12);
  position: relative;
  z-index: 1;
}

.mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 5px;
  background: #000;
  border-radius: 3px;
  z-index: 2;
}

.m-screen {
  padding: 28px 12px 13px;
}

.m-header {
  background: var(--red);
  color: #fff;
  padding: 9px 11px;
  border-radius: 6px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.m-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  padding: 9px 10px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.m-name {
  font-size: 0.7rem;
  color: #fff;
  font-weight: 500;
}

.m-price {
  font-size: 0.7rem;
  color: #fff;
  font-weight: 700;
}

.m-note {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 3px;
  font-weight: 400;
}

.m-total {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 3px;
}

.m-total-lbl {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
}

.m-total-val {
  font-size: 0.72rem;
  color: #fff;
  font-weight: 700;
}

.m-btn {
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 7px;
}

.mockup-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  font-weight: 600;
}

.solucao-right {
  padding: 72px 56px;
}

.solucao-right .body-text {
  margin-bottom: 18px;
}

.solucao-right .body-text:last-of-type {
  margin-bottom: 40px;
}

.benefit-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-white);
  transition: border-color .25s, background .25s, box-shadow .25s;
}

.benefit-row:hover {
  border-color: var(--red);
  background: var(--red-soft);
  box-shadow: var(--shadow-sm);
}

.benefit-num {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--red);
  opacity: .45;
  line-height: 1.5;
  font-weight: 700;
}

.benefit-text {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.55;
  font-weight: 400;
}

.benefit-text strong {
  color: var(--red);
  font-weight: 700;
}

/* ══════════════════════════════
   BENEFÍCIOS
══════════════════════════════ */
#beneficios {
  border-bottom: 1px solid var(--border);
}

.beneficios-head {
  padding: 88px 64px 52px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: end;
  background: var(--bg-white);
}

.beneficios-lead {
  font-size: 0.97rem;
  color: var(--ink-2);
  line-height: 1.78;
  font-weight: 400;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-white);
}

.bento-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 178px;
  transition: background .25s;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}

.bento-cell:nth-child(4n) {
  border-right: none;
}

.bento-cell.span2 {
  grid-column: span 2;
}

.bento-cell.span-row2 {
  grid-row: span 2;
}

.bento-cell:hover {
  background: var(--red-soft);
}

.bento-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.bento-cell:hover::after {
  transform: scaleX(1);
}

.bento-icon {
  font-size: 1.3rem;
  display: block;
}

.bento-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.bento-cell.span2 .bento-title {
  font-size: 1.2rem;
}

.bento-desc {
  font-size: 0.82rem;
  color: var(--ink-3);
  line-height: 1.6;
  font-weight: 400;
}

.bento-arrow {
  position: absolute;
  bottom: 16px;
  right: 18px;
  color: var(--red);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: translate(-4px, 4px);
}

.bento-cell:hover .bento-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ══════════════════════════════
   COMO FUNCIONA
══════════════════════════════ */
#como-funciona {
  border-bottom: 1px solid var(--border);
}

.como-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
}

.como-sidebar {
  padding: 72px 36px;
  border-right: 1px solid var(--border);
  background: var(--charcoal);
  position: sticky;
  top: 68px;
  height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.como-counter {
  font-size: clamp(70px, 11vw, 128px);
  font-weight: 900;
  font-style: italic;
  color: var(--red);
  line-height: .9;
  letter-spacing: -4px;
  transition: all .35s ease;
}

.como-step-label {
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  line-height: 1.45;
  min-height: 3em;
  transition: opacity .3s ease;
}

.como-bar {
  height: 2px;
  background: rgba(255, 255, 255, .12);
  border-radius: 1px;
  overflow: hidden;
}

.como-bar-fill {
  height: 100%;
  width: 20%;
  background: var(--red);
  transition: width .5s ease;
  border-radius: 1px;
}

.steps-scroll {}

.step-card {
  padding: 60px 52px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  align-items: start;
  transition: background .25s;
  background: var(--bg-white);
}

.step-card:last-child {
  border-bottom: none;
}

.step-card:hover {
  background: var(--red-soft);
}

.step-n {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: var(--red);
  opacity: .2;
  line-height: .9;
  transition: opacity .25s;
}

.step-card:hover .step-n {
  opacity: .65;
}

.step-content h4 {
  color: var(--charcoal) !important;
}

.step-content h4 em {
  color: var(--red);
}

.step-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 11px;
  line-height: 1.2;
}

.step-body p {
  font-size: 0.93rem;
  color: var(--ink-2);
  line-height: 1.78;
  font-weight: 400;
}

/* ══════════════════════════════
   DEPOIMENTOS
══════════════════════════════ */
#depoimentos {
  border-bottom: 1px solid var(--border);
}

.dep-head {
  padding: 88px 64px 52px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.dep-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: background .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}

.dep-card:last-child {
  border-right: none;
}

.dep-card:hover {
  background: var(--red-soft);
}

.dep-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #ffffff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.dep-card:hover::before {
  transform: scaleX(1);
}

.dep-deco {
  font-size: 5rem;
  line-height: .7;
  font-weight: 900;
  color: var(--red);
  opacity: .07;
  position: absolute;
  top: 26px;
  right: 26px;
}

.dep-stars {
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 20px;
}

.dep-quote {
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 28px;
}

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

.dep-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .5px;
  flex-shrink: 0;
}

.dep-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.dep-info span {
  font-size: 0.75rem;
  color: var(--ink-3);
  font-weight: 400;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
#faq {
  border-bottom: 1px solid var(--border);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.faq-left {
  padding: 88px 64px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-white);
}

.faq-note {
  font-size: 0.93rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-3);
  line-height: 1.72;
  max-width: 340px;
  margin-top: 28px;
}

.faq-right {
  padding: 88px 64px;
  background: var(--bg-white);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  text-align: left;
  transition: all .2s;
}

.faq-btn:hover {
  color: var(--red);
}

.faq-btn:hover .faq-q-text {
  color: var(--red);
}

.faq-q-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .1px;
  color: var(--ink);
  line-height: 1.4;
  transition: color .2s;
}

.faq-item.open .faq-q-text {
  color: var(--red);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--ink-3);
  transition: transform .3s, background .2s, border-color .2s, color .2s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--red-dim);
  border-color: var(--border-accent);
  color: var(--red);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.open .faq-body {
  max-height: 160px;
}

.faq-body p {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.78;
  font-weight: 400;
}

/* ══════════════════════════════
   PLANOS
══════════════════════════════ */
#planos {
  border-bottom: 1px solid var(--border);
}

.planos-head {
  padding: 88px 64px 56px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  background: var(--bg-white);
}

.planos-head .display-title {
  margin-bottom: 0;
}

.toggle-wrap {
  display: flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px;
  gap: 4px;
  flex-shrink: 0;
}

.toggle-btn {
  padding: 9px 22px;
  border: none;
  cursor: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink-3);
  border-radius: 4px;
  transition: background .2s, color .2s, box-shadow .2s;
}

.toggle-btn.active {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.discount-badge {
  font-size: 0.6rem;
  background: rgba(229, 57, 53, .12);
  color: var(--red);
  border: 1px solid rgba(229, 57, 53, .25);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 5px;
  letter-spacing: 1px;
  font-weight: 700;
}


.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #ffffff;
  color: var(--charcoal);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(28, 28, 34, .18);
}

.plan-tier {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.plan-card.featured .plan-tier {
  color: #ffffff;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 4px;
}

.plan-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-3);
  margin-top: 10px;
}

.plan-card.featured .plan-currency {
  color: rgba(255, 255, 255, .5);
}

.plan-amount {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -2px;
  color: var(--charcoal);
}

.plan-card.featured .plan-amount {
  color: #fff;
}

.plan-period {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--ink-3);
  margin-bottom: 24px;
}

.plan-card.featured .plan-period {
  color: rgba(255, 255, 255, .45);
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}

.plan-card.featured .plan-divider {
  background: rgba(255, 255, 255, .1);
}

.plan-feats {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}

.plan-feats li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-2);
  font-weight: 400;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}

.plan-card.featured .plan-feats li {
  color: rgba(255, 255, 255, .7);
  border-bottom-color: rgba(255, 255, 255, .08);
}

.plan-feats li:last-child {
  border-bottom: none;
}

.plan-feats li::before {
  content: '✓';
  color: var(--red);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 800;
}

.plan-card.featured .plan-feats li::before {
  color: #ffffff;
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}

.plan-cta.ghost {
  border: 2px solid var(--border);
  color: var(--ink-2);
  background: transparent;
}

.plan-cta.ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.plan-cta.fill {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.plan-cta.fill:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 36px rgba(229, 57, 53, .45);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
/* ══════════════════════════════
   FOOTER NEW - DESIGN MODERNO
══════════════════════════════ */
footer.footer-new {
  background: var(--charcoal);
  color: #fff;
  padding: 80px 64px 40px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--red);
  opacity: 1;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6;
  margin-top: auto;
}

.footer-section-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .65);
  margin: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .2s;
}

.footer-contact a:hover {
  color: var(--red);
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, .15);
}

.social-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .4);
  margin: 0;
}

/* OLD FOOTER - Manter para compatibilidade */
footer {
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-white);
}

.footer-new .footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--red);
  display: block;
  opacity: 1;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-copy-logo {
  height: 18px;
  width: auto;
  vertical-align: -3px;
  margin: 0 6px;
}

.footer-logo em {
  color: var(--red);
  font-style: normal;
}

.footer-cnpj {
  font-size: 0.75rem;
  color: var(--ink-3);
  letter-spacing: .5px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-copy {
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--ink-3);
  letter-spacing: .5px;
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal.js-ready {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

/* ══════════════════════════════
   TYPOGRAPHY MAPPING
══════════════════════════════ */
h1,
h2,
h3,
.logo,
.nav-center,
.nav-cta,
.hero-kicker,
.hero-h1,
.stat-value,
.stat-desc,
.hero-live,
.btn-primary,
.btn-outline,
.section-tag,
.display-title,
.benefit-num,
.bento-title,
.ghost-bg,
.side-label-vert,
.step-n,
.step-body h3,
.dep-deco,
.dep-stars,
.dep-avatar,
.faq-q-text,
.toggle-btn,
.plan-tier,
.plan-currency,
.plan-amount,
.plan-period,
.plan-cta,
.plan-badge,
.aside-tag,
.aside-big,
.mockup-caption,
.m-header,
.m-btn,
.m-price,
.m-total-val,
.como-counter,
.como-step-label,
.footer-logo,
.footer-links a {
  font-family: var(--title-font);
}

p,
.body-text,
.hero-desc,
.beneficios-lead,
.pain-item,
.benefit-text,
.step-body p,
.problema-intro p,
.problema-pull p,
.aside-quote-box p,
.dep-quote,
.faq-body p,
.faq-note,
.plan-feats li,
.aside-body,
.footer-cnpj {
  font-family: var(--body-font);
  font-weight: 400;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
/* DEMO CTA Responsive */
@media (max-width: 1100px) {
  .demo-cta-inline {
    margin-left: -52px;
    margin-right: -52px;
    border-radius: 0;
  }
}

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

  .hero-right {
    flex-direction: row;
    border-top: 1px solid var(--border);
  }

  .hero-stat {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }

  .hero-stat:last-of-type {
    border-right: none;
  }

  .hero-live {
    border-left: 1px solid rgba(255, 255, 255, .12);
    min-width: 200px;
  }

  .problema-wrap,
  .solucao-wrap {
    grid-template-columns: 1fr;
  }

  .problema-aside {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px 40px;
  }

  .aside-block {
    flex: 1;
    min-width: 180px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-bottom: none;
    padding: 20px 24px;
  }

  .aside-block:last-child {
    border-right: none;
  }

  .solucao-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .side-label-vert {
    display: none;
  }

  .beneficios-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .bento-cell.span2 {
    grid-column: span 2;
  }

  .bento-cell:nth-child(4n) {
    border-right: 1px solid var(--border);
  }

  .bento-cell:nth-child(2n) {
    border-right: none;
  }

  .como-wrap {
    grid-template-columns: 1fr;
  }

  .como-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 40px 48px;
  }

  .como-bar {
    display: none;
  }

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

  .dep-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .dep-card:last-child {
    border-bottom: none;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .faq-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .planos-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .plan-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .plan-card:last-child {
    border-bottom: none;
  }
}

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

  .hero-right {
    flex-direction: row;
  }
}

/* Demais ajustes apenas para mobile real (≤680px) */
@media (max-width: 680px) {
  .nav-links {
    top: 60px;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 12px 0;
  }

  nav > .nav-entrar {
    align-self: center;
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .nav-center {
    display: none;
  }

  .logo img {
    height: 30px;
  }

  .hero-left {
    padding: 48px 24px;
  }

  .hero-right {
    flex-direction: column;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-stat:last-of-type {
    border-bottom: none;
  }

  .hero-live {
    border-left: none;
  }

  .problema-main,
  .solucao-right,
  .step-card,
  .dep-head,
  .faq-left,
  .faq-right,
  .planos-head,
  .plan-card,
  .beneficios-head {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .bento-cell.span2 {
    grid-column: span 1;
  }

  .bento-cell {
    border-right: none;
  }

  footer {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-trail {
    display: none;
  }

  a,
  button {
    cursor: pointer;
  }

  .demo-cta-inline {
    margin-top: 50px;
  }

  .demo-cta-content {
    padding: 40px 32px;
    border-radius: 16px;
    gap: 16px;
  }

  .demo-cta-content::after {
    font-size: 60px;
    bottom: 15px;
    right: 15px;
  }

  .demo-cta-content h2 {
    font-size: 22px;
    gap: 10px;
  }

  .demo-cta-content h2::before {
    width: 32px;
    height: 32px;
  }

  .demo-cta-content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .demo-cta-btn {
    padding: 12px 32px;
    font-size: 12px;
    gap: 8px;
  }
}




/* FEATURES / CHANGES */
.features {
  padding: 120px 80px;
  background: var(--gray-light);
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features h2 {
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.features-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--pink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}






/* TESTIMONIALS */
.testimonials {
  padding: 120px 80px;
  background: var(--pink);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials h2 {
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(229, 57, 53, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(229, 57, 53, 0.1);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 14px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
}

.author-role {
  font-size: 12px;
  color: var(--gray);
}



/* FAQ */
.faq {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq h2 {
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
  position: sticky;
  top: 100px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--red);
}

.faq-question span {
  font-size: 20px;
  color: var(--red);
  font-weight: 300;
  line-height: 1;
}

.faq-answer {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  padding-bottom: 22px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question {
  color: var(--red);
}


/* ══════════════════════════════
   DEMO CARD — Premium Test/Demo Card
══════════════════════════════ */
.demo-cta-inline {
  position: relative;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  background: transparent;
  overflow: visible;
  width: 100%;
  max-width: 600px;
}

.demo-cta-content {
  position: relative;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(28, 28, 34, 0.08);
  width: 100%;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Decorative elements - removido para design mais minimalista */
.demo-cta-content::before {
  display: none;
}

.demo-cta-content::after {
  display: none;
}

/* Heading */
.demo-cta-content h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: var(--charcoal);
  margin: 0;
  text-shadow: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-cta-content h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

/* Description */
.demo-cta-content p {
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
  max-width: 100%;
}

/* CTA Button */
.demo-cta-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  background: transparent;
  color: var(--red);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--red);
  font-family: var(--title-font);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  overflow: hidden;
  margin-top: 6px;
}

.demo-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.15), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.demo-cta-btn::before {
  display: none;
}

.demo-cta-btn::after {
  display: none;
}

.demo-cta-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 57, 53, 0.15);
}

.demo-cta-btn:active {
  transform: translateY(0);
}

/* ══════════════════════════════
   DEMO CTA SECTION — Before Pricing
══════════════════════════════ */
.demo-cta {
  position: relative;
  overflow: hidden;
  padding: 80px;
  margin: 120px 0;
  background: linear-gradient(135deg, var(--red-dim) 0%, rgba(229, 57, 53, 0.04) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 600px;
}

.demo-cta-content img {
  max-width: 120px;
  height: auto;
  margin-bottom: 8px;
}

.demo-cta-content h2 {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}

.demo-cta-content h2 em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

.demo-cta-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}

.demo-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 8px;
  border: none;
  font-family: var(--title-font);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.2);
  margin-top: 12px;
}

.demo-cta-btn:hover {
  background: var(--red-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(229, 57, 53, 0.28);
}

.demo-cta-btn:active {
  transform: translateY(-2px);
}



/* ══════════════════════════════
   FEATURES RESPONSIVE MOBILE
══════════════════════════════ */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 680px) {
  * {
    box-sizing: border-box !important;
  }

  html {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  body {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
  }

  section,
  div {
    max-width: 100% !important;
  }

  .demo-cta-inline {
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .demo-cta-content {
    padding: 24px 20px;
    gap: 12px;
    border-radius: 6px;
    width: 100%;
    max-width: 100%;
  }

  .demo-cta-content h2 {
    font-size: clamp(14px, 3vw, 18px);
    gap: 6px;
  }

  .demo-cta-content h2::before {
    width: 3px;
    height: 3px;
  }

  .demo-cta-content p {
    font-size: 12px;
    line-height: 1.4;
  }

  .demo-cta {
    padding: 40px 24px;
    margin: 80px 0;
    border-radius: 12px;
  }

  .demo-cta-content {
    gap: 16px;
  }

  .demo-cta-content img {
    max-width: 100px;
  }

  .demo-cta-content h2 {
    font-size: clamp(20px, 4vw, 28px);
  }

  .demo-cta-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .demo-cta-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .demo-cta-inline .demo-cta-btn {
    padding: 9px 16px;
    font-size: 11px;
  }

  .features {
    padding: 60px 24px;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .features-header {
    margin-bottom: 48px;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    width: 100% !important;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .feature-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .feature-card {
    width: 100% !important;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .features-subtitle {
    font-size: 15px;
  }
}

/* ══════════════════════════════
   TESTIMONIALS RESPONSIVE MOBILE
══════════════════════════════ */
@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 680px) {
  .testimonials {
    padding: 60px 24px;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .testimonials-header {
    margin-bottom: 48px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    width: 100% !important;
  }

  .testimonial-card {
    padding: 24px 20px;
    width: 100% !important;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .stars {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .author-name {
    font-size: 13px;
  }

  .author-role {
    font-size: 11px;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .testimonials h2 {
    font-size: clamp(28px, 5vw, 40px);
  }
}

/* ══════════════════════════════
   PRICING RESPONSIVE MOBILE
══════════════════════════════ */

@media (max-width: 680px) {
  .pricing {
    padding: 60px 24px;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .pricing-card {
    padding: 32px 24px;
    width: 100% !important;
  }

  .pricing-plan {
    font-size: 13px;
  }

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

  .pricing-period {
    font-size: 12px;
  }

  .pricing-features li {
    font-size: 13px;
  }

  .pricing-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .pricing h2 {
    font-size: clamp(28px, 5vw, 40px);
  }
}

/* ══════════════════════════════
   FOOTER RESPONSIVE MOBILE
══════════════════════════════ */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

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

@media (max-width: 680px) {
  footer.footer-new {
    padding: 48px 24px 32px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-section {
    width: 100% !important;
  }

  .footer-section-title {
    font-size: 0.65rem;
    margin-bottom: 12px;
  }

  .footer-links a,
  .footer-contact p,
  .footer-contact a {
    font-size: 0.8rem;
  }

  .footer-logo {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .footer-tagline {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .footer-copyright {
    font-size: 0.7rem;
  }

  .footer-social {
    gap: 8px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .footer-bottom {
    padding-top: 24px;
    margin-top: 24px;
  }

  .footer-bottom p {
    font-size: 0.7rem;
    text-align: center;
  }
}

/* ══════════════════════════════
   FAQ RESPONSIVE MOBILE
══════════════════════════════ */
@media (max-width: 1100px) {
  .faq {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .faq-wrap {
    grid-template-columns: 1fr !important;
  }

  .faq-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 680px) {
  .faq {
    padding: 60px 24px;
    grid-template-columns: 1fr !important;
    gap: 24px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .faq h2 {
    font-size: clamp(28px, 5vw, 40px);
    position: static !important;
    top: auto !important;
    margin-bottom: 24px;
  }

  .faq-list {
    width: 100% !important;
  }

  .faq-item {
    width: 100% !important;
  }

  .faq-question {
    padding: 16px 0;
    font-size: 14px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 13px;
    line-height: 1.6;
    padding-bottom: 16px;
  }

  .faq-left {
    padding: 48px 24px;
    border-bottom: 1px solid var(--border);
  }

  .faq-right {
    padding: 24px;
  }

  .faq-btn {
    padding: 20px 0;
    gap: 24px;
  }

  .faq-q-text {
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }
}

/* DelyGo — Design Premium
   Paleta: Red (#e53935), Dark (#1C1C22), Pink (#FFEDEF), White (#FFFFFF)
   Tipografia: Poppins (Bold para títulos, Regular para corpo)
*/

:root {
  --red: #e53935;
  --dark: #1C1C22;
  --pink: #FFEDEF;
  --white: #FFFFFF;
  --red-dark: #c62828;
  --red-light: #ff6b6b;
  --gray: #6b6b7a;
  --gray-light: #f5f5f7;
  --gray-lighter: #fafafa;
  --border: rgba(28, 28, 34, 0.08);
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* TYPOGRAPHY */
h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

h3,
h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.subtitle {
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

p,
li,
span,
label {
  font-weight: 400;
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.7;
}

em {
  font-style: italic;
  color: var(--red);
  font-weight: 600;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 90px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  height: 70px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.02);
}

.nav-badge {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--red);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-badge:hover {
  color: var(--red-light);
  transform: translateX(-50%) scale(1.05);
}

.nav-subtitle {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.3px;
  border: 2px solid var(--red);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--red-dark);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.3);
}

.nav-cta:hover::before {
  left: 0;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 237, 239, 0.4) 50%, rgba(229, 57, 53, 0.05) 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 237, 239, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 80px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  border: 1px solid rgba(229, 57, 53, 0.15);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--red);
  width: fit-content;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease both;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.1);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark);
  animation: fadeUp 0.6s 0.1s ease both;
  margin-bottom: 32px;
  font-weight: 800;
}

.hero h1 em {
  display: block;
  color: var(--red);
  position: relative;
  font-style: italic;
  font-weight: 800;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 480px;
  animation: fadeUp 0.6s 0.2s ease both;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeUp 0.6s 0.3s ease both;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.3);
  border: 2px solid var(--red);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--red-dark);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(229, 57, 53, 0.4);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(28, 28, 34, 0.05) 0%, rgba(229, 57, 53, 0.02) 100%);
  letter-spacing: 0.3px;
  overflow: hidden;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-ghost::after {
  content: '→';
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 800;
}

.btn-ghost:hover {
  color: var(--red);
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
  border-color: rgba(229, 57, 53, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.15);
}

.btn-ghost:hover::before {
  left: 100%;
}

.btn-ghost:hover::after {
  transform: translateX(8px) scale(1.2);
}

.btn-ghost:active {
  transform: translateY(-1px);
}

/* DEMO BUTTON */
.btn-demo {
  background: linear-gradient(135deg, #08B357 0%, #06A251 100%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.3px;
  border: 2px solid #08B357;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #06A251;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 179, 87, 0.3);
  border-color: #06A251;
}

.btn-demo:hover::before {
  left: 0;
}

.btn-demo:active {
  transform: translateY(-1px);
}

/* STATS GRID */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 60px 80px;
  overflow: hidden;
  animation: fadeIn 0.8s 0.2s ease both;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 237, 239, 0.6) 100%);
  border: 1px solid rgba(229, 57, 53, 0.15);
  padding: 32px 28px;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(229, 57, 53, 0.08);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(229, 57, 53, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 14px;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 237, 239, 0.8) 100%);
  box-shadow: 0 16px 48px rgba(229, 57, 53, 0.15);
  border-color: var(--red);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-value.red {
  color: var(--red);
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(255, 237, 239, 0.3) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.25) 0%, rgba(255, 237, 239, 0.5) 100%);
  transform: scale(1.1) rotate(5deg);
}

.hero-testimonial {
  margin-top: 2px;
  background: var(--red);
  padding: 28px;
  border-radius: 0 0 12px 12px;
  position: relative;
  z-index: 1;
}

.hero-testimonial p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 14px;
}

.hero-testimonial .author {
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  opacity: 0.7;
  font-style: normal;
}

/* Problem Stat Card */
.problem .stat-card {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(255, 237, 239, 0.4) 100%);
  border: 2px solid rgba(229, 57, 53, 0.2);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(229, 57, 53, 0.12);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: sticky;
  top: 120px;
}

.problem .stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(229, 57, 53, 0.2);
  border-color: var(--red);
}

.problem .stat-value {
  font-size: 64px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.problem .stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.6;
}

/* SECTIONS BASE */
section {
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(229, 57, 53, 0.4) 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* PROBLEM SECTION */
.problem {
  padding: 140px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 100px;
  align-items: start;
  background: linear-gradient(180deg, var(--gray-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.problem::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.problem>div:first-child {
  position: relative;
  z-index: 1;
}

.problem>div:last-child {
  position: relative;
  z-index: 1;
}

.problem h2 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--dark);
  font-weight: 800;
}

.problem-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 32px;
  font-weight: 400;
}

.problem-callout {
  background: linear-gradient(135deg, var(--pink) 0%, rgba(255, 237, 239, 0.6) 100%);
  border: 2px solid rgba(229, 57, 53, 0.2);
  border-left: 4px solid var(--red);
  padding: 28px 32px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.problem-callout:hover {
  box-shadow: 0 12px 32px rgba(229, 57, 53, 0.12);
  transform: translateX(4px);
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.problem-list li:hover {
  color: var(--red);
  transform: translateX(4px);
}

.problem-list li::before {
  content: '✗';
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, var(--pink) 0%, rgba(255, 237, 239, 0.4) 100%);
  color: var(--red);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border: 1px solid rgba(229, 57, 53, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.problem-list li:hover::before {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  color: var(--white);
  border-color: var(--red);
  transform: scale(1.1);
}

/* SOLUTION & MOCK PHONE */
.solution {
  padding: 140px 80px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a20 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  overflow: hidden;
  position: relative;
  perspective: 1200px;
}

.solution::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: rotateGradient 20s linear infinite;
}

.solution::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.solution>div:first-child {
  animation: fadeInLeft 0.8s ease-out;
}

.solution>div:last-child {
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.solution h2 {
  font-size: clamp(44px, 6vw, 68px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #ff9999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-weight: 400;
}

.mock-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.mock-phone {
  width: 300px;
  background: linear-gradient(135deg, #1a1a1e 0%, #232328 100%);
  border-radius: 44px;
  padding: 14px;
  border: 3px solid rgba(229, 57, 53, 0.2);
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.8), 0 0 60px rgba(229, 57, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotate(-8deg) perspective(1000px) rotateY(15deg);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: floatPhone 3s ease-in-out infinite;
}

@keyframes floatPhone {

  0%,
  100% {
    transform: rotate(-8deg) perspective(1000px) rotateY(15deg) translateY(0);
  }

  50% {
    transform: rotate(-8deg) perspective(1000px) rotateY(15deg) translateY(-20px);
  }
}

.mock-container:hover .mock-phone {
  transform: rotate(-5deg) perspective(1000px) rotateY(10deg) scale(1.03);
  box-shadow: 0 80px 160px rgba(0, 0, 0, 0.8), 0 0 80px rgba(229, 57, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mock-screen {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 36px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.05);
}

.mock-header {
  background: linear-gradient(135deg, var(--red) 0%, #ff5252 100%);
  padding: 24px 20px 18px;
  position: relative;
  overflow: hidden;
}

.mock-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
}

.mock-header h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.mock-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  position: relative;
  z-index: 1;
}

.mock-body {
  padding: 20px;
}

.mock-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(255, 237, 239, 0.5) 0%, rgba(229, 57, 53, 0.05) 100%);
  border: 1px solid rgba(229, 57, 53, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInItem 0.6s ease-out backwards;
}

.mock-item:nth-child(1) {
  animation-delay: 0.3s;
}

.mock-item:nth-child(2) {
  animation-delay: 0.4s;
}

.mock-item:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes slideInItem {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mock-container:hover .mock-item {
  transform: translateX(8px);
}

.mock-item:hover {
  background: linear-gradient(135deg, rgba(255, 237, 239, 0.7) 0%, rgba(229, 57, 53, 0.15) 100%);
  border-color: rgba(229, 57, 53, 0.3);
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.1);
}

.mock-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.2) 0%, rgba(229, 57, 53, 0.05) 100%);
  transition: all 0.3s ease;
}

.mock-item:hover .mock-item-icon {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.4) 0%, rgba(229, 57, 53, 0.2) 100%);
  transform: scale(1.1) rotate(10deg);
}

.mock-item-info {
  flex: 1;
}

.mock-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.mock-item:hover .mock-item-name {
  color: var(--red);
}

.mock-item-sub {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
}

.mock-item:hover .mock-item-sub {
  color: rgba(229, 57, 53, 0.8);
}

.mock-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  transition: all 0.3s ease;
}

.mock-item:hover .mock-item-price {
  transform: scale(1.1);
  color: #ff5252;
}

.mock-total {
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(135deg, var(--dark) 0%, #232328 100%);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: slideInItem 0.6s ease-out 0.6s backwards;
  transition: all 0.3s ease;
}

.mock-total:hover {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a30 100%);
  border-color: rgba(229, 57, 53, 0.2);
  box-shadow: inset 0 0 20px rgba(229, 57, 53, 0.05);
}

.mock-total span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mock-total:hover span {
  color: rgba(255, 255, 255, 0.8);
}

.mock-total strong {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  transition: color 0.3s ease;
}

.mock-total:hover strong {
  color: var(--red);
}

.mock-btn {
  display: block;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--red) 0%, #ff5252 100%);
  color: var(--white);
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInItem 0.6s ease-out 0.7s backwards;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.mock-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.mock-btn:hover::before {
  left: 100%;
}

.mock-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 32px rgba(229, 57, 53, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

/* FEATURES GRID */
.features {
  padding: 160px 80px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 237, 239, 0.2) 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}

.features h2 {
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--dark);
  font-weight: 800;
}

.features-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 237, 239, 0.3) 100%);
  border-radius: 20px;
  padding: 48px 40px;
  border: 1px solid rgba(229, 57, 53, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(229, 57, 53, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 64px rgba(229, 57, 53, 0.15);
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 237, 239, 0.6) 100%);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.12) 0%, rgba(255, 237, 239, 0.4) 100%);
  border: 2px solid rgba(229, 57, 53, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  border-color: var(--red);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 12px 32px rgba(229, 57, 53, 0.2);
}

.feature-card h3 {
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 700;
  transition: color 0.3s ease;
  flex-grow: 1;
}

.feature-card:hover h3 {
  color: var(--red);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 400;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: var(--dark);
}

/* TESTIMONIALS */
.testimonials {
  padding: 140px 80px;
  background: linear-gradient(180deg, var(--gray-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.testimonials-header h2 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  border-color: var(--red);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.stars {
  font-size: 16px;
  color: var(--red);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.author-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
}

.author-role {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
}

/* HOW IT WORKS - PASSO A PASSO */
.how {
  padding: 140px 80px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 237, 239, 0.3) 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.how::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.how::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.how>div:first-child {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.how h2 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 800;
}

.how-desc {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
  font-weight: 400;
}

.how>div:first-child .btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.how>div:first-child .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(229, 57, 53, 0.35);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 60px 0;
  position: relative;
  border-left: none;
  padding-left: 0;
  margin-left: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(229, 57, 53, 0.02) 50%,
      transparent 100%);
  background-size: 100% 0;
  background-position: 0 0;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 60px 50px;
  margin: -60px -50px;
}

.step:first-child {
  padding-top: 60px;
  margin-top: 0;
}

.step:last-child {
  border-left-color: transparent;
  padding-bottom: 60px;
}

.step:hover {
  transform: translateX(12px);
  background-size: 100% 100%;
  background-position: 0 0;
}

.step-num-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  min-width: 110px;
  flex-shrink: 0;
}

.step-num {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 16px 48px rgba(229, 57, 53, 0.28);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.step-num::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step:hover .step-num {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 24px 64px rgba(229, 57, 53, 0.4);
}

.step:hover .step-num::before {
  opacity: 1;
}

.step-line {
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-light) 100%);
  border-radius: 2px;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 8px;
}

.step:last-child .step-line {
  display: none;
}

.step:hover .step-line {
  opacity: 1;
  height: 60px;
}

.step-content {
  flex: 1;
  padding-top: 12px;
  position: relative;
}

.step-content::before {
  display: none;
}

.step:hover .step-content::before {
  display: none;
}

.step-content h4 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.step:hover .step-content h4 {
  color: var(--red);
}

.step-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 400;
  transition: color 0.3s ease;
}

.step:hover .step-content p {
  color: var(--dark);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ - DÚVIDAS COMUNS */
.faq {
  padding: 140px 80px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 237, 239, 0.4) 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.faq::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.faq::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -100px;
  pointer-events: none;
}

.faq-left {
  position: relative;
  z-index: 1;
}

.faq-left>div {
  animation: fadeInUp 0.8s ease-out;
}

.faq-left h2 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--dark);
  font-weight: 800;
}

.faq-note {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 400;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.faq-item {
  border: 2px solid rgba(229, 57, 53, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 237, 239, 0.2) 100%);
  backdrop-filter: blur(10px);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item:hover {
  border-color: rgba(229, 57, 53, 0.3);
  box-shadow: 0 16px 48px rgba(229, 57, 53, 0.12);
  transform: translateY(-4px);
}

.faq-item.open {
  border-color: var(--red);
  box-shadow: 0 20px 60px rgba(229, 57, 53, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 237, 239, 0.35) 100%);
}

.faq-item.open::before {
  transform: scaleX(1);
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
  letter-spacing: -0.01em;
  position: relative;
}

.faq-btn:hover {
  color: var(--red);
}

.faq-q-text {
  text-align: left;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.faq-item.open .faq-btn {
  color: var(--red);
}

.faq-icon {
  font-size: 20px;
  color: var(--red);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  font-weight: 700;
  width: 32px;
  height: 32px;
  background: rgba(229, 57, 53, 0.08);
  border-radius: 50%;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: rgba(229, 57, 53, 0.15);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(180deg, rgba(229, 57, 53, 0.02) 0%, rgba(255, 237, 239, 0.1) 100%);
  padding: 0 32px;
}

.faq-item.open .faq-body {
  max-height: 600px;
  padding: 28px 32px;
  border-top: 2px solid rgba(229, 57, 53, 0.15);
  animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-body p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-item.open .faq-body p {
  color: var(--dark);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PRICING */
.pricing {
  padding: 160px 80px;
  background: linear-gradient(135deg, #0f0f11 0%, #1a1a1f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: auto;
  perspective: 1000px;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.pricing::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.5), transparent);
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.pricing>div:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0s backwards;
}

.pricing>div:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.pricing>div:nth-child(4) {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.pricing h2 {
  font-size: clamp(48px, 6vw, 76px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1000px;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(229, 57, 53, 0.02) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 24px 20px;
  text-align: left;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0%, #ff9999 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 28px;
}

.pricing-card:nth-child(1) {
  animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.pricing-card:nth-child(2) {
  animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.pricing-card:nth-child(3) {
  animation: slideInUp 0.8s ease-out 0.35s backwards;
}

.pricing-card:nth-child(4) {
  animation: slideInRight 0.8s ease-out 0.4s backwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 2px solid rgba(14, 165, 233, 0.5);
  transform: scale(1.04) translateY(-16px);
  box-shadow: 0 40px 100px rgba(14, 165, 233, 0.25), 0 0 30px rgba(14, 165, 233, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}

.pricing-card.featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, #0ea5e9 0%, rgba(14, 165, 233, 0.6) 100%);
  height: 4px;
}

.pricing-card:hover {
  transform: translateY(-12px) rotateX(4deg);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card.featured:hover {
  transform: scale(1.07) translateY(-20px) rotateX(6deg);
  box-shadow: 0 50px 120px rgba(14, 165, 233, 0.35), 0 0 50px rgba(14, 165, 233, 0.18), inset 0 0 80px rgba(255, 255, 255, 0.08);
  border-color: rgba(14, 165, 233, 0.7);
}

.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
  letter-spacing: 0px;
  text-transform: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.pricing-card.featured .pricing-plan {
  color: rgba(255, 255, 255, 0.98);
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 10px;
}

.pricing-card:hover .pricing-plan {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-badge {
  font-size: 10px;
  color: var(--white);
  font-weight: 700;
  position: relative;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 9px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.6s ease-out 0.5s backwards;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.pricing-card.featured .pricing-badge {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.25) 0%, rgba(14, 165, 233, 0.1) 100%);
  border-color: rgba(14, 165, 233, 0.3);
}

.pricing-card:hover .pricing-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(229, 57, 53, 0.1) 100%);
  border-color: rgba(255, 255, 255, 0.25);
}

.pricing-card.featured:hover .pricing-badge {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0.1) 100%);
  border-color: rgba(14, 165, 233, 0.5);
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.6s backwards;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-price sup {
  font-size: 16px;
  font-weight: 600;
}

.pricing-card.featured .pricing-price {
  color: #0ea5e9;
  text-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
}

.pricing-card:hover .pricing-price {
  color: #ff9999;
}

.pricing-card.featured:hover .pricing-price {
  color: #06b6d4;
  text-shadow: 0 6px 30px rgba(14, 165, 233, 0.35);
}

.pricing-period {
  font-size: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.65s backwards;
  margin-top: 2px;
}

.pricing-period {
  color: var(--red);
  font-weight: 600;
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-card:hover .pricing-period {
  color: #ff9999;
}

.pricing-discount {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out 0.7s backwards;
  margin-top: 1px;
  line-height: 1.3;
}

.pricing-discount strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.pricing-discount span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-top: 4px;
}

.pricing-card.featured .pricing-discount {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(14, 165, 233, 0.1);
  padding: 12px 16px;
  border-radius: 10px;
  border-left: 3px solid #0ea5e9;
  margin-left: -4px;
}

.pricing-features {
  list-style: none;
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 6px;
}

.pricing-features li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out backwards;
}

.pricing-features li:nth-child(1) {
  animation-delay: 0.7s;
}

.pricing-features li:nth-child(2) {
  animation-delay: 0.75s;
}

.pricing-features li:nth-child(3) {
  animation-delay: 0.8s;
}

.pricing-features li:nth-child(4) {
  animation-delay: 0.85s;
}

.pricing-features li:nth-child(5) {
  animation-delay: 0.9s;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: #4ade80;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pricing-card.featured .pricing-features li::before {
  color: #0ea5e9;
  font-weight: 900;
}

.pricing-card:hover .pricing-features li {
  color: rgba(255, 255, 255, 0.95);
  padding-left: 8px;
}

.pricing-card:hover .pricing-features li::before {
  transform: scale(1.2) rotate(20deg);
  color: #4ade80;
}

.pricing-btn {
  margin-top: 20px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 12px;
  border-radius: 11px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  border: 2px solid;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  letter-spacing: 0.2px;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out 0.95s backwards;
}

.pricing-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.pricing-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-btn:hover::before {
  left: 100%;
}

.pricing-btn:hover::after {
  opacity: 1;
}

.pricing-btn.solid {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  color: var(--white);
  border-color: rgba(14, 165, 233, 0.8);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.25), 0 0 20px rgba(14, 165, 233, 0.1);
  font-weight: 800;
}

.pricing-btn.solid:hover {
  background: linear-gradient(135deg, #06b6d4 0%, #00d9ff 100%);
  color: var(--white);
  border-color: rgba(0, 217, 255, 0.8);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.4), 0 0 30px rgba(14, 165, 233, 0.2);
}

.pricing-btn.solid:active {
  transform: translateY(-2px) scale(0.98);
}

.pricing-btn.outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.pricing-btn.outline:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255, 255, 255, 0.15);
}

.pricing-btn.outline:active {
  transform: translateY(-2px) scale(0.98);
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #0a0a0d 0%, #1a1a1f 50%, #0f0f13 100%);
  padding: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  text-align: center;
}

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

.footer-logo {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin: 0;
  padding: 0;
  transition: all 0.4s ease;
  cursor: pointer;
}

.footer-logo:hover {
  color: #0ea5e9;
}

.footer-year {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0ea5e9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-email {
  font-size: 15px;
  color: #0ea5e9;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-email:hover {
  color: #06b6d4;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  letter-spacing: 0.3px;
  font-weight: 400;
}

@media (max-width: 1200px) {
  footer {
    padding: 60px 40px;
  }

  .footer-content {
    gap: 40px;
  }

  .footer-logo {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 50px 30px;
  }

  .footer-content {
    gap: 32px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-email {
    font-size: 14px;
  }
}

/* ════════ FLOATING DEMO BOX ════════ */
.floating-demo {
  position: fixed;
  top: 120px;
  right: 40px;
  width: 400px;
  background: #f8f9fa;
  border-radius: 16px 16px 0 0;
  padding: 32px 32px 24px 32px;
  box-shadow: 0 20px 60px rgba(214, 48, 49, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border: 1px solid rgba(214, 48, 49, 0.15);
  border-bottom: none;
}

.floating-demo-content {
  padding-bottom: 0;
}

.floating-demo-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.floating-demo-content p {
  font-size: 14px;
  color: #666666;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.floating-demo-btn {
  display: block;
  padding: 16px 24px;
  background: #d63031;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.floating-demo-btn:hover {
  background: #c92a2a;
  transform: translateY(-2px);
}

.floating-demo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: #ffe5e5;
  color: #d63031;
  font-size: 26px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
}

.floating-demo-close:hover {
  background: #ffd4d4;
  color: #c92a2a;
}

.floating-demo.closing {
  animation: slide-out-right 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes slide-out-right {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(400px);
  }
}


@media (max-width: 1200px) and (min-width: 769px) {

  .hero-left,
  .hero-right {
    padding: 80px 60px;
  }

  .pricing {
    padding: 120px 40px;
  }

  .pricing h2 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 12px;
  }

  .pricing-subtitle {
    font-size: 17px;
    margin-bottom: 70px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 100%;
  }

  .pricing-card {
    padding: 22px 18px;
    min-height: auto;
    border-radius: 20px;
  }

  .pricing-card.featured {
    transform: scale(1.05) translateY(-12px);
    grid-column: span 1;
  }

  .pricing-card:hover {
    transform: translateY(-14px) rotateX(4deg);
  }

  .pricing-card.featured:hover {
    transform: scale(1.11) translateY(-20px) rotateX(6deg);
  }

  .pricing-price {
    font-size: 56px;
  }

  .pricing-price sup {
    font-size: 16px;
  }

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

@media (max-width: 1024px) and (min-width: 769px) {
  nav {
    padding: 12px 40px;
  }

  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .nav-logo-text {
    font-size: 0.5rem;
  }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
    flex-wrap: nowrap;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .nav-badge {
    font-size: 12px;
    white-space: normal;
    max-width: 280px;
    text-align: center;
  }

  .nav-cta {
    padding: 16px 20px;
    font-size: 13px;
  }

  .floating-demo {
    top: 80px;
    right: 30px;
    max-width: 380px;
    padding: 28px 32px;
  }

.floating-demo-content h3 {
  font-size: 20px;
}

.floating-demo-content p {
  font-size: 14px;
}

.hero {
  padding-top: 64px;
  min-height: auto;
  padding-bottom: 80px;
}

.hero-left {
  padding: 60px 40px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 7vw, 56px);
}

.hero-actions {
  justify-content: center;
}

.hero-right {
  padding: 40px 40px;
  width: 100%;
}

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

.stat-card {
  padding: 24px 20px;
}

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

.stat-label {
  font-size: 11px;
}

.problem {
  grid-template-columns: 1fr;
  gap: 60px;
  padding: 100px 40px;
}

.problem .stat-card {
  position: static;
  margin-top: 40px;
}

.solution {
  grid-template-columns: 1fr;
  gap: 80px;
  padding: 100px 40px;
}

.solution h2 {
  font-size: clamp(36px, 5vw, 56px);
}

.solution-desc {
  font-size: 16px;
}

.mock-phone {
  width: 280px;
}

.mock-screen {
  min-height: 520px;
}

.faq {
  grid-template-columns: 1fr;
  gap: 80px;
  padding: 100px 40px;
}

.faq-left>div {
  margin-bottom: 40px;
}

.faq-left h2 {
  font-size: clamp(36px, 6vw, 56px);
}

.faq-note {
  font-size: 17px;
}

.faq-right {
  gap: 14px;
}

.faq-btn {
  padding: 24px 28px;
  font-size: 16px;
}

.faq-icon {
  font-size: 18px;
  margin-left: 16px;
  width: 28px;
  height: 28px;
}

.faq-body {
  padding: 0 28px;
}

.faq-item.open .faq-body {
  padding: 24px 28px;
}

.faq-body p {
  font-size: 15px;
}

.how {
  padding: 100px 40px;
}

.how>div:first-child {
  margin-bottom: 80px;
}

.steps {
  max-width: 100%;
}

.step {
  gap: 40px;
  padding: 50px 40px;
  margin: -50px -40px;
}

.step:first-child {
  padding-top: 50px;
}

.step-num {
  width: 90px;
  height: 90px;
  font-size: 40px;
}

.step-content h4 {
  font-size: 20px;
}

.step-content p {
  font-size: 15px;
}

.features,
.testimonials,
.pricing {
  padding: 100px 40px;
}

.pricing h2 {
  font-size: clamp(36px, 5vw, 56px);
}

.pricing-subtitle {
  font-size: 16px;
  margin-bottom: 60px;
}

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

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

.pricing-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px;
  max-width: 100% !important;
}

.testimonial-card {
  padding: 32px;
}

.pricing-card {
  padding: 20px 16px;
  min-height: auto;
  border-radius: 18px;
}

.pricing-card.featured {
  transform: scale(1.02) translateY(-8px);
  grid-column: span 1 !important;
}

.pricing-card:hover {
  transform: translateY(-10px) rotateX(3deg);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-15px) rotateX(4deg);
}

.pricing-price {
  font-size: 52px;
}

.pricing-price sup {
  font-size: 15px;
}

.pricing-features li {
  font-size: 14px;
  padding: 14px 0;
}

.pricing-btn {
  margin-top: 32px;
  padding: 14px 28px;
  font-size: 14px;
}

footer {
  flex-direction: column;
  gap: 32px;
  text-align: center;
  padding: 60px 40px;
}

footer {
  grid-template-columns: 1fr;
  gap: 50px;
  padding: 80px 40px;
}

.footer-brand,
.footer-links,
.footer-contact {
  width: 100%;
}

.footer-links {
  flex-direction: column;
  gap: 12px;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 20px;
}

.footer-copy::before {
  left: 0;
  width: 80px;
  background: linear-gradient(90deg, #0ea5e9, transparent);
}

.hero-actions {
  flex-direction: column;
  align-items: flex-start;
}

.btn-primary,
.btn-ghost {
  width: 100%;
  text-align: center;
  justify-content: center;
}

h1 {
  font-size: clamp(32px, 7vw, 48px) !important;
}

h2 {
  font-size: clamp(28px, 6vw, 40px) !important;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .pricing-card {
    transform: scale(1) !important;
  }

  .pricing-card.featured {
    transform: scale(1) !important;
  }
}

@media (max-width: 767px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 20px;
    height: 80px;
  }

  .nav-logo img {
    height: 60px;
  }

  .nav-badge {
    font-size: 11px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    max-width: none;
    line-height: 1.4;
    position: absolute;
    left: 70px;
    right: auto;
    transform: none;
  }

  .nav-cta {
    display: none;
  }

  .floating-demo {
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    max-width: none;
    padding: 24px 28px;
    padding-bottom: 32px;
    border-radius: 20px 20px 0 0;
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.12);
  }

  .floating-demo-content h3 {
    font-size: 18px;
  }

  .floating-demo-content p {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .floating-demo-btn {
    padding: 15px 24px;
    font-size: 14px;
    width: 100%;
  }

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

  .hero {
    padding-bottom: 60px;
  }

  .hero-left {
    padding: 48px 20px;
  }

  .hero h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .hero-desc {
    font-size: 13px;
  }

  .hero-right {
    padding: 32px 20px;
  }

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

  .stat-card {
    padding: 20px 16px;
  }

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

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

  .hero-badge {
    padding: 8px 14px;
    font-size: 11px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(28px, 6vw, 40px);
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .hero-actions {
    gap: 12px;
    flex-direction: column;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
  }

  .nav-cta {
    width: 100%;
    padding: 16px 24px;
    font-size: 0.75rem;
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .btn-ghost {
    width: 100%;
    padding: 16px 24px;
    font-size: 0.7rem;
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .btn-primary {
    padding: 16px 28px;
    font-size: 13px;
  }

  .btn-ghost {
    padding: 16px 22px;
    font-size: 13px;
  }

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

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

  .stat-card {
    padding: 28px 20px;
  }

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

  .stat-label {
    font-size: 12px;
  }

  .section-tag {
    font-size: 10px;
    margin-bottom: 16px;
  }

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

  .feature-card {
    padding: 28px 20px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .problem {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }

  .problem h2 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .problem-desc {
    font-size: 13px;
  }

  .problem-callout {
    padding: 20px 24px;
    font-size: 14px;
  }

  .problem-list {
    gap: 12px;
  }

  .problem-list li {
    font-size: 13px;
  }

  .problem .stat-card {
    padding: 32px 24px;
  }

  .problem .stat-value {
    font-size: 48px;
  }

  .solution,
  .pricing,
  .features,
  .testimonials {
    padding: 60px 20px;
    gap: 50px;
  }

  .solution h2 {
    font-size: clamp(32px, 6vw, 48px);
  }

  .solution-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .mock-phone {
    width: 260px;
    border-radius: 40px;
    padding: 12px;
  }

  .mock-screen {
    min-height: 480px;
    border-radius: 32px;
  }

  .mock-header {
    padding: 20px 18px 14px;
  }

  .mock-header h4 {
    font-size: 14px;
  }

  .mock-body {
    padding: 18px;
  }

  .mock-item {
    padding: 14px;
    margin-bottom: 10px;
    gap: 12px;
  }

  .mock-item-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .mock-item-name {
    font-size: 13px;
  }

  .faq {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 60px;
  }

  .faq-left h2 {
    font-size: clamp(32px, 7vw, 48px);
    margin-bottom: 20px;
  }

  .faq-note {
    font-size: 16px;
    line-height: 1.7;
  }

  .faq-right {
    gap: 12px;
  }

  .faq-btn {
    padding: 20px 24px;
    font-size: 15px;
  }

  .faq-icon {
    font-size: 16px;
    margin-left: 14px;
    width: 26px;
    height: 26px;
  }

  .faq-body {
    padding: 0 24px;
  }

  .faq-item.open .faq-body {
    padding: 20px 24px;
  }

  .faq-body p {
    font-size: 15px;
    line-height: 1.7;
  }

  .faq-body p {
    font-size: 13px;
  }

  .how {
    padding: 60px 20px;
  }

  .how>div:first-child {
    margin-bottom: 60px;
  }

  .how h2 {
    font-size: clamp(32px, 7vw, 48px);
  }

  .how-desc {
    font-size: 16px;
  }

  .steps {
    max-width: 100%;
  }

  .step {
    gap: 28px;
    padding: 40px 28px;
    margin: -40px -28px;
    border-radius: 12px;
  }

  .step:first-child {
    padding-top: 40px;
  }

  .step-num {
    width: 80px;
    height: 80px;
    font-size: 36px;
    border-radius: 20px;
    min-width: 80px;
  }

  .step-content h4 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 15px;
  }

  .pricing {
    padding: 60px 20px;
  }

  .pricing h2 {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 12px;
  }

  .pricing-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .pricing-grid {
    gap: 10px;
    max-width: 100%;
  }

  .pricing-card {
    padding: 18px 14px;
    min-height: auto;
    border-radius: 16px;
  }

  .pricing-card.featured {
    transform: scale(1.02) translateY(-8px);
    grid-column: span 1;
  }

  .pricing-card:hover {
    transform: translateY(-8px) rotateX(2deg);
  }

  .pricing-card.featured:hover {
    transform: scale(1.06) translateY(-12px) rotateX(3deg);
  }

  .pricing-plan {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .pricing-badge {
    font-size: 12px;
    margin-bottom: 12px;
    padding: 8px 12px;
  }

  .pricing-price {
    font-size: 48px;
    margin-bottom: 2px;
  }

  .pricing-price sup {
    font-size: 14px;
  }

  .pricing-period {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .pricing-features {
    margin: 0;
  }

  .pricing-features li {
    font-size: 14px;
    padding: 12px 0;
  }

  .pricing-btn {
    margin-top: 28px;
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 12px;
  }

  footer {
    padding: 40px 20px;
    gap: 24px;
  }

  .footer-logo {
    font-size: 14px;
  }

  .footer-cnpj {
    font-size: 11px;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-links a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
    height: auto;
    min-height: 80px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-logo {
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .nav-badge {
    order: 2;
    width: 100%;
  }

  .nav-cta {
    order: 3;
  }

  .nav-logo img {
    height: 48px;
  }

  .nav-badge {
    font-size: 10px;
    letter-spacing: 0.1px;
    white-space: nowrap;
    max-width: none;
    line-height: 1.3;
    position: absolute;
    left: 65px;
    right: auto;
    transform: none;
  }

  .nav-cta {
    display: none;
  }

  .floating-demo {
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    max-width: none;
    padding: 20px 24px;
    padding-bottom: 28px;
    border-radius: 20px 20px 0 0;
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.12);
  }

  .floating-demo-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .floating-demo-content p {
    font-size: 12px;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .floating-demo-btn {
    padding: 11px 20px;
    font-size: 13px;
    width: 100%;
  }

  .floating-demo-close {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

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

  .hero h1 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .hero-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-card {
    padding: 20px 16px;
  }

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

  .stat-label {
    font-size: 11px;
  }

  .features-grid {
    gap: 16px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .solution {
    padding: 60px 16px;
    gap: 50px;
  }

  .solution h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .solution-desc {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .mock-phone {
    width: 240px;
    border-radius: 36px;
    padding: 10px;
  }

  .mock-screen {
    min-height: 420px;
    border-radius: 28px;
  }

  .mock-header {
    padding: 18px 16px 12px;
  }

  .mock-header h4 {
    font-size: 13px;
  }

  .mock-body {
    padding: 16px;
  }

  .mock-item {
    padding: 12px;
    margin-bottom: 8px;
  }

  .mock-item-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .mock-item-name {
    font-size: 12px;
  }

  .mock-item-sub {
    font-size: 11px;
  }

  .mock-total {
    margin-top: 16px;
    padding: 14px;
  }

  .mock-total strong {
    font-size: 16px;
  }

  .mock-btn {
    padding: 12px;
    font-size: 13px;
    margin-top: 12px;
  }

  .pricing {
    padding: 60px 16px;
  }

  .pricing h2 {
    font-size: clamp(32px, 8vw, 44px);
    margin-bottom: 8px;
  }

  .pricing-subtitle {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .pricing-grid {
    gap: 20px;
  }

  .pricing-card {
    padding: 36px 22px;
    min-height: auto;
    border-radius: 18px;
  }

  .pricing-card.featured {
    transform: scale(1.02) translateY(-8px);
  }

  .pricing-card:hover {
    transform: translateY(-6px);
  }

  .pricing-card.featured:hover {
    transform: scale(1.04) translateY(-10px);
  }

  .pricing-plan {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .pricing-badge {
    font-size: 11px;
    padding: 8px 12px;
    margin-bottom: 14px;
  }

  .pricing-price {
    font-size: 44px;
    margin-bottom: 0;
  }

  .pricing-price sup {
    font-size: 12px;
  }

  .pricing-period {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .pricing-features {
    margin: 0;
  }

  .pricing-features li {
    font-size: 13px;
    padding: 12px 0;
  }

  .pricing-features li::before {
    font-size: 16px;
  }

  .pricing-btn {
    margin-top: 32px;
    padding: 16px 22px;
    font-size: 13px;
    border-radius: 12px;
  }

  footer {
    padding: 32px 16px;
  }

  .how {
    padding: 48px 16px;
  }

  .how>div:first-child {
    margin-bottom: 48px;
  }

  .how h2 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .how-desc {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .step {
    gap: 24px;
    padding: 32px 20px;
    margin: -32px -20px;
    border-radius: 12px;
  }

  .step:first-child {
    padding-top: 32px;
  }

  .step-num {
    width: 70px;
    height: 70px;
    font-size: 32px;
    border-radius: 16px;
    min-width: 70px;
  }

  .step-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .step-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .step-content h4 {
    font-size: 15px;
  }

  .step-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .faq {
    grid-template-columns: 1fr;
    padding: 48px 16px;
    gap: 48px;
  }

  .faq-left h2 {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 16px;
  }

  .faq-note {
    font-size: 15px;
    line-height: 1.7;
  }

  .faq-right {
    gap: 12px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-btn {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-icon {
    font-size: 16px;
    margin-left: 12px;
    width: 24px;
    height: 24px;
  }

  .faq-body {
    padding: 0 20px;
  }

  .faq-item.open .faq-body {
    padding: 18px 20px;
  }

  .faq-body p {
    font-size: 14px;
    line-height: 1.6;
  }

  .problem {
    grid-template-columns: 1fr;
    padding: 48px 16px;
    gap: 32px;
  }

  .problem h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .problem-desc {
    font-size: 12px;
    line-height: 1.6;
  }

  .problem-callout {
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .problem-list {
    gap: 10px;
  }

  .problem-list li {
    font-size: 12px;
    gap: 10px;
  }

  .problem .stat-card {
    padding: 24px 16px;
    margin-top: 32px;
  }

  .problem .stat-value {
    font-size: 40px;
  }

  .problem .stat-label {
    font-size: 11px;
  }
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  /* Distância do fundo */
  right: 40px;
  /* Distância da direita */
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  /* Garante que fique acima de tudo */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* Efeito de aumentar levemente ao passar o mouse */
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

/* ════════ FLOATING DEMO BOX - MOBILE ════════ */
@media (max-width: 640px) {
  .floating-demo {
    width: 320px;
    right: 20px;
    top: 100px;
    padding: 24px 24px 20px 24px;
  }

  .floating-demo-content h3 {
    font-size: 18px;
  }

  .floating-demo-content p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .floating-demo-btn {
    padding: 12px 20px;
    font-size: 12px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .floating-demo {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    top: auto;
    bottom: 120px;
    border-radius: 12px;
    padding: 50px 24px 24px 24px;
  }

  .floating-demo-content {
    padding-bottom: 0;
  }

  .floating-demo-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
  }

  .floating-demo-content p {
    font-size: 11px;
    color: #666666;
    margin: 0 0 16px 0;
    line-height: 1.4;
  }

  .floating-demo-btn {
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .floating-demo-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #ffe5e5;
    border-radius: 50%;
    color: #d63031;
    font-size: 26px;
  }

  .floating-demo-close:hover {
    background: #ffd4d4;
    color: #c92a2a;
  }
}

/* PRICING SECTION */
.pricing {
  padding: 80px 40px;
  background: #0f0f1e;
  text-align: center;
}

.pricing h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 48px;
  letter-spacing: -1px;
}

.pricing-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 20px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.pricing-card:nth-child(1) {
  background: #1e1f3a;
}

.pricing-card:nth-child(2) {
  background: #1f2a42;
  border: 2px solid #0ea5e9;
}

.pricing-card:nth-child(3) {
  background: #1e1f3a;
}

.pricing-card:nth-child(4) {
  background: #1f2a3d;
}

.pricing-card.featured {
  border: 2px solid #0ea5e9;
  background: #1f2a42;
}

.pricing-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0ea5e9;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: none;
  box-shadow: none;
}

.pricing-card.featured .pricing-badge {
  display: inline-block;
}

.pricing-plan {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-price span {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.pricing-price sup {
  font-size: 16px;
  margin-right: 0;
}

.pricing-period {
  font-size: 12px;
  color: #a0a9b8;
  margin-bottom: 12px;
  text-align: center;
}

.pricing-features {
  list-style: none;
  margin-bottom: 16px;
}

.pricing-features li {
  font-size: 12px;
  color: #a0a9b8;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 16px;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 10px 16px;
  margin-top: 12px;
  margin-bottom: 12px;
  border: none;
  border-radius: 24px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.pricing-btn.outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.pricing-btn.outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-btn.solid {
  background: #ffffff;
  color: #000000 !important;
  font-weight: 700;
}

.pricing-btn.solid:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  color: #000000 !important;
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 24px;
  }

  .pricing h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

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

  .pricing-card {
    padding: 32px 24px;
  }

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

  .pricing-btn {
    padding: 16px 20px;
    font-size: 13px;
  }
}

/* ══════════════════════════════
   MODALS
══════════════════════════════ */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  cursor: pointer;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
}

.modal-header h2 {
  font-size: 24px;
  color: var(--charcoal);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--ink-3);
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--red-dim);
  color: var(--red);
}

.modal-body {
  padding: 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}

.modal-body h3 {
  font-size: 18px;
  color: var(--charcoal);
  margin: 24px 0 12px 0;
  font-weight: 700;
}

.modal-body p {
  margin-bottom: 16px;
}

.modal-body strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 680px) {
  .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
  }

  .modal-header {
    padding: 20px 24px;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .modal-body {
    padding: 24px;
    font-size: 14px;
  }

  .modal-body h3 {
    font-size: 16px;
    margin: 20px 0 10px 0;
  }
}

/* iPad Air (820px) - Force 3 colunas */
@media (min-width: 768px) and (max-width: 1024px) {
  .pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .pricing-card {
    min-width: 0;
    transform: scale(1) !important;
    width: 100% !important;
  }

  .pricing-card.featured {
    transform: scale(1) !important;
  }
}


/* ══════════════════════════════════════════════════════
   AUTH PAGES — Login & Cadastro
   Matches landing page brand: #E53935 · #1C1C22
══════════════════════════════════════════════════════ */

/* ─── AUTH LAYOUT ─── */
html:has(.auth-screen) {
  background: var(--charcoal);
  overflow-x: hidden;
}

.auth-screen {
  min-height: 100dvh;
  background: var(--charcoal);
  position: relative;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 20px;
  margin: 0;
}

/* Diagonal stripes — same energy as hero */
.auth-screen::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    -48deg,
    transparent 0, transparent 100px,
    rgba(229, 57, 53, .03) 100px, rgba(229, 57, 53, .03) 101px
  );
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow */
.auth-screen::after {
  content: '';
  position: fixed;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 57, 53, .06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── AUTH CARD ─── */
.auth-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, .25),
    0 4px 16px rgba(0, 0, 0, .1);
  padding: 44px 40px 36px;
  animation: authCardIn .6s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes authCardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ─── AUTH HEADER ─── */
.auth-logo {
  display: block;
  margin: 0 auto 8px;
  height: 64px;
  width: auto;
  animation: authLogoIn .5s .15s ease both;
}

@keyframes authLogoIn {
  from { opacity: 0; transform: scale(.85); }
  to { opacity: 1; transform: scale(1); }
}

.auth-title {
  text-align: center;
  font-family: var(--title-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

.auth-subtitle {
  text-align: center;
  color: var(--ink-3);
  font-size: 0.88rem;
  margin: 6px 0 28px;
  font-weight: 400;
}

.auth-company-context {
  text-align: center;
  color: var(--ink-3);
  font-size: 0.82rem;
  margin: -8px 0 20px;
  padding: 8px 16px;
  background: var(--red-soft);
  border-radius: 8px;
}

.auth-company-context strong {
  color: var(--red);
  font-weight: 600;
}

/* ─── AUTH FORM ─── */
.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form label {
  display: block;
  font-family: var(--title-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--ink);
  background: #FAFAFA;
  border: 1.5px solid rgba(28, 28, 34, .12);
  border-radius: 8px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.auth-form textarea {
  height: auto;
  padding: 12px 16px;
  resize: vertical;
  line-height: 1.5;
}

.auth-form input:focus,
.auth-form textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, .08);
}

.auth-form input::placeholder {
  color: #B0B0B8;
}

/* Field with icon */
.auth-field-icon {
  position: relative;
}

.auth-field-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-3);
  font-size: 1rem;
  transition: color .2s;
  pointer-events: none;
}

.auth-form .auth-field-icon input {
  padding-left: 42px;
}

.auth-field-icon:focus-within i {
  color: var(--red);
}

.auth-form small {
  display: block;
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 0.75rem;
}

/* ─── AUTH BUTTON ─── */
.auth-submit {
  width: 100%;
  height: 50px;
  margin-top: 4px;
  font-family: var(--title-font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  transition: background .2s, transform .15s, box-shadow .2s;
}

.auth-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(229, 57, 53, .38);
}

.auth-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(229, 57, 53, .2);
}

/* ─── AUTH LINKS ─── */
.auth-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color .2s;
}

.auth-link:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.auth-forgot {
  display: block;
  text-align: right;
  margin-top: 6px;
}

/* ─── AUTH FOOTER ─── */
.auth-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(28, 28, 34, .08);
  text-align: center;
  color: var(--ink-3);
  font-size: 0.85rem;
}

.auth-legal {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  font-size: 0.72rem;
  color: var(--ink-3);
  line-height: 1.55;
  text-align: center;
}

.auth-legal a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}

.auth-legal a:hover {
  text-decoration: underline;
}

/* ─── BACK TO SITE ─── */
.auth-back {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-family: var(--title-font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

.auth-back:hover {
  color: rgba(255, 255, 255, .8);
}

.auth-back svg {
  width: 14px;
  height: 14px;
}

/* ─── LGPD CONSENT (CADASTRO) ─── */
.auth-lgpd {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: #FAFAFA;
  border-radius: 8px;
  border: 1.5px solid rgba(28, 28, 34, .08);
}

.auth-lgpd input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}

.auth-lgpd span {
  font-size: 0.78rem;
  color: var(--ink-3);
  line-height: 1.5;
}

.auth-lgpd a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}

.auth-lgpd a:hover {
  text-decoration: underline;
}

/* ─── AUTH MESSAGES (ui-toast — standalone, no style.css dependency) ─── */
.auth-screen .ui-toast-stack {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
  z-index: 1;
}

.auth-screen .ui-toast {
  position: relative;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.84rem;
  line-height: 1.5;
  box-shadow: none;
  background: var(--red-soft);
  color: var(--red-dark);
  border: 1px solid rgba(229, 57, 53, .18);
}

.auth-screen .ui-toast-error {
  background: var(--red-soft);
  color: var(--red-dark);
  border-color: rgba(229, 57, 53, .18);
}

.auth-screen .ui-toast-error .ui-toast-body {
  background: transparent;
  color: var(--red-dark);
}

.auth-screen .ui-toast-error .ui-toast-title i {
  color: var(--red);
}

.auth-screen .ui-toast-success {
  background: #E8F5E9;
  color: #2E7D32;
  border-color: rgba(46, 125, 50, .18);
}

.auth-screen .ui-toast-success .ui-toast-body {
  background: transparent;
  color: #2E7D32;
}

.auth-screen .ui-toast-success .ui-toast-title i {
  color: #2E7D32;
}

.auth-screen .ui-toast-warning {
  background: #FFF8E1;
  color: #F57F17;
  border-color: rgba(245, 127, 23, .18);
}

.auth-screen .ui-toast-warning .ui-toast-body {
  background: transparent;
  color: #F57F17;
}

.auth-screen .ui-toast-warning .ui-toast-title i {
  color: #F57F17;
}

.auth-screen .ui-toast-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.auth-screen .ui-toast-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 0.84rem;
}

.auth-screen .ui-toast-title i {
  font-size: 1rem;
}

.auth-screen .ui-toast-close {
  appearance: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: inherit;
  opacity: 0.45;
  padding: 0 2px;
  line-height: 1;
  transition: opacity .2s;
}

.auth-screen .ui-toast-close:hover {
  opacity: 1;
}

.auth-screen .ui-toast-body {
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

/* ─── FORM ROW (two columns) ─── */
.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── AUTH RESPONSIVE ─── */

/* Tablet landscape / small desktop (768px–1024px) */
@media (max-width: 1024px) {
  .auth-screen {
    padding: 28px 24px;
  }
}

/* Tablet portrait (520px–768px) */
@media (max-width: 768px) {
  .auth-screen {
    padding: 24px 20px;
  }

  .auth-card {
    padding: 36px 32px 32px;
  }

  .auth-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* Mobile (max 520px) */
@media (max-width: 520px) {
  .auth-screen {
    padding: 20px 14px;
    align-items: flex-start;
    padding-top: 24px;
  }

  .auth-card {
    padding: 28px 22px 24px;
    border-radius: 14px;
  }

  .auth-logo {
    height: 52px;
    margin-bottom: 6px;
  }

  .auth-title {
    font-size: 1.3rem;
  }

  .auth-subtitle {
    font-size: 0.82rem;
    margin: 4px 0 22px;
  }

  .auth-form {
    gap: 14px;
  }

  .auth-form label {
    font-size: 0.74rem;
    margin-bottom: 5px;
  }

  .auth-form input[type="text"],
  .auth-form input[type="email"],
  .auth-form input[type="password"],
  .auth-form textarea {
    height: 46px;
    font-size: 16px; /* Prevents iOS zoom on focus */
    border-radius: 7px;
  }

  .auth-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .auth-submit {
    height: 48px;
    font-size: 0.78rem;
    border-radius: 7px;
  }

  .auth-foot {
    margin-top: 20px;
    padding-top: 16px;
    font-size: 0.8rem;
  }

  .auth-legal {
    font-size: 0.68rem;
  }

  .auth-back {
    margin-bottom: 16px;
    font-size: 0.72rem;
  }

  .auth-lgpd {
    padding: 12px 14px;
    gap: 8px;
  }

  .auth-lgpd span {
    font-size: 0.74rem;
  }

  .auth-company-context {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
}

/* Very small phones (< 360px) */
@media (max-width: 360px) {
  .auth-screen {
    padding: 16px 10px;
  }

  .auth-card {
    padding: 24px 18px 20px;
    border-radius: 12px;
  }

  .auth-logo {
    height: 44px;
  }

  .auth-title {
    font-size: 1.15rem;
  }

  .auth-subtitle {
    font-size: 0.78rem;
    margin: 4px 0 18px;
  }

  .auth-form input[type="text"],
  .auth-form input[type="email"],
  .auth-form input[type="password"],
  .auth-form textarea {
    height: 44px;
    padding: 0 12px;
  }

  .auth-form .auth-field-icon input {
    padding-left: 38px;
  }

  .auth-field-icon i {
    left: 12px;
    font-size: 0.9rem;
  }

  .auth-submit {
    height: 46px;
  }

  .auth-lgpd span {
    font-size: 0.7rem;
  }
}

/* ══════════════════════════════
   NAV — Hamburger menu no iPad e mobile
   (colocado no final para vencer a cascata sobre `nav {}` duplicado)
══════════════════════════════ */
@media (max-width: 1024px) {
  nav {
    padding: 12px 20px !important;
    height: auto !important;
    min-height: 72px !important;
    gap: 12px !important;
    flex-wrap: nowrap;
  }

  .nav-branding {
    flex: 0 1 auto;
    gap: 10px;
    align-items: center;
  }

  .nav-logo img {
    height: 48px;
    width: auto;
  }

  .nav-toggle {
    display: flex !important;
    order: 2;
  }

  .nav-entrar {
    order: 1;
    margin-left: auto;
    padding: 8px 16px;
    font-size: 0.85rem;
    width: auto;
  }

  .nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 8;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-links {
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 16px 20px !important;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }

  .nav-links.active {
    max-height: 600px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    opacity: 1;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 680px) {
  nav {
    min-height: 64px !important;
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-links {
    top: 64px !important;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 12px 0;
  }
}

/* ══════════════════════════════════════════════════════
   HERO v2 — Apple / Fintech
   Dark · Centered · Tipografia impactante
══════════════════════════════════════════════════════ */

.hero--v2 {
  background: #080808;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
  /* anula layout de duas colunas do hero original */
  flex-direction: column !important;
}

/* Glow superior centrado */
.hero--v2::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at 50% 10%, rgba(229, 57, 53, 0.13) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Remove pseudo-elemento do hero original que conflita */
.hero--v2::after {
  display: none;
}

/* Neutraliza regras antigas de .hero-stat (light theme) */
.hero--v2 .hero-stat {
  position: static !important;
  overflow: visible !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  transition: none !important;
}

.hero--v2 .hero-stat:hover {
  background: transparent !important;
}

.hero--v2 .hero-stat::before,
.hero--v2 .hero-stat:hover::before {
  display: none !important;
}

/* Esconde efeitos decorativos do hero light que conflitam no dark */
.hero--v2 .hero-ambient,
.hero--v2 .hero-lines {
  display: none;
}

/* Wrapper central */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 840px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Pill badge */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 57, 53, 0.08);
  border: 1px solid rgba(229, 57, 53, 0.22);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 52px;
  animation: fadeUp 0.5s ease both;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* H1 */
.hero-h1,
.hero--v2 h1 {
  font-size: clamp(54px, 8.5vw, 96px) !important;
  font-weight: 800 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.04em !important;
  color: #ffffff !important;
  margin-bottom: 28px !important;
  animation: fadeUp 0.5s 0.1s ease both;
}

.hero-h1 em,
.hero--v2 h1 em {
  display: block;
  font-style: normal;
  background: linear-gradient(120deg, #ff7b7b 0%, #e53935 45%, #ff8a80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub-headline */
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.48);
  max-width: 580px;
  margin: 0 auto 52px;
  font-weight: 400;
  animation: fadeUp 0.5s 0.2s ease both;
}

.hero-sub strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

/* Botões */
.hero--v2 .hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeUp 0.5s 0.3s ease both;
}

.hero-btn-primary {
  background: #ffffff;
  color: #0a0a0a;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.hero-btn-primary:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255, 255, 255, 0.12);
}

.hero-btn-ghost {
  color: rgba(255, 255, 255, 0.65);
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.hero-btn-ghost:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  padding: 26px 40px;
  animation: fadeUp 0.5s 0.4s ease both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-value.red {
  color: var(--red);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

/* ── Mobile ── */
@media (max-width: 680px) {
  .hero--v2 {
    padding: 110px 20px 70px;
  }

  .hero-stats {
    padding: 20px 12px;
    border-radius: 14px;
    flex-wrap: wrap;
    gap: 0;
  }

  .hero-stat {
    min-width: calc(50% - 0.5px);
    padding: 14px 8px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero--v2 .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════
   TABELA DE COMPARAÇÃO DE PLANOS
   ══════════════════════════════════════════════ */
.compare-wrapper {
  max-width: 1100px;
  margin: 72px auto 0;
  position: relative;
  z-index: 1;
}

.compare-details {
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
}

.compare-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.03);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  user-select: none;
}

.compare-toggle::-webkit-details-marker { display: none; }
.compare-toggle::marker { content: ''; }

.compare-toggle:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.05);
}

.compare-toggle-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  font-style: normal;
  opacity: 0.6;
}

details[open] .compare-toggle-icon {
  transform: rotate(180deg);
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 600px;
}

/* Cabeçalho */
.compare-table thead tr {
  background: rgba(255,255,255,0.04);
}

.compare-feature-col {
  width: 38%;
  padding: 20px 24px;
  text-align: left;
}

.compare-plan-col {
  width: 15.5%;
  padding: 20px 10px;
  text-align: center;
  vertical-align: bottom;
}

.compare-plan-col.compare-plan-featured {
  background: rgba(229,57,53,0.09);
  border-left: 1px solid rgba(229,57,53,0.22);
  border-right: 1px solid rgba(229,57,53,0.22);
}

.compare-plan-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E53935;
  margin-bottom: 6px;
}

.compare-plan-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.compare-plan-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  font-weight: 400;
}

/* Linhas do body */
.compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:not(.compare-group-header):not(.compare-cta-row):hover {
  background: rgba(255,255,255,0.025);
}

/* Highlight na coluna PRO (4ª coluna = td:nth-child(4)) */
.compare-table thead th:nth-child(4),
.compare-table tbody td:nth-child(4) {
  background: rgba(229,57,53,0.05);
}

.compare-table thead th:nth-child(4) {
  border-left: 1px solid rgba(229,57,53,0.22);
  border-right: 1px solid rgba(229,57,53,0.22);
}

.compare-table tbody td:nth-child(4) {
  border-left: 1px solid rgba(229,57,53,0.1);
  border-right: 1px solid rgba(229,57,53,0.1);
}

/* Células */
.compare-table td {
  padding: 12px 10px;
  color: rgba(255,255,255,0.65);
  vertical-align: middle;
}

.compare-table td:first-child {
  padding-left: 24px;
  text-align: left;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

.compare-table td:not(:first-child) {
  text-align: center;
}

/* Cabeçalhos de grupo */
.compare-group-header td {
  padding: 10px 24px 7px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.02) !important;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
}

/* Tipos de célula */
.compare-check {
  color: #4ade80;
  font-size: 1rem;
  font-weight: 700;
}

.compare-no {
  color: rgba(255,255,255,0.18);
}

.compare-text {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
}

.compare-text.compare-highlight {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.compare-special {
  font-size: 0.73rem;
  font-weight: 700;
  color: #E53935;
  line-height: 1.4;
}

/* Linha de CTA */
.compare-cta-row {
  background: rgba(255,255,255,0.025) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

.compare-cta-row td {
  padding: 18px 10px;
}

.compare-cta-row td:first-child {
  padding-left: 24px;
}

.compare-cta-btn {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.compare-cta-btn.solid,
.compare-cta-btn.compare-cta-featured {
  background: #E53935;
  color: #fff;
  border: 1.5px solid #E53935;
}

.compare-cta-btn.solid:hover,
.compare-cta-btn.compare-cta-featured:hover {
  background: #C62828;
  border-color: #C62828;
}

.compare-cta-btn.outline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.18);
}

.compare-cta-btn.outline:hover {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

/* Mobile */
@media (max-width: 860px) {
  .compare-wrapper {
    margin-top: 56px;
  }

  .compare-feature-col {
    width: 34%;
    padding: 16px 14px;
  }

  .compare-plan-col {
    width: 16.5%;
    padding: 16px 6px;
  }

  .compare-plan-label {
    font-size: 0.72rem;
  }

  .compare-plan-sub {
    font-size: 0.62rem;
  }

  .compare-table td:first-child {
    padding-left: 14px;
    font-size: 0.76rem;
  }

  .compare-group-header td {
    padding-left: 14px;
  }

  .compare-cta-row td:first-child {
    padding-left: 14px;
  }

  .compare-cta-btn {
    padding: 8px 10px;
    font-size: 0.62rem;
  }
}