:root {
  --cream: #F8F7FF;
  --p900: #1E0A5E;
  --p800: #2D1B69;
  --p700: #4C1D95;
  --p600: #5B21B6;
  --p500: #7C3AED;
  --p400: #A78BFA;
  --p100: #EDE9FE;
  --p50: #F5F3FF;
  --o600: #C2410C;
  --o500: #EA580C;
  --o400: #F97316;
  --o100: #FFF7ED;
  --s900: #0F172A;
  --s700: #334155;
  --s600: #475569;
  --s500: #64748B;
  --s400: #94A3B8;
  --s300: #CBD5E1;
  --s200: #E2E8F0;
  --s100: #F1F5F9;
  --s50: #F8FAFC;
  --white: #FFFFFF;
  --r: 16px;
  --rl: 24px;
  --shadow: 0 4px 24px rgba(92, 33, 182, .12);
  --shadow-lg: 0 12px 48px rgba(92, 33, 182, .18);
  --ease: 0.3s cubic-bezier(.4, 0, .2, 1)
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Onest', sans-serif;
  background: var(--cream);
  color: var(--s900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

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

button {
  cursor: pointer;
  font-family: inherit
}

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

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px
}

svg.icon {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor
}

svg.icon-stroke {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--o400);
  font-size: 1.25em;
  line-height: 0.8;
  display: inline-block;
  transform: rotate(-3deg)
}

.script.light {
  color: white;
  opacity: 0.9
}

@keyframes floatPlus {

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

  50% {
    transform: translateY(-6px) scale(1.06)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-18px) rotate(-2deg)
  }
}

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

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes glowBg {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.animate-in.visible {
  opacity: 1;
  transform: none
}

.animate-in.delay-1.visible {
  transition-delay: .12s
}

.animate-in.delay-2.visible {
  transition-delay: .24s
}

.animate-in.delay-3.visible {
  transition-delay: .36s
}

.header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1300px;
  z-index: 100;
  background: rgba(30, 10, 60, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 10px 22px;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  box-shadow: 0 8px 32px rgba(14, 10, 50, .18)
}

.hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.hd-logo {
  width: 150px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease
}

.hd-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: var(--ease)
}

.hd-badge-icon {
  height: 13px;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--s200);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  padding: 8px 22px
}

.header.scrolled .hd-logo {
  filter: brightness(0) invert(0)
}

.header.scrolled .hd-badge {
  background: var(--p50);
  border-color: var(--p200);
  color: var(--p700)
}

.header.scrolled .hd-badge-icon {
  filter: none
}

.hero,
.cta-sec {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, var(--p700), var(--p600), var(--p800));
  background-size: 200% 200%;
  animation: glowBg 15s ease infinite
}

.hero {
  padding: 118px 0 64px;
  background-image: linear-gradient(135deg, var(--p700), var(--p600), var(--p800));
  background-size: 200% 200%;
  animation: glowBg 15s ease infinite
}

@media(min-width:993px) {
  .hero {
    background-attachment: fixed
  }
}

.hero::before,
.cta-sec::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167, 139, 250, .2) 0%, transparent 70%);
  border-radius: 50%
}

.hero::after,
.cta-sec::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, .15) 0%, transparent 70%);
  border-radius: 50%
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.hero h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fadeUp .55s ease .1s both
}

.hero-offer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 18px 22px;
  margin-top: 50px;
  margin-bottom: 36px;
  max-width: 100%;
  animation: fadeUp .55s ease .2s both
}

.hero-offer-plus {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--o500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(234, 88, 12, .5);
  animation: floatPlus 3s ease-in-out infinite
}

@media (min-width:993px) {
  .hero-offer-plus {
    width: 41px;
    height: 41px;
    font-size: 24px;
    bottom: -16px;
    right: -16px
  }
}

.hero-offer-plus-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 50%;
  transform: translateX(50%) translateY(6px);
  background: rgba(15, 23, 42, 0.92);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease
}

.hero-offer-plus-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.92) transparent transparent transparent
}

.hero-offer-plus:hover .hero-offer-plus-tip,
.hero-offer-plus:focus-visible .hero-offer-plus-tip {
  opacity: 1;
  transform: translateX(50%) translateY(0)
}

.hero-offer-label {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4
}

.hero-offer-price {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 500;
  color: white
}

.hero-offer-price strong {
  font-weight: 800;
  color: var(--o400)
}

.hero-offer-price-prefix {
  font-size: calc(clamp(26px, 3.2vw, 34px) - 6px)
}

