/* BANNER PROMOCIONAL */

.promo-banner {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #c4006a 0%, #ff6dba 40%, #ff9ed6 60%, #ff6dba 80%, #c4006a 100%);
  background-size: 200% 100%;
  animation: promo-bg-shift 6s linear infinite;
  padding: 9px 0;
  position: relative;
  z-index: 1100;
  box-shadow: 0 2px 14px rgba(255, 109, 186, 0.45);
}

@keyframes promo-bg-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.promo-track {
  display: flex;
  white-space: nowrap;
  animation: promo-scroll 28s linear infinite;
}

.promo-track:hover {
  animation-play-state: paused;
}

.promo-content {
  display: inline-block;
  padding: 0 0;
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #121820;
  letter-spacing: 0.2px;
}

.promo-content strong {
  font-weight: 700;
  font-family: "Syne", sans-serif;
}

@keyframes promo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 575px) {
  .promo-content {
    font-size: 12px;
  }
  .promo-track {
    animation-duration: 20s;
  }
}

/* NAVBAR */

:root {
  /* font */
  --primary_font: "Syne", sans-serif;
  --secondary_font: "Sora", sans-serif;
  /* color */
  --primary_color: #ff6dba;
  --secondary_color: #121820;
  --default_color: #ffffff;
  --primary_text_color: #f0f0f0;
  --secondary_text_color: rgba(18, 24, 32, 0.4);
  /* text shade */
  --primary_text_shade: #999999;
  --secondary_text_shade: rgba(240, 240, 240, 0.4);
  /* shade bg */
  --primary_bg: rgba(255, 109, 186, 0.04);
  /* border */
  --primary_radius: 8px;
  --secondary_radius: 4px;
}

body {
  opacity: 1;
  transition: opacity 0.5s ease-in-out; /* transição entre paginas */
}
body.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* BOTÕES */
.btn {
  color: var(--secondary_color);
  background: var(--primary_color);
  border: 1px solid var(--primary_color);
  padding: 11px 35px 10px;
}

.btn:hover {
  color: var(--primary_color);
  background: var(--secondary_color);
  border: 1px solid var(--primary_color);
  transition: 0.4s all;
}

/* ── Pill Nav ─────────────────────────────────────────── */
.sm-pill-nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.sm-pill {
  display: flex;
  align-items: center;
  padding: 13px 18px 13px 20px;
  background: rgba(18, 24, 32, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  border: 1px solid rgba(255, 109, 186, 0.20);
  box-shadow:
    0 0 0 1px rgba(255, 110, 186, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.50),
    0 0 45px rgba(255, 170, 248, 0.26),
    0 0 90px rgba(255, 110, 186, 0.13);
  pointer-events: all;
  width: calc(100% - 48px);
  max-width: 720px;
}

.sm-pill-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
}

.sm-logo-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 109, 186, 0.45));
  transition: filter 0.3s ease;
}

.sm-pill-logo:hover .sm-logo-icon {
  filter: drop-shadow(0 0 10px rgba(255, 109, 186, 0.75));
}

.sm-pill-logo-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ff6dba;
  letter-spacing: 0.4px;
}

.sm-pill-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 2px;
}

.sm-pill-links a {
  display: block;
  padding: 6px 11px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(240, 240, 240, 0.75);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.sm-pill-links a:hover,
.sm-pill-links a.sm-pill-active {
  color: #ff6dba;
  background: rgba(255, 109, 186, 0.08);
}

.sm-pill-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sm-pill-login {
  display: inline-block;
  padding: 7px 18px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6dba, #e8509c);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 109, 186, 0.38);
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.sm-pill-login:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff;
}

.sm-pill-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  color: #f0f0f0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.sm-pill-burger:hover {
  background: rgba(255, 109, 186, 0.14);
  border-color: rgba(255, 109, 186, 0.30);
}

