/* ============================================================
 *  MAIS DELIVERY LP v6 — SENIOR FRONTEND POLISH
 *  Design: Editorial Confidence — white + red dominant
 *  Paleta: vermelho #E10D20 · âmbar #FFA000 · dark #0f0f0f
 *  Fontes: Nunito (headings 900) · Nunito Sans (body)
 * ============================================================ */

:root {
  --red: #E10D20;
  --red-dark: #B80A1A;
  --red-glow: rgba(225, 13, 32, .12);
  --amber: #FFA000;
  --amber-dark: #E08F00;
  --dark: #0f0f0f;
  --dark-soft: #161616;
  --dark-card: #1c1c1c;
  --gray-800: #2a2a2a;
  --gray-600: #555;
  --gray-400: #999;
  --gray-200: #e2e2e2;
  --gray-100: #f5f5f5;
  --cream: #FFF9F0;
  --white: #ffffff;
  --green: #22c55e;
  --font-h: 'Nunito', sans-serif;
  --font-b: 'Nunito Sans', sans-serif;
  --r: 16px;
  --r-sm: 10px;
  --r-xs: 6px;
  --ease: .35s cubic-bezier(.4, 0, .2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow: 0 4px 24px rgba(0, 0, 0, .1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .14);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-b);
  color: var(--dark);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

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

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

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px
}

/* Grain overlay for dark sections */
.grain {
  position: relative
}

.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E")
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--ease);
  background: transparent
}

.nav.scrolled {
  background: rgba(15, 15, 15, .96);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .05)
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-brand {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--dark);
  letter-spacing: -.6px;
  transition: var(--ease)
}

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

.nav.scrolled .nav-brand {
  color: var(--white)
}

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

.nav-links a {
  color: var(--gray-600);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
  transition: var(--ease);
  position: relative
}

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

.nav-links a:hover::after {
  width: 100%
}

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

.nav.scrolled .nav-links a {
  color: rgba(255, 255, 255, .55)
}

.nav.scrolled .nav-links a:hover {
  color: var(--white)
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .2px;
  transition: var(--ease);
  box-shadow: 0 4px 16px rgba(225, 13, 32, .25)
}

.nav-cta::after {
  display: none !important
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(225, 13, 32, .35)
}

/* Hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 101
}

.nav-ham span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: var(--ease);
  border-radius: 2px
}

.nav.scrolled .nav-ham span {
  background: var(--white)
}

@media(max-width:768px) {
  .nav-ham {
    display: flex
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .3)
  }

  .nav-links.open {
    right: 0
  }

  .nav-links a {
    color: rgba(255, 255, 255, .6) !important;
    font-size: 1rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    width: 100%
  }

  .nav-links a:hover {
    color: var(--white) !important
  }

  .nav-links a::after {
    display: none
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    display: block;
    width: 100%
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
  padding: 110px 0 70px
}

/* Red diagonal accent */
.hero-accent {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 130%;
  background: var(--red);
  transform: skewX(-8deg);
  opacity: .04;
  border-radius: 60px;
  pointer-events: none
}

.hero-accent-2 {
  position: absolute;
  bottom: -20%;
  left: 55%;
  width: 30%;
  height: 80%;
  background: var(--amber);
  transform: skewX(12deg);
  opacity: .03;
  border-radius: 40px;
  pointer-events: none
}

/* Dot pattern */
.hero-dots {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 180px;
  height: 180px;
  opacity: .08;
  pointer-events: none;
  background: radial-gradient(circle 1.5px at center, var(--red) 100%, transparent 100%);
  background-size: 20px 20px
}

.hero-dots-2 {
  position: absolute;
  bottom: 80px;
  right: 60px;
  width: 120px;
  height: 120px;
  opacity: .05;
  pointer-events: none;
  background: radial-gradient(circle 1.5px at center, var(--gray-400) 100%, transparent 100%);
  background-size: 18px 18px
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero-content {
  max-width: 580px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 13, 32, .06);
  border: 1.5px solid rgba(225, 13, 32, .12);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 28px;
  letter-spacing: .3px;
  animation: fadeUp .7s ease
}

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

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -.5px;
  animation: fadeUp .7s ease .1s both
}

.hero h1 .acc {
  color: var(--amber)
}

.hero h1 .hl {
  color: var(--red);
  position: relative
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeUp .7s ease .2s both
}

.hero-sub strong {
  color: var(--dark);
  font-weight: 700
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeUp .7s ease .3s both
}