.hero-offer-install {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75)
}

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

.btn-primary {
  background-color: var(--o500) !important;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(234, 88, 12, .3);
  -webkit-appearance: none
}

.btn-primary:hover {
  background-color: var(--o600) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(234, 88, 12, .5)
}

.hero-form-box {
  background: white;
  border-radius: var(--rl);
  padding: 30px 34px;
  box-shadow: 0 32px 80px rgba(14, 10, 50, .35), 0 8px 32px rgba(0, 0, 0, .12);
  color: var(--s900);
  position: relative;
  z-index: 5;
  text-align: left
}

.stats-container {
  margin-top: -32px;
  position: relative;
  z-index: 10;
  padding-bottom: 28px
}

.stats-bar {
  background: white;
  border-radius: var(--rl);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08)
}

.stat-item {
  text-align: center
}

.stat-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--p600);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.stat-stars {
  gap: 3px
}

.stat-stars svg {
  width: 22px;
  height: 22px
}

.stat-lbl {
  font-size: 13px;
  color: var(--s500);
  font-weight: 500;
  margin-top: 6px
}

.stat-div {
  border-right: 1px solid var(--s200)
}

.section {
  padding: 72px 0
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--o100);
  color: var(--o500);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px
}

.sec-tag.purple {
  background: var(--p50);
  color: var(--p600)
}

.sec-h {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--s900);
  margin-bottom: 12px
}

.sec-p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--s500);
  line-height: 1.6;
  font-weight: 500;
  max-width: 600px
}

.text-center {
  text-align: center
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 44px
}

.pain-card {
  background: white;
  border-radius: var(--rl);
  padding: 40px 32px;
  border: 1px solid var(--s200);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02)
}

.pain-card:hover {
  border-color: var(--p300);
  box-shadow: 0 20px 40px rgba(92, 33, 182, 0.08);
  transform: translateY(-5px)
}

.pain-icon {
  width: 56px;
  height: 56px;
  background: var(--s50);
  border: 1px solid var(--s200);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s600);
  margin-bottom: 24px;
  transition: var(--ease)
}

.pain-card:hover .pain-icon {
  background: var(--p50);
  border-color: var(--p200);
  color: var(--p600)
}

.pain-h {
  font-size: 20px;
  font-weight: 700;
  color: var(--s900);
  margin-bottom: 14px;
  line-height: 1.3
}

.pain-p {
  font-size: 15px;
  color: var(--s500);
  line-height: 1.6
}

.sol-sec {
  background-image: linear-gradient(135deg, #2B0854, var(--p600), #360862);
  background-size: 200% 200%;
  animation: glowBg 20s ease infinite;
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.sol-sec::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--p700);
  filter: blur(150px);
  opacity: 0.3;
  border-radius: 50%;
  pointer-events: none
}

.sol-sec::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--o500);
  filter: blur(150px);
  opacity: 0.2;
  border-radius: 50%;
  pointer-events: none
}

.sol-sec .sec-tag {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2)
}

.sol-sec .sec-h {
  color: white
}

.sol-sec .sec-p {
  color: rgba(255, 255, 255, .7)
}

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

.sol-card {
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--rl);
  padding: 36px 30px;
  transition: var(--ease)
}

.sol-card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(249, 115, 22, .5);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3)
}

.sol-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--o400);
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--ease)
}

.sol-card:hover .sol-icon {
  background: linear-gradient(135deg, var(--o400), var(--o500));
  color: white;
  border-color: transparent
}

.sol-h {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3
}

.sol-p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6
}

.pkg-sec {
  padding: 72px 0;
  background: var(--cream)
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  align-items: stretch
}

.pkg-card {
  background: white;
  border-radius: var(--rl);
  padding: 32px 24px;
  border: 1.5px solid var(--s200);
  transition: var(--ease);
  position: relative;
  display: flex;
  flex-direction: column
}

.pkg-card:hover {
  border-color: var(--p300);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg)
}

.pkg-card.featured {
  background: var(--p800);
  border-color: var(--p600);
  transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(92, 33, 182, .32);
  z-index: 2
}

.pkg-card.featured:hover {
  transform: scale(1.04) translateY(-5px)
}


.pkg-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--o500);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(234, 88, 12, 0.4)
}

.p-nome {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--p600);
  margin-bottom: 6px;
  display: flex;
  align-items: center
}

.pkg-card.featured .p-nome .script {
  color: var(--o400)
}

.p-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--s900);
  margin-bottom: 16px
}

.pkg-card.featured .p-tag {
  color: white
}