/* Mobile dropdown */
.sm-pill-mobile {
  display: none;
  margin-top: 8px;
  width: calc(100% - 48px);
  max-width: 720px;
  background: rgba(18, 24, 32, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 109, 186, 0.18);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 45px rgba(255, 170, 248, 0.20);
  overflow: hidden;
  pointer-events: all;
  transform-origin: top center;
}

.sm-pill-mobile.open {
  display: block;
  animation: smMenuIn 0.30s cubic-bezier(0.34, 1.1, 0.64, 1) both;
}

@keyframes smMenuIn {
  from { opacity: 0; transform: scaleY(0.4) translateY(-12px); }
  to   { opacity: 1; transform: scaleY(1)   translateY(0); }
}

.sm-pill-mobile ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.sm-pill-mobile li a {
  display: block;
  padding: 13px 22px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  color: rgba(240, 240, 240, 0.82);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.sm-pill-mobile li a:hover {
  color: #ff6dba;
  background: rgba(255, 109, 186, 0.07);
}

.sm-pill-mobile-login {
  margin: 6px 16px 14px !important;
  padding: 12px 22px !important;
  text-align: center;
  background: linear-gradient(135deg, #ff6dba, #e8509c) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(255, 109, 186, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .sm-pill { justify-content: space-between; }
  .sm-pill-links { display: none; }
  .sm-pill-login { display: none; }
  .sm-pill-burger { display: flex; }
}

/* RESPONSIVE NAVBAR */

/* MOBILE */
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .d2c_navbar {
    padding: 12px 10px;
  }

  .d2c_navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}

/* TABLET */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .d2c_navbar {
    padding: 12px 0px;
  }

  .d2c_navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}

/* SMALL DESKTOP */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .d2c_navbar {
    padding: 16px 0px;
  }

  .d2c_navbar .navbar-nav .nav-link {
    font-size: 15px;
  }

  .d2c_navbar .navbar-nav .nav-item {
    margin: 3px 10px;
  }
}

/* LARGE DESKTOP */
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .d2c_navbar {
    padding: 16px 0px;
  }

  .d2c_navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}

/* SEÇÃO HERO */

body {
  background-color: #121820;
}

.hero-section {
  overflow: hidden;
  position: relative;
  padding-top: 82px;
}

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

/* ── Orbit wrapper — referência de posicionamento ─────── */
.mockup-orbit {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

/* ── Floating badges orbitando o mockup ───────────────── */
.mockup-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 14px;
  background: rgba(22, 27, 36, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 109, 186, 0.28);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 14px rgba(255, 109, 186, 0.12);
  pointer-events: auto;
  z-index: 2;
  white-space: nowrap;
  cursor: default;
}

.mockup-badge:hover {
  animation: wobble 0.6s ease forwards;
}