/* Primary CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 17px 36px;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1rem;
  transition: var(--ease);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(225, 13, 32, .3);
  letter-spacing: .2px
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transition: .6s
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(225, 13, 32, .4)
}

.btn-primary:hover::before {
  left: 100%
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(225, 13, 32, .3)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-600);
  padding: 17px 24px;
  font-weight: 600;
  font-size: .92rem;
  transition: var(--ease)
}

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

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--dark);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .95rem;
  transition: var(--ease);
  border: none;
  cursor: pointer
}

.btn-amber:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 160, 0, .3)
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .95rem;
  transition: var(--ease);
  border: none;
  cursor: pointer
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(225, 13, 32, .3)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--red);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .92rem;
  border: 2px solid var(--red);
  transition: var(--ease);
  cursor: pointer
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px)
}

/* Trust counters */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  animation: fadeUp .7s ease .4s both
}

.ti {
  padding: 18px 16px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  transition: var(--ease);
  position: relative;
  overflow: hidden
}

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

.ti:hover {
  background: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-sm)
}

.ti:hover::before {
  transform: scaleX(1)
}

.ti-num {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px
}

.ti-num sub {
  font-size: .55em;
  color: var(--amber);
  font-weight: 700;
  vertical-align: baseline
}

.ti-label {
  font-size: .65rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  line-height: 1.3
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeUp .8s ease .25s both
}

.phone-wrap {
  position: relative;
  width: 280px
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(225, 13, 32, .08) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite
}

.phone-mock {
  width: 280px;
  height: 560px;
  background: var(--dark-card);
  border-radius: 38px;
  border: 3px solid var(--gray-200);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, .05);
  animation: phoneFloat 5s ease-in-out infinite
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
  z-index: 2
}

.phone-screen {
  padding: 38px 14px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(180deg, #191919 0%, #111 100%)
}

.phone-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px
}

.phone-brand {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: .8rem;
  color: var(--white);
  letter-spacing: -.3px
}

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

.phone-loc {
  font-size: .6rem;
  color: var(--gray-400)
}

.phone-cats {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
  overflow: hidden
}

.phone-cat {
  padding: 5px 10px;
  border-radius: 16px;
  font-size: .55rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .05);
  color: var(--gray-400);
  white-space: nowrap
}

.phone-cat.on {
  background: var(--red);
  color: var(--white)
}

.phone-card {
  display: flex;
  gap: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, .035);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .05);
  align-items: center;
  transition: var(--ease)
}

.phone-card:hover {
  background: rgba(255, 255, 255, .06)
}

.phone-em {
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .04);
  border-radius: 8px;
  flex-shrink: 0
}

.phone-info {
  flex: 1;
  min-width: 0
}

.phone-nm {
  font-size: .65rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.phone-mt {
  font-size: .5rem;
  color: var(--gray-400);
  margin-top: 1px
}

.phone-st {
  font-size: .5rem;
  color: var(--amber);
  margin-top: 2px
}

/* Floating toasts */
.toast {
  position: absolute;
  padding: 11px 15px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: .72rem;
  white-space: nowrap;
  z-index: 3;
  box-shadow: var(--shadow)
}

.toast.r {
  right: -35px;
  top: 80px;
  animation: toastSlide .6s ease .9s both
}

.toast.l {
  left: -45px;
  top: 260px;
  animation: toastSlide .6s ease 1.3s both
}

.toast.b {
  left: -25px;
  bottom: 100px;
  animation: toastSlide .6s ease 1.7s both
}

.toast-ico {
  font-size: 1rem
}

.toast strong {
  display: block;
  color: var(--dark);
  font-weight: 800;
  font-size: .75rem
}

.toast span {
  color: var(--gray-400);
  font-size: .6rem
}

.toast.r {
  border-left: 3px solid var(--green)
}

.toast.l {
  border-left: 3px solid var(--amber)
}

.toast.b {
  border-left: 3px solid var(--red)
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes toastSlide {
  from {
    opacity: 0;
    transform: translateX(16px) scale(.95)
  }

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

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

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

@keyframes glowPulse {

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

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1
  }
}

@media(max-width:768px) {
  .hero {
    padding: 100px 0 50px;
    min-height: auto
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center
  }

  .hero-content {
    max-width: 100%
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
  }

  .hero-actions {
    justify-content: center
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
    justify-items: stretch
  }

  .hero-visual {
    order: -1
  }

  .phone-wrap {
    width: 200px
  }

  .phone-mock {
    width: 200px;
    height: 400px;
    border-radius: 28px
  }

  .toast {
    display: none
  }

  .hero-accent,
  .hero-dots,
  .hero-dots-2 {
    display: none
  }
}

/* ============ SOCIAL PROOF BAR ============ */
.sp-bar {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  position: relative
}

.sp-track {
  display: flex;
  gap: 48px;
  animation: ticker 20s linear infinite;
  width: max-content
}

.sp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  white-space: nowrap
}

.sp-item strong {
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-h)
}