.p-desc {
  font-size: 14px;
  color: var(--s500);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--s200)
}

.pkg-card.featured .p-desc {
  color: rgba(255, 255, 255, .7);
  border-color: rgba(255, 255, 255, .1)
}

.p-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--s200)
}

.p-price-pix {
  font-size: 26px;
  font-weight: 800;
  color: var(--p600);
  letter-spacing: -.5px
}

.p-price-note {
  font-size: 11px;
  font-weight: 700;
  color: var(--s500);
  text-transform: uppercase;
  letter-spacing: .5px
}

.p-price-parcel {
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  color: var(--s500)
}

.pkg-card.featured .p-price {
  border-color: rgba(255, 255, 255, .1)
}

.pkg-card.featured .p-price-pix {
  color: white
}

.pkg-card.featured .p-price-note,
.pkg-card.featured .p-price-parcel {
  color: rgba(255, 255, 255, .7)
}

.p-lista {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1
}

.p-lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--s700);
  margin-bottom: 14px;
  line-height: 1.4
}

.p-lista svg {
  color: var(--o500);
  margin-top: 3px;
  flex-shrink: 0
}

.pkg-card.featured .p-lista li {
  color: rgba(255, 255, 255, .9)
}

.pkg-cta {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: var(--ease);
  text-align: center;
  -webkit-appearance: none
}

.pkg-cta.ol {
  background: transparent;
  border: 2px solid var(--s300);
  color: var(--s700)
}

.pkg-cta.ol:hover {
  border-color: var(--p500);
  color: var(--p600);
  background: white
}

.pkg-cta.pr {
  background-color: var(--o500) !important;
  color: white;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.2)
}

.pkg-cta.pr:hover {
  background-color: var(--o600) !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(234, 88, 12, .4)
}

.platinum-banner {
  background: linear-gradient(135deg, var(--p50), var(--p100));
  border: 2px solid var(--p300);
  padding: 22px 26px;
  text-align: left;
  border-radius: 16px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(92, 33, 182, .1)
}

.platinum-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--p600);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center
}

.platinum-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2
}

.platinum-banner strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--p700);
  margin-bottom: 4px
}

.platinum-banner p {
  font-size: 14px;
  font-weight: 500;
  color: var(--p700);
  line-height: 1.5
}

.swipe-indicator {
  display: none;
  text-align: center;
  font-size: 13px;
  color: var(--s500);
  margin-top: 16px;
  font-weight: 600;
  gap: 8px;
  align-items: center;
  justify-content: center
}

.port-sec {
  padding: 72px 0;
  background: var(--s100);
  overflow: hidden
}

.port-wrapper {
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
  position: relative
}

.port-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch
}

.port-track::-webkit-scrollbar {
  display: none
}

.port-card {
  width: 340px;
  height: 460px;
  border-radius: var(--rl);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: var(--s200);
  scroll-snap-align: center
}


.port-bg {
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  transition: background-position 3s cubic-bezier(0.2, 0.8, 0.2, 1)
}

@media (min-width:993px) {

  .port-card:hover .port-bg,
  .port-card:active .port-bg {
    background-position: center 30%
  }
}

@media (max-width:992px) {
  .port-bg {
    transition: background-position 4s ease-in-out 1s
  }

  .port-card.is-active .port-bg {
    background-position: center 30%
  }
}

.bg-haskell {
  background-image: url('./imgs/loja-nuvemshop-haskell-cosmeticos-bmwebmarketing.webp')
}

.bg-juleme {
  background-image: url('./imgs/loja-nuvemshop-juleme-hair-cosmeticos-bmwebmarketing.webp')
}

.bg-sobral {
  background-image: url('./imgs/loja-nuvemshop-sobral-design-moda-acessorios-bmwebmarketing.webp')
}

.bg-maxracer {
  background-image: url('./imgs/loja-nuvemshop-maxracer-moveis-cadeiras-gamer-bmwebmarketing.webp')
}

.bg-daroca {
  background-image: url('./imgs/loja-nuvemshop-daroca-emporio-alimentos-bmwebmarketing.webp')
}

.bg-lafinca {
  background-image: url('./imgs/loja-nuvemshop-lafinca-moda-acessorios-bmwebmarketing.webp')
}

.bg-doiseff {
  background-image: url('./imgs/loja-nuvemshop-doiseff-moda-vestuario-bmwebmarketing.webp')
}

.bg-parfumlab {
  background-image: url('./imgs/loja-nuvemshop-parfumlab-perfumaria-bmwebmarketing.webp')
}