.badge-icon {
  font-size: 18px;
  line-height: 1;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.badge-text strong {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.badge-text span {
  font-family: "Sora", sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* ❤️ social proof — esquerda superior, encostado no frame */
.badge-social {
  top: 48px;
  left: -148px;
  animation: badgeFloat 4s ease-in-out infinite;
}

/* QR Code — direita inferior, encostado no frame */
.badge-qr {
  bottom: 80px;
  right: -110px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  animation: badgeFloat 5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.badge-qr-svg {
  width: 52px;
  height: 52px;
  background: #1a0d14;
  border-radius: 6px;
  padding: 2px;
}

.badge-qr-label {
  font-family: "Sora", sans-serif;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ✨ casal — esquerda inferior, encostado no frame */
.badge-couple {
  bottom: 60px;
  left: -142px;
  animation: badgeFloat 4.5s ease-in-out infinite;
  animation-delay: 0.8s;
}

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

.d2c_hero_title {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff7eb3, #ffb6d9, #ffffff);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}

.d2c_btn_hero {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  padding: 14px 36px;
}

.lead {
  color: white;
  font-family: "Sora", sans-serif;
  font-size: 14px;
}

/* ── Hero Phone Mockup ─────────────────────────────── */
.hero-phone-mockup {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.hero-phone-frame {
  background: #161b24;
  border: 2px solid #262d3d;
  border-radius: 40px;
  padding: 14px 10px 20px;
  position: relative;
  box-shadow:
    0 0 0 6px #1e2534,
    0 32px 64px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(255, 109, 186, 0.15);
}

/* ── Status bar da landing ──────────────────────────────────── */
.hero-phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px 2px;
  color: rgba(255,255,255,0.75);
}

.hero-status-time {
  font-size: 9px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.3px;
}

.hero-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.75);
}

.hero-phone-notch {
  width: 80px;
  height: 10px;
  background: #262d3d;
  border-radius: 99px;
  margin: 0 auto 12px;
}

/* ── Browser chrome: barra de endereço (landing) ───────────── */
.hero-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 4px 8px;
  margin: 6px 2px 0;
}

.hero-browser-url {
  flex: 1;
  font-size: 9px;
  text-align: center;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.2px;
  font-family: 'Sora', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-browser-icon {
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.hero-browser-reload { color: rgba(255,255,255,0.3); }

/* ── Browser chrome: barra de navegação inferior (landing) ─── */
.hero-browser-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px 2px;
  margin-top: 4px;
}

.hero-browser-nav svg {
  color: rgba(255,255,255,0.55);
  display: block;
}

.hero-phone-screen {
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  height: 440px;
}
#mockupVideo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.9s ease;
}

/* ── Conteúdo do mockup na landing page ──────────────────── */
.lp-player-section {
  position: relative;
  padding: 24px 20px 18px;
  background: linear-gradient(180deg, rgba(255,109,186,0.18) 0%, #1e2534 100%);
  overflow: hidden;
}

.lp-player-cover-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #262d3d;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.lp-player-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-player-meta { margin-bottom: 14px; }

.lp-player-song-name {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #f0f0f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-player-artist-name {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: #8892a4;
  margin-top: 3px;
}

.lp-player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.lp-ctrl-btn {
  background: none;
  border: none;
  color: #8892a4;
  font-size: 14px;
  cursor: default;
  padding: 4px;
}

.lp-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff6dba;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255,109,186,0.35);
}

.lp-player-bar {
  height: 3px;
  background: #262d3d;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 4px;
}

.lp-player-bar-fill {
  height: 100%;
  width: 35%;
  background: #ff6dba;
  border-radius: 99px;
  animation: lpPlayerProgress 8s linear infinite;
}

@keyframes lpPlayerProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

.lp-player-times {
  display: flex;
  justify-content: space-between;
  font-family: "Sora", sans-serif;
  font-size: 9px;
  color: #8892a4;
}

.lp-about-section {
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: "Sora", sans-serif;
}

.lp-about-names {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ff9fd4;
}

.lp-about-title {
  font-size: 13px;
  color: #8892a4;
  margin-bottom: 12px;
  font-style: italic;
}

.lp-about-since {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #8892a4;
  margin-bottom: 7px;
}

.lp-about-since strong { color: #f0f0f0; }

/* counter em cards (substitui lp-mini-counter inline) */
.lp-about-counter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 9px;
}

.lp-mc-card {
  background: rgba(255,255,255,0.05);
  border-radius: 7px;
  padding: 6px 4px;
  text-align: center;
}

.lp-mc-num {
  font-size: 13px;
  font-weight: 700;
  color: #ff9fd4;
  line-height: 1;
  margin-bottom: 2px;
}

.lp-mc-unit {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #8892a4;
}

.lp-about-city {
  font-size: 12px;
  color: #8892a4;
}

/* partículas no player da landing */
.lp-player-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-player-particles span {
  position: absolute;
  bottom: -10px;
  font-size: 10px;
  color: #ff4d6d;
  opacity: 0;
  animation: lpParticleFloat 6s linear infinite;
}

.lp-player-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.lp-player-particles span:nth-child(2) { left: 25%; animation-delay: 1s; }
.lp-player-particles span:nth-child(3) { left: 45%; animation-delay: 2s; }
.lp-player-particles span:nth-child(4) { left: 62%; animation-delay: 0.5s; }
.lp-player-particles span:nth-child(5) { left: 78%; animation-delay: 1.5s; }
.lp-player-particles span:nth-child(6) { left: 90%; animation-delay: 2.5s; }

@keyframes lpParticleFloat {
  0%   { transform: translateY(0) scale(1);  opacity: 0; }
  15%  { opacity: 0.5; }
  100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}

/* seção de mensagem */
.lp-message-section {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-section-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8892a4;
  margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
}

.lp-msg-cover-wrap {
  width: 100%;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.lp-msg-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-msg-body {
  font-size: 10px;
  color: #c8d0dc;
  line-height: 1.65;
  font-family: 'Sora', sans-serif;
  font-style: italic;
}

.lp-msg-body::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 14px;
  color: rgba(255, 109, 186, 0.55);
  vertical-align: -2px;
  margin-right: 2px;
}

.lp-msg-body::after {
  content: '\201D';
  font-family: Georgia, serif;
  font-size: 14px;
  color: rgba(255, 109, 186, 0.55);
  vertical-align: -2px;
  margin-left: 2px;
}

/* timeline */
.lp-timeline-section {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 8px;
  border-left: 1px solid rgba(255,109,186,0.25);
}

.lp-tl-item {
  position: relative;
  padding-left: 12px;
}

.lp-tl-dot {
  position: absolute;
  left: -5px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6dba;
}

.lp-tl-dot-heart {
  background: none;
  font-size: 8px;
  left: -6px;
  top: 2px;
  width: auto;
  height: auto;
}

.lp-tl-date {
  font-size: 9px;
  color: #ff9fd4;
  font-weight: 600;
  margin-bottom: 1px;
  font-family: 'Sora', sans-serif;
}

.lp-tl-text {
  font-size: 9px;
  color: #8892a4;
  font-family: 'Sora', sans-serif;
}

/* galeria */
.lp-gallery-section {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
}

.lp-gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.lp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* share bar */
.lp-share-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-share-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 6px;
  border-radius: 8px;
  border: none;
  font-size: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.lp-share-wpp  { background: rgba(37,211,102,0.15); color: #25d366; }
.lp-share-copy { background: rgba(255,109,186,0.12); color: #ff9fd4; }

.hero-text {
  color: rgb(198, 182, 221);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 20px;
}

.hero-rating-stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero-rating-text {
  font-family: var(--secondary_font);
  font-size: 0.85rem;
  color: var(--secondary_text_shade);
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particles span {
  position: absolute;
  bottom: -50px;
  animation: float 10s linear infinite;
  cursor: default;
}

@keyframes wobble {
  0%   { transform: rotate(0deg)  scale(1); }
  20%  { transform: rotate(-3deg) scale(1.03); }
  40%  { transform: rotate(2.5deg) scale(1.02); }
  60%  { transform: rotate(-2deg) scale(1.01); }
  80%  { transform: rotate(1deg)  scale(1); }
  100% { transform: rotate(0deg)  scale(1); }
}

.particles span::before {
  content: "❤";
  font-size: 20px;
  color: #ff4d6d;
  opacity: 0.6;
  animation: float 15s linear infinite;
}

.particles span:nth-child(1) {
  left: 10%;
  animation-duration: 8s;
}
.particles span:nth-child(2) {
  left: 20%;
  animation-duration: 12s;
}
.particles span:nth-child(3) {
  left: 35%;
  animation-duration: 9s;
}
.particles span:nth-child(4) {
  left: 50%;
  animation-duration: 11s;
}
.particles span:nth-child(5) {
  left: 65%;
  animation-duration: 7s;
}
.particles span:nth-child(6) {
  left: 75%;
  animation-duration: 10s;
}
.particles span:nth-child(7) {
  left: 85%;
  animation-duration: 13s;
}
.particles span:nth-child(8) {
  left: 95%;
  animation-duration: 9s;
}

/* animacao dos coraçoes */

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) scale(1.4);
    opacity: 0;
  }
}

/* FEATURES */

.feature-section {
  margin-top: 60px;
}

.memoria-unica {
  font-family: "Syne", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: rgb(198, 182, 221);
}

.unica,
.inesquecivel {
  background: linear-gradient(90deg, #ff7eb3, #ffb6d9, #ffffff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-pill {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ff6dba;
  background: rgba(255, 109, 186, 0.08);
  border: 1px solid rgba(255, 109, 186, 0.28);
  padding: 5px 16px;
  border-radius: 99px;
  letter-spacing: 0.3px;
}

.features-subtitle {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: #8892a4;
  max-width: 460px;
  margin: 0 auto;
}

/* Cards */
.feature-card {
  background: #161b24;
  border: none;
  border-radius: 16px;
  padding: 28px 24px 24px;
  width: 300px;
  max-width: 100%;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Wrapper com borda gradiente no card do meio */
.feature-card-featured-wrap {
  padding: 1px;
  border-radius: 17px;
  background: linear-gradient(135deg, #ff6dba, #7b3fa6);
}

.feature-card-featured {
  border: none;
  border-radius: 15px;
}

.feature-card-icon {
  color: #ff6dba;
  display: block;
  flex-shrink: 0;
}

.feature-card-title {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #f0f0f0;
  margin: 0;
}

.feature-card-desc {
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  color: #8892a4;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

.feature-card-link {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: #ff6dba;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.feature-card-link:hover {
  opacity: 0.75;
}






/* FAQ */

.faq-section {
  padding: 80px 0 60px;
}

.faq-heading {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #f0f0f0;
}

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

.faq-item {
  background: #161b24;
  border: 1px solid #262d3d;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(255, 109, 186, 0.3);
}

.faq-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.faq-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(255, 109, 186, 0.1);
  border: 1px solid rgba(255, 109, 186, 0.22);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #ff6dba;
}

.faq-question {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #f0f0f0;
  flex: 1;
}

.faq-chevron {
  font-size: 12px;
  color: #8892a4;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  color: #8892a4;
  line-height: 1.7;
  margin: 0;
  padding: 0 18px 18px 58px;
}

.faq-contact {
  text-align: center;
  margin-top: 32px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: #8892a4;
}

.faq-contact a {
  color: #ff6dba;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.faq-contact a:hover {
  opacity: 0.75;
}

/* DEPOIMENTOS */

/* CONTADOR DE COMBINAÇÕES */

.combinations-section {
  padding: 0 0 80px;
}

.combinations-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--primary_bg);
  border: 1px solid rgba(255, 109, 186, 0.15);
  border-radius: 16px;
  padding: 48px 56px;
}

.combinations-left {
  flex-shrink: 0;
  text-align: center;
}

.combinations-label {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary_color);
  margin-bottom: 8px;
}

.combinations-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.combinations-number span:first-child {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  color: #f0f0f0;
  letter-spacing: 2px;
}

.combinations-plus {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--primary_color);
  letter-spacing: 1px;
}

.combinations-desc {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: var(--primary_text_shade);
  margin-top: 6px;
  margin-bottom: 0;
}

.combinations-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 109, 186, 0.2);
  flex-shrink: 0;
}