.sp-sep {
  color: rgba(255, 255, 255, .2);
  font-size: .6rem
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ============ PERSONA ============ */
.persona {
  padding: 90px 0;
  background: var(--white)
}

.persona .wrap {
  max-width: 920px
}

.persona-head {
  text-align: center;
  margin-bottom: 52px
}

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

.persona-card {
  padding: 32px 24px;
  border-radius: var(--r);
  border: 2px solid var(--gray-200);
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default
}

.persona-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform .4s ease
}

.persona-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

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

.persona-card.hl {
  border-color: var(--red);
  background: rgba(225, 13, 32, .03)
}

.persona-card.hl::before {
  background: var(--red);
  transform: scaleX(1)
}

.persona-ico {
  font-size: 2.6rem;
  margin-bottom: 16px
}

.persona-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--dark)
}

.persona-desc {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.55
}

@media(max-width:768px) {
  .persona-grid {
    grid-template-columns: 1fr
  }

  .persona {
    padding: 64px 0
  }
}

/* ============ PROBLEMA ============ */
.problema {
  padding: 90px 0;
  background: var(--cream);
  position: relative
}

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

.pb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.pb-dores {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px
}

.pb-dor {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid transparent;
  transition: var(--ease);
  box-shadow: var(--shadow-sm)
}

.pb-dor:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateX(4px)
}

.pb-dor-ico {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 13, 32, .06);
  border-radius: 10px
}

.pb-dor-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: 4px
}

.pb-dor-text {
  font-size: .84rem;
  color: var(--gray-600);
  line-height: 1.55
}

.pb-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px
}

.pb-solution {
  padding: 36px 30px;
  background: var(--dark);
  border-radius: var(--r);
  color: var(--white);
  position: relative;
  overflow: hidden
}

.pb-solution::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(225, 13, 32, .15), transparent);
  pointer-events: none
}

.pb-solution h3 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 12px;
  position: relative
}

.pb-solution p {
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  line-height: 1.65;
  position: relative
}

.pb-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  position: relative
}

.pb-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--amber);
  transition: var(--ease)
}

.pb-perk:hover {
  background: rgba(255, 255, 255, .1)
}

.pb-perk::before {
  content: '✓';
  color: var(--green);
  font-weight: 700
}

@media(max-width:768px) {
  .pb-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .problema {
    padding: 64px 0
  }

  .pb-right {
    position: static
  }
}

/* ============ COMO FUNCIONA ============ */
.como {
  padding: 90px 0;
  background: var(--white);
  position: relative
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  position: relative
}

/* Connector line */
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 14px);
  right: calc(16.66% + 14px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 8px, transparent 8px, transparent 16px);
  opacity: .25;
  z-index: 0
}

.step {
  padding: 36px 28px;
  border-radius: var(--r);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  position: relative;
  transition: var(--ease);
  z-index: 1
}

.step:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg)
}

.step-num {
  position: absolute;
  top: -16px;
  left: 28px;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(225, 13, 32, .35);
  z-index: 2
}

.step-ico {
  font-size: 2.2rem;
  margin: 12px 0 16px
}

.step h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--dark)
}

.step p {
  font-size: .84rem;
  color: var(--gray-600);
  line-height: 1.6
}

@media(max-width:768px) {
  .steps {
    grid-template-columns: 1fr
  }

  .steps::before {
    display: none
  }

  .como {
    padding: 64px 0
  }
}

/* ============ BENEFÍCIOS ============ */
.beneficios {
  padding: 90px 0;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden
}

.beneficios::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 13, 32, .08), transparent 70%);
  pointer-events: none
}

.beneficios::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 160, 0, .05), transparent 70%);
  pointer-events: none
}

.ben-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 52px;
  position: relative;
  z-index: 1
}

.ben-card {
  padding: 30px 26px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: var(--ease);
  position: relative;
  overflow: hidden
}

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

.ben-card:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-3px)
}

.ben-card:hover::before {
  transform: scaleY(1)
}

.ben-card.hl {
  border-color: rgba(225, 13, 32, .3);
  background: rgba(225, 13, 32, .06)
}

.ben-card.hl::before {
  background: var(--red);
  transform: scaleY(1)
}