.bg-avoaratelier {
  background-image: url('./imgs/loja-nuvemshop-avoaratelier-moda-feminina-bmwebmarketing.webp')
}

.bg-catelhlm {
  background-image: url('./imgs/loja-nuvemshop-catelhlm-hidraulicos-metais-bmwebmarketing.webp')
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  pointer-events: none
}

.port-card:hover .port-overlay,
.port-card:active .port-overlay {
  opacity: 1;
  pointer-events: all
}

.port-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  transform: translateY(10px);
  transition: transform 0.4s ease
}

.port-badge.next {
  background: #0F172A;
  color: #38BDF8;
  border-color: #38BDF8
}

.port-name {
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  transition-delay: 0.05s
}

.port-cat {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  transition-delay: 0.1s
}

.port-card:hover .port-badge,
.port-card:hover .port-name,
.port-card:hover .port-cat,
.port-card:active .port-badge,
.port-card:active .port-name,
.port-card:active .port-cat {
  transform: translateY(0)
}

.port-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px
}

.port-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--s200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--s700);
  transition: var(--ease)
}

.port-btn:hover {
  border-color: var(--p500);
  color: var(--p600);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05)
}

.vid-sec {
  padding: 72px 0;
  background: white;
  overflow: hidden
}

.vid-carousel-wrap {
  margin-top: 40px;
  position: relative
}

.vid-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 calc(50% - 160px)
}

.vid-track::-webkit-scrollbar {
  display: none
}

.vid-slide {
  flex: 0 0 300px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 0
}

.vid-frame {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: #0f172a;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  transition: transform var(--ease), box-shadow var(--ease)
}

.vid-slide:not(.is-center) .vid-frame {
  transform: scale(.92);
  opacity: .7
}

.vid-slide.is-center .vid-frame {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 28px 80px rgba(92, 33, 182, .25)
}

.vid-facade {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #000
}

.vid-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85
}

.vid-play-btn {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, .95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  transition: var(--ease)
}

.vid-slide.is-center .vid-play-btn {
  width: 64px;
  height: 64px
}

.vid-facade:hover .vid-play-btn {
  transform: scale(1.1);
  background: white
}

.vid-play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--p600);
  margin-left: 3px
}

.vid-info {
  padding: 18px 4px 0;
  text-align: center
}

.vid-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--s900);
  margin-bottom: 4px
}

.vid-store {
  font-size: 13px;
  color: var(--p600);
  font-weight: 600;
  margin-bottom: 2px
}

.vid-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--s500);
  text-transform: uppercase;
  letter-spacing: .5px
}

.vid-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px
}

.vid-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--s200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--s700);
  transition: var(--ease)
}

.vid-btn:hover {
  border-color: var(--p500);
  color: var(--p600);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .05)
}

.vid-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px
}

.vid-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--s300);
  border: none;
  cursor: pointer;
  transition: var(--ease);
  padding: 0
}

.vid-dot.active {
  background: var(--p500);
  width: 24px;
  border-radius: 4px
}

@media(min-width:993px) {
  .vid-track {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden
  }

  .vid-slide {
    flex: 0 0 calc((100% - 48px) / 4)
  }

  .vid-slide:not(.is-center) {
    transform: none;
    opacity: 1
  }

  .vid-slide:not(.is-center) .vid-frame {
    transform: scale(.95);
    opacity: .85
  }

  .vid-controls {
    display: flex
  }
}

.faq-sec {
  padding: 72px 0;
  background: var(--cream)
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0
}

.faq-item {
  background: white;
  border-radius: var(--r);
  margin-bottom: 16px;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-left: 4px solid transparent;
  transition: var(--ease)
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06)
}

.faq-item.open {
  border-left-color: var(--o500);
  box-shadow: var(--shadow)
}

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

.faq-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--s50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  color: var(--s500)
}

.faq-item.open .faq-chevron {
  background: var(--o100);
  color: var(--o500);
  transform: rotate(180deg)
}

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

.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--s700);
  line-height: 1.7;
  font-weight: 500
}

.bottom-wrap {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, var(--p700), var(--p600), var(--p800));
  background-size: 200% 200%;
  animation: glowBg 15s ease infinite
}

.bottom-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167, 139, 250, .2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.bottom-wrap::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, .15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.cta-sec {
  padding: 76px 0;
  text-align: center;
  position: relative;
  z-index: 1
}

.cta-sec .sec-h {
  color: white;
  max-width: 700px;
  margin: 0 auto 16px
}