.combinations-right {
  flex: 1;
}

.combinations-right p {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: var(--primary_text_shade);
  line-height: 1.7;
  margin-bottom: 24px;
}

.combinations-cta {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #121820;
  background: var(--primary_color);
  border: 1px solid var(--primary_color);
  border-radius: var(--primary_radius);
  padding: 10px 28px;
  text-decoration: none;
  transition: 0.3s all;
}

.combinations-cta:hover {
  color: var(--primary_color);
  background: transparent;
}

@media (max-width: 767px) {
  .combinations-card {
    flex-direction: column;
    gap: 28px;
    padding: 36px 24px;
    text-align: center;
  }

  .combinations-divider {
    width: 60px;
    height: 1px;
  }
}

.testimonials-section {
  padding: 80px 0 60px;
  overflow: hidden;
}

.testimonials-heading {
  font-family: "Syne", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #f0f0f0;
}

/* Faixa rolante */
.tm-track-outer {
  overflow: hidden;
  width: 100%;
  /* força camada GPU própria — evita desaparecimento do carrossel em mobile */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  /* fade nas bordas */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.tm-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.tm-track--left {
  animation: tm-marquee-left 40s linear infinite;
}

.tm-track--right {
  animation: tm-marquee-right 44s linear infinite;
}

.tm-track-outer:hover .tm-track {
  animation-play-state: paused;
}

@keyframes tm-marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes tm-marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Card */
.tm-card {
  flex-shrink: 0;
  width: 300px;
  background: #161b24;
  border: 1px solid rgba(255, 109, 186, 0.15);
  border-radius: 16px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: default;
  transition: transform 0.3s ease, border-color 0.3s ease;
  margin: 6px 0;
}

.tm-card:hover {
  transform: scale(1.04) rotate(0.4deg);
  border-color: rgba(255, 109, 186, 0.45);
}

.tm-text {
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  color: #c8d0dc;
  margin: 0;
  flex-grow: 1;
}

.tm-highlight {
  color: #ff6dba;
  font-weight: 600;
}

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

.tm-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.tm-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tm-name {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.2;
}

.tm-role {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  color: #8892a4;
}

/* PLANOS */

body {
  font-family: "Sora", sans-serif;
}

h2 {
  color: #fff;
}

.pricing-card-wrap {
  position: relative;
  padding-top: 14px;
  width: 100%;
}

.pricing-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #161b24;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6dba;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: 0.3px;
}