.ben-ico {
  font-size: 1.8rem;
  margin-bottom: 14px
}

.ben-card h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px
}

.ben-card p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6
}

.ben-hl {
  color: var(--amber);
  font-weight: 700
}

@media(max-width:768px) {
  .ben-grid {
    grid-template-columns: 1fr
  }

  .beneficios {
    padding: 64px 0
  }
}

/* ============ ROI ============ */
.roi {
  padding: 90px 0;
  background: var(--cream)
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 52px
}

.roi-calc {
  background: var(--white);
  border-radius: var(--r);
  padding: 36px 32px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden
}

.roi-calc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--amber))
}

.roi-calc h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 24px;
  color: var(--dark)
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100)
}

.roi-row:last-of-type {
  border-bottom: none
}

.roi-lbl {
  font-size: .88rem;
  color: var(--gray-600)
}

.roi-val {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--dark)
}

.roi-val.green {
  color: var(--green)
}

.roi-val.amb {
  color: var(--amber-dark)
}

.roi-total {
  margin-top: 20px;
  padding: 22px;
  background: var(--dark);
  border-radius: var(--r-sm);
  text-align: center
}

.roi-total small {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px
}

.roi-total strong {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--green)
}

.roi-note {
  font-size: .72rem;
  color: var(--gray-400);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5
}

.roi-right {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.roi-perk {
  display: flex;
  gap: 16px;
  padding: 22px 20px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--ease)
}

.roi-perk:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px)
}

.roi-perk-ico {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 13, 32, .05);
  border-radius: 12px
}

.roi-perk h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 3px
}

.roi-perk p {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.5
}

@media(max-width:768px) {
  .roi-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .roi {
    padding: 64px 0
  }
}

/* ============ COMPARATIVO ============ */
.comp {
  padding: 90px 0;
  background: var(--white)
}

.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 44px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.comp-table thead th {
  padding: 18px 22px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .85rem;
  text-align: left;
  letter-spacing: .3px
}

.comp-table thead th:first-child {
  background: #f0f0f0;
  color: var(--gray-600);
  width: 38%
}

.comp-table thead th:nth-child(2) {
  background: var(--red);
  color: var(--white)
}

.comp-table thead th:last-child {
  background: var(--gray-600);
  color: var(--white)
}

.comp-table tbody td {
  padding: 14px 22px;
  font-size: .84rem;
  border-bottom: 1px solid var(--gray-100)
}

.comp-table tbody td:first-child {
  font-weight: 600;
  color: var(--dark)
}

.comp-table tbody td:nth-child(2) {
  background: rgba(225, 13, 32, .015);
  border-left: 3px solid var(--red)
}

.comp-table tbody tr:last-child td {
  border-bottom: none;
  font-weight: 700
}

.comp-table tbody tr:hover td {
  background: rgba(225, 13, 32, .03)
}

.badge-g {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(34, 197, 94, .1);
  color: var(--green);
  font-size: .76rem;
  font-weight: 600
}

.badge-r {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(225, 13, 32, .07);
  color: var(--red);
  font-size: .76rem;
  font-weight: 600
}

@media(max-width:768px) {
  .comp-table {
    display: block;
    overflow-x: auto;
    font-size: .72rem
  }

  .comp-table thead th,
  .comp-table tbody td {
    padding: 10px 14px;
    white-space: nowrap
  }

  .comp {
    padding: 64px 0
  }
}

/* ============ DEPOIMENTOS ============ */
.depo {
  padding: 90px 0;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden
}

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

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  position: relative;
  z-index: 1
}

.depo-card {
  padding: 30px 26px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  position: relative
}

.depo-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(225, 13, 32, .15);
  line-height: 1;
  pointer-events: none
}

.depo-card:hover {
  background: rgba(255, 255, 255, .05);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3)
}

.depo-result {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 4px
}

.depo-result-label {
  font-size: .68rem;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 600;
  margin-bottom: 18px
}

.depo-text {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 22px
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.depo-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, .1)
}

.depo-name {
  font-weight: 700;
  font-size: .85rem;
  color: var(--white)
}

.depo-city {
  font-size: .72rem;
  color: rgba(255, 255, 255, .35)
}

@media(max-width:768px) {
  .depo-grid {
    grid-template-columns: 1fr
  }

  .depo {
    padding: 64px 0
  }
}

/* ============ FAQ ============ */
.faq {
  padding: 90px 0;
  background: var(--cream)
}

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

.faq-item {
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transition: var(--ease)
}

.faq-item:hover {
  border-color: rgba(225, 13, 32, .2)
}