.cta-sec .sec-p {
  color: rgba(255, 255, 255, .8);
  margin: 0 auto 42px;
  max-width: 540px
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8)
}

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

.footer-glass {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center
}

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: var(--ease);
  animation: float 4s ease-in-out 2s infinite;
  cursor: pointer
}

.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .55)
}

.btn-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--p700);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  opacity: 0;
  pointer-events: none;
  transition: var(--ease);
  cursor: pointer
}

.btn-top.show {
  opacity: 1;
  pointer-events: all
}

.btn-top:hover {
  background: var(--p600);
  transform: translateY(-3px)
}

.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease
}

.modal-bg.on {
  opacity: 1;
  pointer-events: all
}

.modal {
  background: white;
  border-radius: var(--rl);
  width: 100%;
  max-width: 520px;
  padding: 36px 32px;
  position: relative;
  transform: scale(.92) translateY(20px);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  max-height: 90vh;
  overflow-y: auto
}

.modal-bg.on .modal {
  transform: scale(1) translateY(0)
}

.modal-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--s100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s500);
  transition: var(--ease)
}

.modal-x:hover {
  background: var(--s200);
  color: var(--o500)
}

.bm-form .form-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--o100);
  color: var(--o500);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px
}

.bm-form .form-h {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--s900);
  margin-bottom: 6px;
  line-height: 1.2
}

.bm-form .form-p {
  font-size: 13px;
  color: var(--s500);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: 500
}

.bm-progress {
  width: 100%;
  height: 5px;
  background: var(--s100);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 24px
}

.bm-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--p500), var(--o400));
  border-radius: 50px;
  transition: width .5s cubic-bezier(.16, 1, .3, 1)
}

.bm-step-panel {
  display: none
}

.bm-step-panel.active {
  display: block;
  animation: fadeUp .4s cubic-bezier(.16, 1, .3, 1) both
}

.bm-greet {
  font-size: 17px;
  font-weight: 700;
  color: var(--s900);
  letter-spacing: -.3px;
  margin-bottom: 16px;
  line-height: 1.3
}

.f-field {
  margin-bottom: 16px
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.f-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--s700);
  margin-bottom: 8px
}

.f-input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1.5px solid var(--s200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  color: var(--s900);
  background: var(--s50);
  outline: none;
  transition: var(--ease);
  -webkit-appearance: none;
  appearance: none
}

.f-input:focus {
  border-color: var(--p500);
  background: white;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, .1)
}

.opt-stack {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.opt-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--s200);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .15s ease, box-shadow .2s ease;
  color: var(--s700);
  background: var(--s50);
  text-align: left;
  user-select: none
}

.opt-card:active {
  transform: scale(.98)
}

.opt-card input[type="radio"] {
  display: none
}

.opt-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: white;
  border: 1.5px solid var(--s200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease)
}

.opt-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--s500);
  transition: var(--ease)
}

.opt-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left
}

.opt-card-text small {
  font-size: 12px;
  font-weight: 500;
  color: var(--s500)
}

.pkg-opt-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--p600)
}

.opt-card.sel .pkg-opt-price {
  color: var(--p700)
}

.opt-card:hover {
  border-color: var(--p300);
  background: white
}

.opt-card.sel {
  border-color: var(--p500);
  background: var(--p50);
  color: var(--p700);
  box-shadow: 0 0 0 1px var(--p500) inset
}

.opt-card.sel .opt-card-icon {
  background: var(--p600);
  border-color: var(--p600)
}

.opt-card.sel .opt-card-icon svg {
  color: white
}

.opt-card.sel .opt-card-text small {
  color: var(--p500)
}

.bm-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 12px
}

.bm-notice.warn {
  background: var(--o100);
  color: var(--o600)
}

.bm-notice.info {
  background: var(--p50);
  color: var(--p700)
}

.bm-notice svg {
  flex-shrink: 0;
  margin-top: 1px
}

.datetime-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px
}

.bm-form-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px
}

.bm-btn-next {
  width: 100%;
  padding: 16px;
  background: var(--p600) !important;
  color: white;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--ease);
  -webkit-appearance: none;
  order: 1
}

.bm-btn-next:hover {
  background: var(--p700) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(92, 33, 182, .3)
}

.bm-btn-back {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--s500);
  padding: 0;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 12px;
  transition: var(--ease);
  cursor: pointer
}

.bm-btn-back:hover {
  color: var(--p600)
}