.pricing-card-name {
  text-align: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0.25rem;
}

.btn-custom {
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-pricing-full {
  width: 100%;
  border-radius: 50px;
  padding: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.pricing-sub {
  color: #8892a4;
  font-size: 15px;
}

.pricing-price {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-family: "Sora", sans-serif;
  letter-spacing: -1px;
}

.pricing-cents {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-featured {
  border: 1.5px solid #ff6dba !important;
  box-shadow: 0 0 32px rgba(255, 109, 186, 0.18);
}

.feature-list {
  list-style-type: none;
  padding-left: 0;
}

.feature-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: #c8d0dc;
}

.feature-list li:last-child {
  border-bottom: none;
}

.pricing-card .card-body {
  background: #161b24;
  color: #f0f0f0;
}


/* RODAPÉ */

#footer-container {
    margin-top: 100px;
  }
  .footer {
    background: #0e1117;
    padding-bottom: 50px;
    padding-top: 80px;
  }
  
  .footer_menu {
    margin-bottom: 20px;
  }
  
  .footer_menu ul {
    list-style: none;
    text-align: center;
  }
  
  .footer_menu ul li {
    display: inline-block;
  }
  
  .footer_menu ul li a {
    color: #fff;
    padding: 0 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
  }
  
  .footer_menu ul li a:hover {
    color: #ff6dba;
  }
  
  .footer_profile {
    margin-bottom: 40px;
  }
  
  .footer_profile ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
  }
  
  .footer_profile ul li {
    display: inline-block;
  }
  
  @media only screen and (max-width: 480px) {
    .footer_profile ul li {
      margin: 2px;
    }
  }
  
  .footer_profile ul li a img {
    width: 60px;
  }
  
  .footer_profile ul li a {
    background: rgba(255, 109, 186, 0.15);
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    margin-right: 5px;
    border-radius: 50%;
    line-height: 40px;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #ff6dba;
  }

  .footer_profile ul li a:hover {
    background: rgba(255, 109, 186, 0.3);
  }
  
  .footer_copyright {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #fff;
  }