.faq-item.open {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(225, 13, 32, .06)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  gap: 16px;
  user-select: none
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(225, 13, 32, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 400
}

.faq-item.open .faq-q-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1)
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7
}

@media(max-width:768px) {
  .faq {
    padding: 64px 0
  }
}

/* ============ FORM CTA ============ */
.form-section {
  padding: 90px 0;
  background: var(--white);
  position: relative
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto
}

.form-left h2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px
}

.form-left p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 28px
}

.form-perks {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.form-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark)
}

.form-perk::before {
  content: '✓';
  width: 26px;
  height: 26px;
  background: var(--green);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(34, 197, 94, .25)
}

.form-box {
  background: var(--gray-100);
  border-radius: var(--r);
  padding: 15px;
  border: 2px solid var(--gray-200);
  position: relative;
  overflow: hidden
}

.form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--amber))
}

.form-box .field {
  margin-bottom: 18px
}

.form-box label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  font-family: var(--font-h);
  letter-spacing: .2px
}

.form-box input,
.form-box select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xs);
  font-family: var(--font-b);
  font-size: .92rem;
  background: var(--white);
  transition: var(--ease);
  color: var(--dark)
}

.form-box input:focus,
.form-box select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(225, 13, 32, .08)
}

.form-box input::placeholder {
  color: var(--gray-400)
}

.form-box .submit-btn {
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: var(--r-xs);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--ease);
  margin-top: 10px;
  box-shadow: 0 4px 16px rgba(225, 13, 32, .25);
  letter-spacing: .2px;
  position: relative;
  overflow: hidden
}

.form-box .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  transition: .6s
}

.form-box .submit-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(225, 13, 32, .35)
}

.form-box .submit-btn:hover::before {
  left: 100%
}

.form-box .submit-btn:active {
  transform: translateY(0)
}

.form-ok {
  display: none;
  text-align: center;
  padding: 40px 20px
}

.form-ok .ok-ico {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block
}

.form-ok h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px
}

.form-ok p {
  font-size: .9rem;
  color: var(--gray-600)
}

.form-urgency {
  text-align: center;
  margin-top: 16px;
  font-size: .78rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .2px
}

@media(max-width:768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .form-section {
    padding: 64px 0
  }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .4);
  padding: 48px 0 110px;
  text-align: center;
  font-size: .82rem;
  position: relative
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 13, 32, .3), transparent)
}

.footer-brand {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.5px
}

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

.footer-tagline {
  color: rgba(255, 255, 255, .35);
  font-size: .82rem;
  margin-bottom: 20px
}

.footer-states {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto
}

.footer-state {
  font-size: .68rem;
  color: rgba(255, 255, 255, .22);
  font-weight: 500
}

.footer-copy {
  font-size: .68rem;
  color: rgba(255, 255, 255, .18)
}

/* ============ STICKY MOBILE ============ */
.stky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: rgba(15, 15, 15, .97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .2)
}

.stky .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: .92rem
}

@media(max-width:768px) {
  .stky {
    display: block
  }
}

/* ============ WHATSAPP ============ */
.wpp {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 80;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transition: var(--ease);
  cursor: pointer
}

.wpp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .45)
}

.wpp svg {
  width: 28px;
  height: 28px;
  fill: var(--white)
}

@media(max-width:768px) {
  .wpp {
    bottom: 80px;
    right: 14px;
    width: 50px;
    height: 50px
  }

  .wpp svg {
    width: 24px;
    height: 24px
  }
}

/* ============ SECTION TITLES ============ */
.slabel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 14px
}

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

.slabel-l {
  color: var(--amber)
}

.slabel-l::before {
  background: var(--amber)
}

.stitle {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.3px
}

.stitle-l {
  color: var(--white)
}

.ssub {
  font-size: .98rem;
  color: var(--gray-600);
  /*max-width:540px*/
  ;
  line-height: 1.65
}

.ssub-l {
  color: rgba(255, 255, 255, .5)
}

.section-head {
  text-align: center;
  margin-bottom: 0
}

.section-head .slabel {
  justify-content: center
}

.section-head .slabel::before {
  display: none
}

.section-head .ssub {
  margin-left: auto;
  margin-right: auto
}

/* ============ SCROLL ANIMATIONS ============ */
.fi {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1)
}

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

.fi.d1 {
  transition-delay: .08s
}

.fi.d2 {
  transition-delay: .16s
}

.fi.d3 {
  transition-delay: .24s
}

.fi.d4 {
  transition-delay: .32s
}