.f-submit {
  width: 100%;
  padding: 18px;
  background-color: var(--o500) !important;
  color: white;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 10px 25px rgba(249, 115, 22, .2);
  -webkit-appearance: none
}

.f-submit:hover {
  background-color: var(--o600) !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(234, 88, 12, .4)
}

@media (max-width:992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 20px
  }

  .hero-offer {
    margin: 40px auto 36px
  }

  .browser {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    margin-bottom: 60px
  }

  .swipe-indicator {
    display: flex
  }

  .stats-container {
    margin-top: -15px;
    padding-bottom: 40px
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 22px 20px
  }

  .stat-num {
    font-size: 26px
  }

  .stats-bar .stat-item:nth-child(1) {
    border-right: 1px solid var(--s200);
    border-bottom: 1px solid var(--s200);
    padding-bottom: 16px;
    padding-right: 10px
  }

  .stats-bar .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--s200);
    padding-bottom: 16px;
    padding-left: 10px
  }

  .stats-bar .stat-item:nth-child(3) {
    grid-column: span 2;
    padding-top: 18px
  }

  .pain-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 80px 0
  }

  .sol-grid,
  .pkg-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .pkg-grid {
    padding-top: 24px
  }

  .sol-grid::-webkit-scrollbar,
  .pkg-grid::-webkit-scrollbar {
    display: none
  }

  .sol-card,
  .pkg-card {
    flex: 0 0 85%;
    scroll-snap-align: center
  }

  .pkg-card.featured {
    order: 0;
    transform: none
  }

  .pkg-card.featured:hover {
    transform: translateY(-5px)
  }

  .port-controls {
    display: none !important
  }

  .port-track {
    gap: 16px;
    padding: 0 20px
  }

  .port-card {
    width: 85vw
  }

  .port-overlay {
    opacity: 1 !important;
    pointer-events: none
  }

  .port-badge,
  .port-cat,
  .port-name,
  .port-meta {
    transform: translateY(0) !important
  }

  .f-row {
    grid-template-columns: 1fr
  }

  .datetime-wrap {
    grid-template-columns: 1fr
  }
}

@media (max-width:600px) {
  .hd-inner {
    padding: 0 10px
  }

  .hd-badge {
    padding: 5px 10px
  }

  .hd-badge-plus {
    display: none
  }

  .modal {
    padding: 28px 18px
  }

  .hero h2 {
    font-size: 26px
  }

  .hero-form-box {
    padding: 28px 22px
  }

  .vid-track {
    padding: 0 calc(50% - 140px)
  }

  .vid-slide {
    flex: 0 0 260px
  }

  .opt-card {
    padding: 12px 14px
  }
}


.vid-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 102px;
  height: 102px;
  cursor: grab;
  user-select: none;
  touch-action: none
}

.vid-bubble:active {
  cursor: grabbing
}

.vid-bubble-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .35), 0 0 0 4px white, 0 0 0 7px var(--p500);
  position: relative;
  animation: float 4s ease-in-out infinite
}

.vid-bubble-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #000
}

.vid-bubble-facade iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220%;
  height: 220%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none
}

.vid-bubble-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .15);
  transition: background .2s ease
}

.vid-bubble-facade:hover .vid-bubble-play {
  background: rgba(0, 0, 0, .32)
}

.vid-bubble-play svg {
  width: 30px;
  height: 30px;
  fill: white;
  margin-left: 3px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4))
}

.vid-bubble-close {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--s900);
  color: white;
  border: 2px solid white;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3)
}

.vid-bubble-wa {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 30px;
  height: 30px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  border: 2px solid white;
  z-index: 2;
  transition: var(--ease)
}

.vid-bubble-wa:hover {
  transform: scale(1.15)
}

.vid-bubble-wa svg {
  width: 16px;
  height: 16px
}

@media(max-width:600px) {
  .vid-bubble {
    width: 84px;
    height: 84px;
    bottom: 18px;
    right: 18px
  }

  .vid-bubble-play svg {
    width: 24px;
    height: 24px
  }

  .vid-bubble-close {
    width: 20px;
    height: 20px;
    font-size: 10px
  }

  .vid-bubble-wa {
    width: 26px;
    height: 26px
  }

  .vid-bubble-wa svg {
    width: 14px;
    height: 14px
  }
}

.vid-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease
}

.vid-lightbox.on {
  opacity: 1;
  pointer-events: all
}

.vid-lightbox-inner {
  position: relative;
  width: 92%;
  max-width: 420px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6)
}

.vid-lightbox-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0
}

.vid-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity .2s
}