/* ── NOVO FOOTER (sm-footer) ──────────────────────────────────── */

.sm-footer {
  background: #0e1117;
  padding: 70px 0 30px;
  color: #c8cdd6;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.sm-footer .container { max-width: 1200px; }

/* Grid principal — 4 colunas */
.sm-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Coluna marca */
.sm-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}
.sm-footer-logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.3px;
}
.sm-footer-tagline {
  color: #9ba3b1;
  font-size: 13.5px;
  margin: 0 0 18px;
  max-width: 320px;
}
.sm-footer-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,109,186,0.08);
  border: 1px solid rgba(255,109,186,0.18);
  padding: 8px 12px;
  border-radius: 100px;
  width: fit-content;
}
.sm-footer-proof-stars { font-size: 11px; }
.sm-footer-proof-text {
  font-size: 12.5px;
  color: #ffb6d9;
  font-weight: 500;
}

/* Colunas de links */
.sm-footer-title {
  font-family: 'Syne', sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}
.sm-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sm-footer-col ul li { margin-bottom: 10px; }
.sm-footer-col ul li a {
  color: #9ba3b1;
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s ease;
}
.sm-footer-col ul li a:hover { color: #ff6dba; }

/* Selos de pagamento e segurança */
.sm-footer-trust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sm-footer-trust-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #6b7281;
  margin-bottom: 8px;
}
.sm-footer-pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sm-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #fff;
  color: #0e1117;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.3px;
  font-family: 'Sora', sans-serif;
  min-width: 44px;
}
.sm-pay-pix {
  background: #00b8a9;
  color: #fff;
}
.sm-footer-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ba3b1;
  font-size: 13px;
}

/* Linha de base */
.sm-footer-bottom {
  display: grid;
  grid-template-columns: 1.5fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
}
.sm-footer-company p {
  margin: 0;
  font-size: 12.5px;
  color: #6b7281;
  line-height: 1.7;
}
.sm-footer-company p strong { color: #c8cdd6; font-weight: 600; font-size: 13px; }
.sm-footer-legal {
  font-size: 10.5px;
  color: #4a4f5a;
  letter-spacing: 0.1px;
}

.sm-footer-social {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.sm-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,109,186,0.12);
  color: #ff6dba;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}
.sm-footer-social a:hover {
  background: #ff6dba;
  color: #fff;
  transform: translateY(-2px);
}

.sm-footer-copyright p {
  margin: 0;
  font-size: 12px;
  color: #6b7281;
  text-align: right;
  font-family: 'Sora', sans-serif;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

/* Responsivo */
@media (max-width: 991px) {
  .sm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .sm-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .sm-footer { padding: 50px 0 24px; }
  .sm-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .sm-footer-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .sm-footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .sm-footer-company p,
  .sm-footer-copyright p { text-align: center; }
  .sm-footer-social { justify-content: center; }
  .sm-footer-proof { margin: 0 auto; }
  .sm-footer-tagline { margin-left: auto; margin-right: auto; }
  .sm-footer-brand { text-align: center; }
  .sm-footer-logo { margin-left: auto; margin-right: auto; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVO — HERO & SEÇÕES (index.html)
══════════════════════════════════════════════════════════════ */

/* Tablet e smartphone — reposiciona badges abaixo do mockup em linha */
@media (max-width: 991px) {
  /* Orbit vira flex-wrap: phone ocupa toda a primeira linha (order:-1),
     os três badges aparecem lado a lado na segunda linha */
  .mockup-orbit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding-bottom: 12px;
  }

  /* Phone sobe para o topo e ocupa toda a largura */
  .hero-phone-mockup {
    order: -1;
    flex: 0 0 100%;
    max-width: 240px;
    margin: 0 auto;
  }

  .hero-phone-screen {
    height: 375px;
  }

  /* Badges saem do posicionamento absoluto e ficam em linha */
  .mockup-badge {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    flex: 0 0 auto;
  }

  /* QR badge era flex-direction:column — volta para linha */
  .badge-qr {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
  }

  .badge-qr-svg {
    width: 36px;
    height: 36px;
  }

  .badge-qr-label {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  /* Título hero responsivo */
  .d2c_hero_title {
    font-size: clamp(26px, 7vw, 42px);
  }

  /* Mockup menor em telas pequenas */
  .hero-phone-mockup {
    max-width: 210px;
  }

  .hero-phone-screen {
    height: 330px;
  }

  /* Preço dos planos — reduz em telas menores */
  .pricing-price {
    font-size: 40px;
  }

  /* FAQ — remove indent do padding-left */
  .faq-answer {
    padding-left: 18px;
  }

  /* Footer margin menor */
  #footer-container {
    margin-top: 60px;
  }
}

/* Smartphones muito pequenos (até ~420px) */
@media (max-width: 420px) {
  .d2c_hero_title {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .lead {
    font-size: 13px !important;
  }

  .hero-rating-stars {
    font-size: 0.95rem;
  }

  .hero-rating-text {
    font-size: 0.75rem;
  }

  .d2c_btn_hero {
    font-size: 15px;
    padding: 11px 24px;
  }
}

/* ══════════════════════════════════════════
   COMO FUNCIONA
══════════════════════════════════════════ */

.how-section {
  padding: 90px 0;
  background: #121820;
}

.how-heading {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  color: #f0f0f0;
}

.how-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}

.how-step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

/* número do passo */
.how-step-number {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary_color);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ícone circular */
.how-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 109, 186, 0.08);
  border: 1.5px solid rgba(255, 109, 186, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary_color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}

.how-step:hover .how-step-icon {
  background: rgba(255, 109, 186, 0.18);
  border-color: var(--primary_color);
}

/* linha conectora entre ícones */
.how-connector {
  position: absolute;
  top: 84px; /* alinhada ao centro vertical do ícone (número ~28px + icon 64px/2 = 60px → ~84px do topo) */
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 109, 186, 0.4) 0px,
    rgba(255, 109, 186, 0.4) 6px,
    transparent 6px,
    transparent 14px
  );
  z-index: 0;
}