.vid-lightbox-close:hover {
  opacity: 1
}

:root {
  --danger: #E5484D;
  --danger-bg: #FEF2F2
}

/* Before & After Slider styles */
.before-after-container {
  max-width: 800px;
  margin: 44px auto 0;
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--s200);
  background: var(--white);
  aspect-ratio: 16 / 11.5;
  user-select: none;
  touch-action: pan-y;
}

.image-after,
.image-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-after {
  z-index: 1;
}

.image-before {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  will-change: clip-path;
}

.image-after img,
.image-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Badges */
.slider-badge {
  position: absolute;
  bottom: 20px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.badge-before {
  left: 20px;
  background: #DC2626;
  /* Traffic light red */
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-after {
  right: 20px;
  background: var(--p700);
  /* Brand purple */
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Slider Handle */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 0;
  z-index: 4;
  pointer-events: none;
  transform: translateX(-50%);
  will-change: left;
}

.slider-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  border: 2px solid white;
}

.slider-button svg {
  width: 20px;
  height: 20px;
}

.slider-tooltip {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.85);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.85) transparent transparent transparent;
}

/* Invisible Range Input Overlay */
.slider-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  touch-action: pan-y;
}

.slider-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 100%;
}

.slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 100%;
}

.slider-range::-moz-range-track {
  width: 100%;
  height: 100%;
}

.slider-range::-moz-range-thumb {
  width: 40px;
  height: 100%;
}

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

.metodo-line {
  display: none
}

.metodo-step {
  background: white;
  border-radius: var(--rl);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(92, 33, 182, 0.04);
  border: 1.5px solid var(--s200);
  transition: var(--ease);
  position: relative;
  z-index: 1;
  text-align: left
}

.metodo-step:hover {
  border-color: var(--p300);
  box-shadow: 0 20px 40px rgba(92, 33, 182, 0.08);
  transform: translateY(-5px)
}

.metodo-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--p700);
  margin-bottom: 16px;
  line-height: 1
}

.metodo-num::after {
  content: '.'
}

.metodo-h {
  font-size: 20px;
  font-weight: 700;
  color: var(--s900);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  line-height: 1.3;
  border-bottom: 1px solid var(--s200);
  padding-bottom: 16px
}

.metodo-p {
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.6;
  margin-bottom: 18px
}

.metodo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.metodo-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--s700);
  line-height: 1.5
}

.metodo-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--o500);
  flex-shrink: 0;
  margin-top: 7px
}

.metodo-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: left;
  max-width: 660px;
  margin: 40px auto 0;
  padding: 18px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  position: relative;
  z-index: 1;
  line-height: 1.5
}

.metodo-seal .icon {
  width: 24px;
  height: 24px;
  fill: var(--o400);
  flex-shrink: 0
}

.metodo-seal strong {
  color: var(--white);
  font-weight: 700
}

@media (max-width:992px) {
  .metodo-flow {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .metodo-step {
    padding: 30px 24px
  }

  .metodo-line {
    display: none
  }

  .before-after-container {
    max-width: 100%;
    margin: 32px auto 0;
  }

  .slider-badge {
    bottom: 8px;
    padding: 4px 8px;
    font-size: 8.5px;
  }

  .badge-before {
    left: 12px;
  }

  .badge-after {
    right: 12px;
  }
}

/* === Ajustes finos de espaçamento (revisão) === */
@media (max-width:992px) {
  .header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 9px 18px
  }

  .hero {
    padding: 96px 0 44px
  }

  .hero-offer {
    margin-bottom: 26px
  }

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

  .section {
    padding: 52px 0
  }

  .sol-sec {
    padding: 56px 0
  }

  .port-sec {
    padding: 52px 0
  }

  .vid-sec {
    padding: 52px 0
  }

  .pkg-sec {
    padding: 52px 0
  }

  .faq-sec {
    padding: 52px 0
  }

  .cta-sec {
    padding: 56px 0
  }

  .pain-grid,
  .metodo-flow {
    margin-top: 32px
  }

  .port-wrapper {
    margin-top: 28px
  }

  .vid-carousel-wrap {
    margin-top: 28px
  }

  .pkg-grid {
    margin-top: 28px
  }

  .faq-list {
    margin-top: 28px
  }

  .sec-tag {
    margin-bottom: 14px
  }

  .platinum-banner {
    flex-direction: column;
    text-align: center;
    padding: 18px
  }
}