.how-step:last-child .how-connector {
  display: none;
}

.how-step-title {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.how-step-desc {
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  color: rgba(240, 240, 240, 0.55);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .how-connector {
    display: none;
  }

  .how-step {
    max-width: 300px;
  }
}


/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */

.cta-section {
  padding: 80px 0;
  background: #121820;
}

.cta-inner {
  position: relative;
  background: linear-gradient(135deg, #1e0f35 0%, #5c1f5a 45%, #b83070 100%);
  border-radius: 28px;
  padding: 72px 40px 60px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(140, 40, 100, 0.3), 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* brilho de fundo decorativo */
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(255, 255, 255, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

/* anéis decorativos */
.cta-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
}

.cta-ring-1 {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -80px;
  animation: cta-ring-pulse 5s ease-in-out infinite;
}

.cta-ring-2 {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: -50px;
  animation: cta-ring-pulse 6.5s ease-in-out infinite 1.2s;
}

.cta-ring-3 {
  width: 140px;
  height: 140px;
  top: 30px;
  left: 12%;
  animation: cta-ring-pulse 7s ease-in-out infinite 2.5s;
}

@keyframes cta-ring-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.1); opacity: 0.4; }
}

/* social proof */
.cta-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.cta-avatar-stack {
  display: flex;
}

.cta-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -9px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.cta-av:first-child {
  margin-left: 0;
}

.cta-social-text {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.cta-heading {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-btn {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  color: #c0396e;
  border: none;
  border-radius: 12px;
  padding: 16px 44px;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(255,255,255,0.3);
  letter-spacing: 0.2px;
}

.cta-btn:hover {
  background: #fff0f8;
  color: #9b2c58;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

/* trust row */
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-trust span {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cta-trust-dot {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 14px !important;
}

@media (max-width: 575px) {
  .cta-inner {
    padding: 52px 24px 44px;
    border-radius: 20px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }

  .cta-trust-dot {
    display: none;
  }

  .cta-trust {
    gap: 10px;
  }
}