@media (max-width:600px) {
  .hero {
    padding: 105px 0 35px
  }

  .hero-form-box {
    padding: 24px 20px;
    margin-top: -30px;
    margin-bottom: 30px
  }

  .stats-bar {
    padding: 20px 16px
  }
}

/* Instagram Social Proof */
.insta-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background: var(--s50);
  border: 1px solid var(--s200);
  padding: 6px 12px 6px 8px;
  border-radius: 50px;
  text-align: left;
}

.insta-avatar-wrapper {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1.8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.insta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid white;
}

.insta-avatar-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--p100);
  color: var(--p700);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid white;
}

.insta-avatar-fallback {
  width: 16px;
  height: 16px;
}

.insta-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.insta-handle-row {
  display: flex;
  align-items: center;
  gap: 3px;
}

.insta-handle {
  font-size: 13px;
  font-weight: 700;
  color: var(--s900);
  letter-spacing: -0.1px;
}

.insta-verified {
  width: 12px;
  height: 12px;
  fill: #0095f6;
  flex-shrink: 0;
}

.insta-followers {
  font-size: 11px;
  color: var(--s500);
  font-weight: 600;
  margin-top: 1px;
}

/* Transitions disabled for reduced motion if preferred */
/* --- Conferencia visual do WhatsApp (ultima tela) --- */
/* So aparece depois que o numero fica completo. Numero maior e com espaco
   entre os digitos: e isso que faz a pessoa RELER em vez de reconhecer o
   formato e passar batido. Nao trava nada, nao adiciona etapa. */
/* --- Prefixo do pais no campo de WhatsApp ---
   Gente digitava o 55 achando que faltava o codigo do pais, e o numero virava
   5521982470989: a mascara cortava nos 11 primeiros digitos, sobrava
   55219824709, e a validacao recusava. O lead se perdia sem ninguem saber.
   Mostrando o +55 ali, ninguem digita de novo.
   O prefixo NAO entra no valor do campo - e so um rotulo por cima. Por isso
   quem e de Santa Maria (DDD 55, que existe) continua digitando normal. */
.bm-whats-wrap {
  position: relative;
  display: block;
}
.bm-whats-pais {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  line-height: 1;
  color: var(--s900);
  pointer-events: none;      /* clicar no prefixo foca o campo, nao trava o toque */
  user-select: none;
  white-space: nowrap;
}
.bm-whats-pais::after {
  content: "";
  width: 1px;
  height: 20px;
  margin-left: 4px;
  background: var(--s200);
}
/* O recuo tem que caber o prefixo inteiro; menos que isso e o numero comeca por
   baixo dele. E o `width:100%` do .f-input ja garante que o campo nao estoure. */
.bm-whats-wrap .f-input { padding-left: 84px; }

/* Mobile: a bandeira e o +55 continuam, so encolhem. Testado ate 320px de
   largura - abaixo disso nao existe celular em uso. O numero completo
   "(21) 98247-0989" precisa de ~150px, e sobra folga. */
@media (max-width: 480px) {
  .bm-whats-pais { left: 11px; gap: 3px; font-size: 15px; }
  .bm-whats-pais::after { height: 18px; margin-left: 3px; }
  .bm-whats-wrap .f-input { padding-left: 74px; padding-right: 10px; }
}
@media (max-width: 360px) {
  .bm-whats-pais { left: 9px; font-size: 14px; }
  .bm-whats-wrap .f-input { padding-left: 68px; font-size: 15px; }
}

.bm-confere {
  display: none;
  margin-top: 12px;
  background: #e1f5ee;
  border-radius: 12px;
  padding: 12px 16px;
}
.bm-confere.on { display: block; }
.bm-confere-rot {
  display: block;
  font-size: 13px;
  color: #0f6e56;
  margin-bottom: 2px;
}
/* O +55 e o numero na mesma linha. `flex-wrap` para que, se um dia o numero
   crescer ou a fonte do sistema for maior, ele desca em vez de vazar a caixa. */
.bm-confere-linha {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
/* Menor e mais claro que o numero de proposito: reforca que o pais ja esta
   contemplado, sem competir com o que a pessoa precisa reler digito a digito. */
.bm-confere-pais {
  font-size: 15px;
  font-weight: 600;
  color: #0f6e56;
  letter-spacing: 0;
  white-space: nowrap;
}
.bm-confere-num {
  font-size: 22px;
  font-weight: 700;
  color: #04342c;
  letter-spacing: 1px;
  line-height: 1.3;
}
@media (max-width: 360px) {
  .bm-confere-pais { font-size: 14px; }
  .bm-confere-num  { font-size: 20px; }
}
