/* ============================================================
   DESIGN SYSTEM & CSS VARIABLES
   ============================================================ */
:root {
  --premify-purple: #7B3FF2;
  --premify-purple-light: #A66BFF;
  --premify-purple-soft: #EFE7FF;
  --premify-indigo: #090824;
  --premify-deep: #160B3A;
  --premify-text: #111233;
  --premify-muted: #5E5F7A;
  --premify-bg-light: #F8F5FF;
  --premify-white: #FFFFFF;
  --premify-border: rgba(123, 63, 242, 0.12);
  --premify-shadow: 0 24px 70px rgba(40, 20, 90, 0.12);
  
  --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-family-sans);
  background-color: var(--premify-white);
  color: var(--premify-text);
  overflow-x: hidden;
  max-width: 100%;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: min(100% - 96px, 1440px);
  margin: 0 auto;
}

.section {
  min-height: auto;
  padding: 70px 0;
  position: relative;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
  font-family: var(--font-family-display);
  font-size: clamp(56px, 5vw, 82px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  font-family: var(--font-family-display);
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
}

p {
  font-family: var(--font-family-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--premify-muted);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-family-sans);
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  padding: 18px 34px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #6C2BE2 0%, #8E4FFF 100%);
  color: var(--premify-white);
  box-shadow: 
    0 16px 36px rgba(123, 63, 242, 0.22),
    0 0 20px rgba(166, 107, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(166, 107, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 20px 42px rgba(123, 63, 242, 0.32),
    0 0 25px rgba(166, 107, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  filter: brightness(1.08);
}

.btn-secondary {
  background: transparent;
  color: var(--premify-purple);
  border: 1px solid rgba(123, 63, 242, 0.35);
}

.btn-secondary:hover {
  background: rgba(123, 63, 242, 0.05);
  border-color: var(--premify-purple);
  transform: translateY(-2px);
}

.btn-secondary-dark {
  background: rgba(15, 8, 38, 0.35);
  color: var(--premify-white);
  border: 1px solid rgba(166, 107, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 
    0 10px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary-dark:hover {
  background: rgba(15, 8, 38, 0.55);
  border-color: rgba(166, 107, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ============================================================
   HEADER GLOBAL
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(9, 3, 29, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(166, 107, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  height: 72px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 96px, 1440px);
  margin: 0 auto;
  position: relative;
  z-index: 1001;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 28px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover {
  color: var(--premify-purple-light);
  text-shadow: 0 0 8px rgba(166, 107, 255, 0.4);
}

/* Mobile Menu Dropdown Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(9, 3, 29, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-family-display);
}

.mobile-nav-link:hover {
  color: var(--premify-purple-light);
  transform: scale(1.05);
}

.btn-header {
  background: transparent;
  color: var(--premify-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-header:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--premify-white);
  transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--premify-white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ============================================================
   DOBRA 1 — HERO PRINCIPAL
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 80%, rgba(166, 107, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 40%, rgba(123, 63, 242, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(107, 63, 242, 0.05) 0%, transparent 70%),
    linear-gradient(135deg, #060413 0%, #09051e 40%, #130a30 75%, #18093d 100%);
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 40px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-image: url('../assets/dobra-01/hero-familia-pdv.jpg');
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
  z-index: 1;
  /* Smooth mask transition to integrate the image with the background */
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 12%, rgba(0, 0, 0, 0.8) 42%, #000000 90%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 12%, rgba(0, 0, 0, 0.8) 42%, #000000 90%);
}

/* Luminous overlay on the vertical screen to highlight the Premify panel */
.hero-screen-glow {
  position: absolute;
  top: 15%;
  right: 2%;
  width: 32%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(166, 107, 255, 0.18) 0%, transparent 70%);
  mix-blend-mode: screen;
  z-index: 2;
  pointer-events: none;
}

/* Curved light trails styles */
.light-trails {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 650px;
  height: 480px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.75;
}

.light-trails svg {
  width: 100%;
  height: 100%;
}

.light-trails path {
  filter: drop-shadow(0 0 6px rgba(166, 107, 255, 0.3));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  /* Premium vibrant purple gradient from left fading out before the faces */
  background: linear-gradient(
    to right, 
    rgba(12, 5, 36, 1) 0%, 
    rgba(54, 17, 114, 0.9) 25%, 
    rgba(34, 10, 68, 0.6) 50%, 
    transparent 80%
  );
  pointer-events: none;
}

.hero-inner {
  width: min(100% - 96px, 1440px);
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.hero-copy {
  max-width: 740px;
}

.hero-title {
  max-width: 800px;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--premify-white);
  margin-bottom: 12px;
  text-shadow: 0 4px 15px rgba(4, 2, 12, 0.45);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #a66bff 0%, #e8e1ff 60%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtitle {
  max-width: 580px;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.hero-actions .btn {
  min-width: 210px;
  height: 56px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
}

/* ============================================================
   FAIXA DE MÉTRICAS (Glassmorphism)
   ============================================================ */
.stats-strip {
  width: min(920px, 100%);
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(166, 107, 255, 0.12);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 12px rgba(166, 107, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.stat-item {
  min-height: 76px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(166, 107, 255, 0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(166, 107, 255, 0.08);
  border: 1px solid rgba(166, 107, 255, 0.25);
  color: var(--premify-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 0 12px rgba(166, 107, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--premify-purple-light);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 21px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--premify-white);
  font-family: var(--font-family-display);
}

.stat-label {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   BULLETS DE BENEFÍCIOS
   ============================================================ */
.hero-benefits {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 12px 40px;
  max-width: 820px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(166, 107, 255, 0.08);
  border: 1px solid rgba(166, 107, 255, 0.25);
  color: var(--premify-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 12px rgba(166, 107, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.benefit-icon:hover {
  background: rgba(166, 107, 255, 0.18);
  border-color: rgba(166, 107, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 
    0 0 20px rgba(166, 107, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--premify-purple-light);
}

.benefit-text {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-family-display);
}

/* ============================================================
   DOBRA 2 — CAMPANHAS EM AÇÃO
   ============================================================ */
.campaigns-section {
  position: relative;
  background-color: #09031d;
  background-image: 
    linear-gradient(rgba(8, 4, 24, 0.18), rgba(8, 4, 24, 0.18)), 
    url('../assets/dobra-02/bg-dobra-02.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--premify-white);
  padding: 35px 0 45px 0;
  overflow: hidden;
}

/* Subtle blurred PDV background for atmosphere */
.campaigns-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/dobra-08/asset-pdv-fundo-direita-dobra-08.png');
  background-size: cover;
  background-position: center;
  opacity: 0.035;
  filter: blur(4px);
  pointer-events: none;
  z-index: 1;
}

/* Atmospheric grid texture */
.campaigns-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(166, 107, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 107, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
  mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 80%);
}



.section-header-dobra2 {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 2;
}

.section-title-dobra2 {
  font-family: var(--font-family-display);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--premify-white);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.section-subtitle-dobra2 {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.section-header-decor {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--premify-purple-light) 50%, transparent);
  margin: 10px auto 0 auto;
  box-shadow: 0 0 8px rgba(166, 107, 255, 0.7);
  opacity: 0.8;
}

.campaign-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  z-index: 2;
}

/* Radial light glow behind smartphones */
.campaign-slider-wrapper::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
  height: 360px;
  background: radial-gradient(circle, rgba(123, 63, 242, 0.22) 0%, rgba(166, 107, 255, 0.05) 55%, transparent 100%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.campaign-slider-track {
  position: relative;
  height: 520px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  z-index: 2;
}

/* Floor reflection highlight under the phones */
.campaign-slider-track::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 15%;
  right: 15%;
  height: 70px;
  background: radial-gradient(ellipse at center, rgba(166, 107, 255, 0.25) 0%, rgba(123, 63, 242, 0.08) 55%, transparent 80%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
}

/* Smartphone Mockup Container & Item */
.campaign-slide-item {
  position: absolute;
  width: 216px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, z-index 0.6s;
}

/* Mockup Body Styling */
.smartphone-mockup {
  position: relative;
  width: 216px;
  height: 442px;
  background: #000000;
  border: 7px solid #161129; /* Refined thin bezel */
  border-radius: 34px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.75),
    0 0 15px rgba(123, 63, 242, 0.12),
    inset 0 0 2px 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom glossy diagonal screen reflection */
.smartphone-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.07) 50%, rgba(255, 255, 255, 0) 60%);
  transform: rotate(-20deg);
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;
}

/* Custom metallic purple border highlight on the phone frames */
.smartphone-mockup::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(166, 107, 255, 0.25);
  border-radius: 34px;
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: screen;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  background: #2a2a2a;
  border-radius: 2px;
  z-index: 15;
}

.phone-camera-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #000000;
  border-radius: 12px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 0;
  background: #090824;
  overflow: hidden;
  border-radius: 28px;
}

.campaign-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-home-line {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  z-index: 10;
}

/* Hide labels on desktop for reference-like clean layout */
.campaign-title-label {
  display: none;
}

/* Active Highlight States */
.campaign-slide-item.active .smartphone-mockup {
  border-color: #2b1755;
  box-shadow:
    0 35px 80px rgba(123, 63, 242, 0.5),
    0 0 25px rgba(166, 107, 255, 0.38);
}

.campaign-slide-item.active .smartphone-mockup::after {
  border-color: rgba(166, 107, 255, 0.45);
}

/* Slider Dots track */
.slider-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dot-indicator.active {
  background: var(--premify-purple-light);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--premify-purple-light);
}

/* Mobile Scroll Snap Adjustments */
@media (max-width: 768px) {
  .campaign-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: auto;
    padding: 20px 0 10px;
  }

  .campaign-slider-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    padding: 0 24px 14px;
    transform: none !important;
    perspective: none !important;
    width: auto;
    height: auto;
  }

  .campaign-slider-track::-webkit-scrollbar {
    display: none;
  }
  
  .slider-dots {
    display: flex;
    margin-top: 16px;
  }

  .campaign-slide-item {
    position: relative !important;
    flex: 0 0 clamp(250px, 78vw, 320px);
    scroll-snap-align: center;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: auto;
  }
  
  .smartphone-mockup {
    width: 100%;
    height: auto;
    aspect-ratio: 216 / 442;
    margin: 0 auto;
  }
}

/* ============================================================
   CLIENT LOGOS STRIP (Marquee Carousel)
   ============================================================ */
.marquee-strip {
  position: relative;
  margin-top: 28px;
  border-radius: 18px;
  background: rgba(15, 8, 38, 0.36);
  border: 1px solid rgba(180, 140, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  z-index: 3;
}

.client-strip-viewport {
  overflow: hidden;
  width: 100%;
}

.client-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientMarquee 30s linear infinite;
}

.marquee-strip:hover .client-strip-track {
  animation-play-state: paused;
}

.client-strip-group {
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 16px 28px;
  flex-shrink: 0;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
}

.client-logo-img {
  max-height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 0.72;
  filter: brightness(0) saturate(100%) invert(88%) sepia(11%) saturate(731%) hue-rotate(203deg) brightness(103%) contrast(99%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.client-logo-item:hover .client-logo-img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
  transform: translateY(-1px);
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   MODALS & LEAD FORMS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(9, 8, 36, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--premify-indigo);
  border: 1px solid rgba(166, 107, 255, 0.25);
  box-shadow: 0 32px 80px rgba(9, 8, 36, 0.6);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 48px;
  color: var(--premify-white);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--premify-white);
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.05);
}

.modal-title {
  font-family: var(--font-family-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--premify-white);
}

.modal-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.4;
}

/* Forms styling */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 18px;
  font-family: var(--font-family-sans);
  font-size: 16px;
  color: var(--premify-white);
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--premify-purple-light);
  box-shadow: 0 0 0 4px rgba(166, 107, 255, 0.15);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 255, 255, 0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 16px !important;
  padding-right: 48px !important;
  cursor: pointer;
}

.form-select::-ms-expand {
  display: none !important;
}

.form-select option {
  background-color: var(--premify-indigo);
  color: var(--premify-white);
  padding: 12px;
  font-family: var(--font-family-sans);
}

.btn-submit {
  width: 100%;
  height: 58px;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--premify-purple), var(--premify-purple-light));
  color: var(--premify-white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-family-sans);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(123, 63, 242, 0.25);
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 35px rgba(123, 63, 242, 0.35);
  opacity: 0.95;
}

.success-message {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(166, 107, 255, 0.15);
  border: 1px solid rgba(166, 107, 255, 0.3);
  border-radius: 50%;
  color: var(--premify-purple-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.success-title {
  font-family: var(--font-family-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--premify-white);
}

.success-text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* Body Scroll Lock */
body.modal-open {
  overflow: hidden;
}

/* ============================================================
   RESPONSIVENESS & MEDIA QUERIES
   ============================================================ */

/* Tablet & Smaller Screens */
@media (max-width: 1024px) {
  .container, .header-container, .hero-inner {
    width: min(100% - 64px, 1440px);
  }
  
  .hero-title {
    font-size: clamp(38px, 4.8vw, 56px);
  }
  
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item {
    border-right: none;
  }
  
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  
  .stat-item:nth-child(1), .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  .section {
    min-height: auto;
    padding: 40px 0;
  }

  .container, .header-container, .hero-inner {
    width: min(100% - 40px, 1440px);
  }

  .site-header {
    height: 70px;
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-cta .btn-header {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 10px;
  }

  /* Hamburger Menu Styling */
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .mobile-only-btn {
    display: block !important;
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }
  
  .mobile-only-btn .btn-header {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 12px;
  }

  /* Toggle Animation */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 35px;
  }

  .hero-bg-image {
    width: 100%;
    height: 100%;
    opacity: 0.65;
    background-position: 65% center;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero::after {
    background: linear-gradient(
      to bottom, 
      rgba(9, 5, 26, 0.65) 0%, 
      rgba(48, 18, 104, 0.45) 40%, 
      rgba(9, 5, 26, 0.9) 100%
    );
  }

  .light-trails {
    width: 100%;
    max-width: 320px;
    height: auto;
    left: -20px;
    bottom: -20px;
  }

  .hero-inner {
    padding-top: 16px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-title {
    font-size: clamp(24px, 6.5vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    word-spacing: 0.02em;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: balance;
    max-width: 100%;
    margin-bottom: 12px;
    order: 1;
  }
  
  .hero-title br {
    display: none; /* Allow natural wrap without desktop line breaks */
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 100%;
    order: 2;
  }

  /* Compact 2x2 stats strip on mobile */
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    margin-bottom: 24px;
    border-radius: 12px;
    background: rgba(15, 8, 38, 0.35);
    border: 1px solid rgba(166, 107, 255, 0.1);
    order: 3;
  }
  
  .stat-item {
    min-height: 64px;
    padding: 8px 12px;
    gap: 8px;
    border-right: none;
    border-bottom: 1px solid rgba(166, 107, 255, 0.05);
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(166, 107, 255, 0.05);
  }

  .stat-item:nth-child(3), .stat-item:nth-child(4) {
    border-bottom: none;
  }
  
  .stat-icon {
    width: 32px;
    height: 32px;
    box-shadow: 0 0 8px rgba(166, 107, 255, 0.1);
  }

  .stat-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .stat-number {
    font-size: 16px;
  }
  
  .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
  }

  /* Cards styling for benefits on mobile to improve readability and contrast */
  .hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 100%;
    order: 4;
  }

  .benefit-item {
    background: transparent;
    border: none;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: none;
  }

  .benefit-item:hover {
    transform: none;
  }

  .benefit-icon {
    width: 28px;
    height: 28px;
    background: rgba(166, 107, 255, 0.08);
    border-color: rgba(166, 107, 255, 0.25);
    box-shadow: none;
  }

  .benefit-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .benefit-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
    width: 100%;
    order: 5;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 100%;
    height: 52px;
    font-size: 15px;
    border-radius: 10px;
    padding: 0 20px;
    margin: 0;
  }
  
  .modal-container {
    padding: 32px 24px;
    border-radius: 20px;
  }
  
  .modal-title {
    font-size: 24px;
  }

  .modal-subtitle {
    margin-bottom: 24px;
  }

  .form-input {
    height: 52px;
    font-size: 15px;
  }

  .btn-submit {
    height: 54px;
    margin-top: 8px;
  }

  /* Dobra 2 mobile responsive styling */
  .campaigns-section {
    padding: 30px 0 35px 0;
    background-color: #09031d;
    background-image: 
      linear-gradient(rgba(8, 4, 24, 0.18), rgba(8, 4, 24, 0.18)), 
      url('../assets/dobra-02/bg-dobra-02.png');
    background-size: cover;
    background-position: 45% center;
    background-repeat: no-repeat;
  }

  .section-header-dobra2 {
    margin-bottom: 16px;
    text-align: center;
  }

  .section-title-dobra2 {
    font-size: 32px;
  }

  .section-subtitle-dobra2 {
    font-size: 16px;
    line-height: 1.5;
  }

  .campaign-slider-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .campaign-slider-track {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5px 15px 5px;
    gap: 12px;
    scrollbar-width: none; /* Firefox */
  }

  .campaign-slider-track::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }

  .campaign-slide-item {
    flex: 0 0 75%; /* Show 75% of active item, leaving 25% to see previous/next items on sides */
    scroll-snap-align: center;
    transform: none !important;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  .campaign-slide-item.active {
    opacity: 1;
    transform: none !important;
  }

  .campaign-slide-item.active .smartphone-mockup {
    border-color: #3b1e7c;
    box-shadow:
      0 15px 35px rgba(123, 63, 242, 0.4),
      0 0 15px rgba(166, 107, 255, 0.3);
  }

  .smartphone-mockup {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 18.3;
    max-width: 210px;
    margin-bottom: 8px;
    border-width: 6px;
    border-radius: 20px;
  }

  .smartphone-mockup::after {
    border-radius: 20px;
  }

  .phone-screen {
    border-radius: 14px;
  }

  .campaign-title-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
  }

  .section-header-decor {
    margin: 12px auto 0 auto;
  }



  .slider-dots {
    display: flex;
    margin-top: 10px;
  }

  .marquee-strip {
    margin-top: 22px;
    border-radius: 16px;
  }

  .client-strip-group {
    gap: 28px;
    padding: 14px 18px;
  }

  .client-logo-img {
    max-height: 18px;
    opacity: 0.74;
  }

  .client-strip-track {
    animation-duration: 24s;
  }
}

/* ============================================================
   DOBRA 3 — ECOSSISTEMA PREMIFY
   ============================================================ */
.ecosystem-section {
  background-color: var(--premify-bg-light);
  background: radial-gradient(circle at 50% 50%, #f6f1ff 0%, var(--premify-bg-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}

/* Glow effects in the background */
.ecosystem-glow-left {
  position: absolute;
  top: 15%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 63, 242, 0.06) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.ecosystem-glow-right {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(166, 107, 255, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

/* Lateral Assets Integration */
.ecosystem-decor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 85%;
  max-height: 720px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 0.5s ease;
}

.ecosystem-decor .decor-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.ecosystem-decor-left {
  left: 0;
  /* Fade right side of the totem supermarket background into the lavander section */
  mask-image: linear-gradient(to right, #000 45%, rgba(0, 0, 0, 0.15) 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, #000 45%, rgba(0, 0, 0, 0.15) 80%, transparent 100%);
}

.ecosystem-decor-right {
  right: 0;
  /* Fade left side of the dashboard mockup into the section */
  mask-image: linear-gradient(to left, #000 40%, rgba(0, 0, 0, 0.15) 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 40%, rgba(0, 0, 0, 0.15) 75%, transparent 100%);
}

/* Content Container */
.ecosystem-container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ecosystem-header {
  text-align: center;
  max-width: 820px;
  margin-bottom: 56px;
}

.ecosystem-logo-wrapper {
  margin-bottom: 20px;
}

.ecosystem-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.ecosystem-title {
  font-family: var(--font-family-display);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--premify-text);
  margin-bottom: 20px;
}

.ecosystem-title .highlight-purple {
  color: var(--premify-purple);
}

.ecosystem-subtitle {
  font-family: var(--font-family-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--premify-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* 2x2 Grid Layout */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

/* Card Styling */
.ecosystem-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(123, 63, 242, 0.08);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 
    0 10px 30px rgba(123, 63, 242, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(123, 63, 242, 0.25);
  box-shadow: 
    0 20px 40px rgba(123, 63, 242, 0.07),
    0 0 15px rgba(166, 107, 255, 0.1);
}

/* Card Icon Container */
.card-icon-container {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--premify-purple-soft);
  color: var(--premify-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ecosystem-card:hover .card-icon-container {
  background: var(--premify-purple);
  color: var(--premify-white);
  transform: scale(1.05);
}

.card-icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

/* Card Content typography */
.card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-title {
  font-family: var(--font-family-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--premify-text);
}

.card-text {
  font-family: var(--font-family-sans);
  font-size: 15px;
  line-height: 1.45;
  color: var(--premify-muted);
}

/* Responsive Styles for Dobra 3 */
@media (max-width: 1300px) {
  .ecosystem-decor-left {
    opacity: 0.4;
    left: -80px;
  }
  .ecosystem-decor-right {
    opacity: 0.4;
    right: -80px;
  }
}

@media (max-width: 1024px) {
  .ecosystem-decor-left {
    opacity: 0.15;
    left: -120px;
  }
  .ecosystem-decor-right {
    opacity: 0.15;
    right: -120px;
  }
  
  .ecosystem-grid {
    max-width: 760px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
    
  .ecosystem-header {
    margin-bottom: 40px;
    text-align: left;
  }
  
  .ecosystem-logo {
    height: 28px;
  }
  
  .ecosystem-title {
    font-size: 32px;
    line-height: 1.2;
    text-align: left;
  }
  
  .ecosystem-subtitle {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    margin: 0;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr; /* single column on mobile */
    gap: 16px;
    width: 100%;
  }
  
  .ecosystem-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(123, 63, 242, 0.12);
  }
  
  .ecosystem-card:hover {
    transform: none; /* remove translate hover on touch devices */
  }
  
  /* Reduce weight of side assets on mobile, making them background watermarks */
  .ecosystem-decor-left {
    height: 50%;
    opacity: 0.08;
    left: -150px;
    top: 30%;
  }
  
  .ecosystem-decor-right {
    height: 50%;
    opacity: 0.08;
    right: -150px;
    top: 70%;
  }
}

/* ============================================================
   DOBRA 4 — SUA PROMOÇÃO PODE FAZER MUITO MAIS
   ============================================================ */
.promo-more-section {
  background-color: var(--premify-white);
  background: radial-gradient(circle at 30% 50%, #fbf9ff 0%, var(--premify-white) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}

/* Background glows */
.promo-glow-bubble {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(123, 63, 242, 0.05) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

/* Right side decoration image */
.promo-decor-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  max-height: 740px;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 15%, #000 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 15%, #000 50%);
}

.promo-decor-right .decor-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.promo-decor-overlay {
  display: none;
}

/* Content Layout */
.promo-content-left {
  max-width: 620px;
  position: relative;
  z-index: 5;
}

.promo-title {
  font-family: var(--font-family-display);
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--premify-text);
  margin-bottom: 20px;
}

.promo-title .highlight-purple-inline {
  color: var(--premify-purple);
}

.promo-subtitle {
  font-family: var(--font-family-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--premify-muted);
  margin-bottom: 36px;
}

/* Featured Banner */
.promo-featured-banner {
  background: rgba(123, 63, 242, 0.04);
  border: 1px solid rgba(123, 63, 242, 0.12);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(123, 63, 242, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.featured-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--premify-purple);
  color: var(--premify-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(123, 63, 242, 0.2);
}

.featured-icon {
  width: 20px;
  height: 20px;
}

.featured-text {
  font-family: var(--font-family-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--premify-text);
}

.featured-text strong {
  font-weight: 700;
  color: var(--premify-purple);
}

/* Cards Grid */
.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: 100%;
}

.promo-small-card {
  background: var(--premify-white);
  border: 1px solid rgba(123, 63, 242, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 
    0 6px 15px rgba(123, 63, 242, 0.02),
    0 1px 3px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-small-card:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 63, 242, 0.25);
  box-shadow: 
    0 12px 25px rgba(123, 63, 242, 0.06),
    0 0 10px rgba(166, 107, 255, 0.05);
}

.card-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--premify-purple);
  color: var(--premify-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon {
  width: 18px;
  height: 18px;
}

.card-info-text {
  font-family: var(--font-family-sans);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--premify-text);
}

/* Responsiveness */
@media (max-width: 1200px) {
  .promo-decor-right {
    opacity: 0.5;
    right: -80px;
  }
}

@media (max-width: 1024px) {
  .promo-decor-right {
    opacity: 0.25;
    right: -100px;
  }
}

@media (max-width: 768px) {
    
  .promo-content-left {
    max-width: 100%;
  }
  
  .promo-title {
    font-size: 32px;
    line-height: 1.2;
    text-align: left;
  }
  
  .promo-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 28px;
  }
  
  .promo-featured-banner {
    padding: 16px 20px;
    gap: 14px;
    align-items: center;
  }
  
  .featured-text {
    font-size: 15px;
  }
  
  .promo-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .promo-small-card {
    padding: 16px 18px;
  }
  
  .promo-small-card:hover {
    transform: none;
  }
  
  /* Mobile: keep image at background/watermark, visible but non-distracting */
  .promo-decor-right {
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    opacity: 0.16;
    z-index: 2;
    mask-image: none;
    -webkit-mask-image: none;
  }
  
  }
}

/* ============================================================
   DOBRA 5 — COMO FUNCIONA / FLUXO COMPLETO
   ============================================================ */
.flow-section {
  background-color: var(--premify-bg-light);
  background: radial-gradient(circle at 50% 50%, #f7f3ff 0%, var(--premify-bg-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}

/* Background glows */
.flow-glow-bubble-left {
  position: absolute;
  top: 10%;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 63, 242, 0.05) 0%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

.flow-glow-bubble-right {
  position: absolute;
  bottom: 15%;
  right: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(166, 107, 255, 0.06) 0%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

/* Background waves */
.flow-bg-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

.flow-bg-waves svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Container */
.flow-container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-header {
  text-align: center;
  max-width: 820px;
  margin-bottom: 64px;
}

.flow-logo-wrapper {
  margin-bottom: 20px;
}

.flow-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.flow-title {
  font-family: var(--font-family-display);
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--premify-text);
  margin-bottom: 20px;
}

.flow-title .highlight-purple-flow {
  color: var(--premify-purple);
}

.flow-subtitle {
  font-family: var(--font-family-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--premify-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* Timeline Flow Desktop */
.flow-steps-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 64px auto;
  gap: 16px;
}

.flow-connecting-line {
  position: absolute;
  top: 60px; /* Aligned vertically with badges */
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(123, 63, 242, 0.12);
  z-index: 2;
  pointer-events: none;
}

.flow-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 3;
  padding: 0 4px;
  transition: transform 0.3s ease;
}

.flow-step-number {
  font-family: var(--font-family-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--premify-purple-light);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.flow-step-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--premify-white);
  border: 2px solid rgba(123, 63, 242, 0.16);
  color: var(--premify-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(123, 63, 242, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.step-icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.flow-step-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(123, 63, 242, 0.08);
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 
    0 6px 20px rgba(123, 63, 242, 0.02),
    0 1px 3px rgba(0, 0, 0, 0.01);
  width: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-title {
  font-family: var(--font-family-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--premify-text);
}

.step-text {
  font-family: var(--font-family-sans);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--premify-muted);
}

/* Card hover animation */
.flow-step-card:hover {
  transform: translateY(-4px);
  background: var(--premify-white);
  border-color: rgba(123, 63, 242, 0.25);
  box-shadow: 
    0 15px 30px rgba(123, 63, 242, 0.05),
    0 0 12px rgba(166, 107, 255, 0.05);
}

.flow-step-item:hover .flow-step-badge {
  border-color: var(--premify-purple);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(123, 63, 242, 0.15);
}

/* Featured Step (Stage 06 - Continuidade) */
.featured-step .flow-step-number {
  color: var(--premify-purple);
}

.featured-step .flow-step-badge {
  border-color: var(--premify-purple);
  background: var(--premify-purple-soft);
  color: var(--premify-purple);
}

.featured-step .flow-step-card {
  border: 1.5px solid var(--premify-purple);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 10px 25px rgba(123, 63, 242, 0.05),
    0 0 15px rgba(166, 107, 255, 0.05);
}

.featured-step .flow-step-card .step-title {
  color: var(--premify-purple);
}

/* CTA Wrapper */
.flow-cta-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  width: 100%;
}

.flow-cta-wrapper .btn {
  min-width: 280px;
}

/* Responsive Flow Layout */
@media (max-width: 1200px) {
  .flow-steps-wrapper {
    gap: 12px;
  }
  .flow-step-card {
    padding: 16px 12px;
    min-height: 180px;
  }
}

@media (max-width: 1024px) {
  .flow-connecting-line {
    left: 10%;
    right: 10%;
  }
  .flow-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
  }
  .flow-connecting-line {
    display: none; /* Hide line when grid wraps */
  }
  .flow-step-card {
    min-height: 150px;
  }
}

@media (max-width: 768px) {
    
  .flow-header {
    text-align: left;
    margin-bottom: 44px;
  }
  
  .flow-logo {
    height: 28px;
  }
  
  .flow-title {
    font-size: 32px;
    line-height: 1.2;
    text-align: left;
  }
  
  .flow-subtitle {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    margin: 0;
  }

  /* Vertical timeline layout */
  .flow-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 28px;
    margin-bottom: 48px;
    width: 100%;
  }
  
  .flow-connecting-line {
    display: block;
    left: 28px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    height: auto;
    background: rgba(123, 63, 242, 0.12);
    z-index: 1;
  }
  
  .flow-step-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    gap: 0 16px;
    align-items: center;
    text-align: left;
    width: 100%;
    padding: 0;
  }
  
  .flow-step-number {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 4px;
    font-size: 14px;
  }
  
  .flow-step-badge {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
    z-index: 3;
  }
  
  .flow-step-card {
    grid-column: 2;
    grid-row: 2;
    min-height: auto; /* wrap naturally on mobile */
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .flow-step-card:hover {
    transform: none; /* disable elevate on touch devices */
  }

  .flow-cta-wrapper .btn {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================================
   DOBRA 6 — DADOS E CONTINUIDADE
   ============================================================ */
.data-continuity-section {
  background-color: var(--premify-white);
  background: radial-gradient(circle at 75% 50%, #faf8ff 0%, var(--premify-white) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}

/* Glow bubble */
.data-glow-bubble {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(166, 107, 255, 0.05) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

/* Right side mockups layout */
.decor-right-dobra6 {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 48%;
  max-width: 660px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.5s ease;
}

.decor-dashboard {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(123, 63, 242, 0.07);
  transition: transform 0.5s ease;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 12%, #000 45%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 12%, #000 45%);
}

.decor-phone {
  position: absolute;
  right: 25px;
  bottom: -25px;
  width: 33%;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(123, 63, 242, 0.16));
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.decor-overlay-dobra6 {
  display: none;
}

/* Left content layout */
.data-content-left {
  max-width: 610px;
  position: static;
}

.data-title {
  font-family: var(--font-family-display);
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--premify-text);
  margin-bottom: 20px;
}

.data-title .highlight-purple-inline {
  color: var(--premify-purple);
}

.data-subtitle {
  font-family: var(--font-family-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--premify-muted);
  margin-bottom: 44px;
}

/* Flow steps Dobra 6 */
.flow-steps-dobra6 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  width: 100%;
}

.flow-step-d6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.flow-badge-d6 {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--premify-purple-soft);
  color: var(--premify-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(123, 63, 242, 0.03);
  transition: all 0.3s ease;
}

.flow-icon-svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.flow-label-d6 {
  font-family: var(--font-family-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--premify-text);
  white-space: nowrap;
}

.flow-arrow-d6 {
  width: 20px;
  height: 20px;
  color: rgba(123, 63, 242, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-arrow-d6 svg {
  width: 100%;
  height: 100%;
}

/* Hovering flow item */
.flow-step-d6:hover {
  transform: translateY(-2px);
}

.flow-step-d6:hover .flow-badge-d6 {
  background: var(--premify-purple);
  color: var(--premify-white);
  box-shadow: 0 6px 15px rgba(123, 63, 242, 0.2);
}

/* Benefits Grid */
.benefits-grid-dobra6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  width: 100%;
}

.benefit-item-d6 {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}

.benefit-badge-d6 {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(123, 63, 242, 0.05);
  border: 1px solid rgba(123, 63, 242, 0.1);
  color: var(--premify-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-icon-svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
}

.benefit-text-d6 {
  font-family: var(--font-family-sans);
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--premify-muted);
  transition: color 0.3s ease;
}

/* Hovering benefit item */
.benefit-item-d6:hover {
  transform: translateX(4px);
}

.benefit-item-d6:hover .benefit-badge-d6 {
  background: var(--premify-purple);
  color: var(--premify-white);
  border-color: var(--premify-purple);
  box-shadow: 0 4px 10px rgba(123, 63, 242, 0.15);
}

.benefit-item-d6:hover .benefit-text-d6 {
  color: var(--premify-text);
}

/* Responsiveness */
@media (max-width: 1250px) {
  .decor-right-dobra6 {
    opacity: 0.5;
    right: -60px;
  }
}

@media (max-width: 1024px) {
  .decor-right-dobra6 {
    opacity: 0.25;
    right: -100px;
  }
}

@media (max-width: 768px) {
    
  .data-content-left {
    max-width: 100%;
  }
  
  .data-title {
    font-size: 32px;
    line-height: 1.2;
    text-align: left;
  }
  
  .data-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  
  /* 2x2 grid for flow on mobile */
  .flow-steps-dobra6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    margin-bottom: 24px;
  }
  
  .flow-arrow-d6 {
    display: none; /* Hide arrows in 2x2 grid */
  }
  
  .flow-step-d6 {
    width: 120px;
  }
  
  /* Single column benefits */
  .benefits-grid-dobra6 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .benefit-item-d6:hover {
    transform: none;
  }

  /* Decors sitting nicely below text */
  .decor-right-dobra6 {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 24px auto;
    display: flex;
    justify-content: center;
    opacity: 1;
    top: auto;
    transform: none;
    right: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
  
  .decor-dashboard {
    width: 100%;
    border-radius: 12px;
    mask-image: none;
    -webkit-mask-image: none;
    box-shadow: 0 10px 30px rgba(123, 63, 242, 0.12);
  }
  
  .decor-phone {
    width: 32%;
    right: 4%;
    bottom: -15px;
  }
}

/* ============================================================
   DOBRA 7 — MECÂNICAS PROMOCIONAIS
   ============================================================ */
.mecanicas-section {
  position: relative;
  background-color: var(--premify-bg-light);
  background: radial-gradient(circle at 15% 20%, #f6f1ff 0%, var(--premify-bg-light) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}

.mecanicas-bg-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  max-width: 900px;
  height: auto;
  pointer-events: none;
  opacity: 0.85; /* Visual blend logic */
  z-index: 1;
}

.mecanicas-container {
  position: relative;
  z-index: 5;
}

.mecanicas-header {
  max-width: 680px;
  margin-bottom: 56px;
  text-align: left;
}

.mecanicas-title {
  font-family: var(--font-family-display);
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--premify-text);
  margin-bottom: 20px;
}

.mecanicas-title .highlight-purple-inline {
  color: var(--premify-purple);
}

.mecanicas-subtitle {
  font-family: var(--font-family-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--premify-muted);
}

.mecanicas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mecanica-card {
  background-color: var(--premify-white);
  border: 1px solid rgba(123, 63, 242, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 10px 30px rgba(123, 63, 242, 0.03);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mecanica-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 63, 242, 0.2);
  box-shadow: 0 20px 40px rgba(123, 63, 242, 0.08);
}

.mecanica-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.mecanica-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.mecanica-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.mecanica-card-title {
  font-family: var(--font-family-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--premify-text);
  line-height: 1.3;
  padding-right: 90px; /* Space for the tag */
}

.mecanica-card-text {
  font-family: var(--font-family-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--premify-muted);
}

.mecanica-tag {
  position: absolute;
  top: 36px;
  right: 32px;
  background-color: var(--premify-purple-soft);
  color: var(--premify-purple);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVIDADE (MOBILE / TABLET) FOR DOBRA 7
   ============================================================ */
@media (max-width: 1024px) {
  .mecanicas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
    
  .mecanicas-header {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .mecanicas-title {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .mecanicas-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .mecanicas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mecanica-card {
    padding: 28px 24px;
    flex-direction: column;
    gap: 16px;
  }
  
  .mecanica-icon {
    width: 56px;
    height: 56px;
  }
  
  .mecanica-card-title {
    font-size: 18px;
    padding-right: 0;
    margin-top: 4px;
  }
  
  .mecanica-tag {
    position: static;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 4px;
  }
  
  .mecanica-info {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
   DOBRA 8 — COMPARATIVO (PROMOÇÃO VS PREMIFY)
   ============================================================ */
.comparativo-section {
  position: relative;
  background-color: var(--premify-bg-light);
  background: radial-gradient(circle at 50% 30%, #f6f2ff 0%, var(--premify-bg-light) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}

.comparativo-bg-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1900px;
  height: auto;
  pointer-events: none;
  opacity: 0.12; /* Subtle tech curves */
  z-index: 1;
}

.comparativo-bg-pdv {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  max-width: 448px;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.08; /* Very soft supermarket environment watermark */
  z-index: 1;
  mask-image: linear-gradient(to left, #000 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 40%, transparent 100%);
}

.comparativo-glow-bubble {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(166, 107, 255, 0.06) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 2;
}

.comparativo-container {
  position: relative;
  z-index: 5;
}

.comparativo-header {
  max-width: 800px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.comparativo-title {
  font-family: var(--font-family-display);
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.comparativo-title .title-dark {
  color: var(--premify-indigo);
}

.comparativo-title .title-highlight {
  color: var(--premify-purple);
}

.comparativo-subtitle {
  font-family: var(--font-family-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--premify-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* Table layout */
.comparativo-tabela {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--premify-white);
  border-radius: 20px;
  border: 1px solid rgba(123, 63, 242, 0.08);
  box-shadow: 0 20px 50px rgba(123, 63, 242, 0.04);
  overflow: hidden;
}

.tabela-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(123, 63, 242, 0.08);
}

.header-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  font-family: var(--font-family-display);
  font-size: 20px;
  font-weight: 800;
}

.header-col svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.header-col.comum {
  background-color: #faf9fc;
  color: var(--premify-muted);
  border-right: 1px solid rgba(123, 63, 242, 0.08);
}

.header-col.premify {
  background-color: #f7f3ff;
  color: var(--premify-purple);
}

.tabela-linha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(123, 63, 242, 0.04);
  transition: background-color 0.3s ease;
}

.tabela-linha:hover {
  background-color: rgba(123, 63, 242, 0.005);
}

.tabela-linha:last-child {
  border-bottom: none;
}

.linha-col {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 36px;
  position: relative;
}

.linha-col.comum {
  color: var(--premify-muted);
  border-right: 1px solid rgba(123, 63, 242, 0.04);
}

.linha-col.premify {
  color: var(--premify-purple);
  font-weight: 600;
  background-color: rgba(123, 63, 242, 0.01);
}

.linha-col .col-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.linha-col .col-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.linha-col .col-text {
  font-family: var(--font-family-sans);
  font-size: 16px;
  line-height: 1.45;
}

.mobile-only-label {
  display: none;
}

/* CTA layout */
.comparativo-cta-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

/* ============================================================
   RESPONSIVIDADE (MOBILE / TABLET) FOR DOBRA 8
   ============================================================ */
@media (max-width: 768px) {
    
  .comparativo-header {
    margin-bottom: 40px;
  }
  
  .comparativo-title {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .comparativo-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .comparativo-bg-pdv {
    opacity: 0.03; /* Lower opacity for background overlay to prevent clutter */
    width: 40%;
  }

  .comparativo-tabela {
    border: none;
    box-shadow: none;
    background-color: transparent;
  }
  
  .tabela-header {
    display: none; /* Hide header columns, replaced by line tags */
  }
  
  .tabela-linha {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background-color: var(--premify-white);
    border-radius: 16px;
    border: 1px solid rgba(123, 63, 242, 0.08);
    box-shadow: 0 8px 24px rgba(123, 63, 242, 0.02);
    margin-bottom: 20px;
  }
  
  .tabela-linha:last-child {
    margin-bottom: 0;
  }
  
  .linha-col {
    padding: 0;
    border-right: none;
    background-color: transparent;
  }
  
  .linha-col.premify {
    background-color: rgba(123, 63, 242, 0.03);
    border: 1px solid rgba(123, 63, 242, 0.12);
    border-radius: 10px;
    padding: 14px 16px;
  }
  
  .linha-col.comum {
    padding: 4px 16px;
  }
  
  .linha-col .col-icon {
    width: 40px;
    height: 40px;
  }
  
  .linha-col .col-text {
    font-size: 15px;
  }
  
  .mobile-only-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 3px;
  }
  
  .linha-col.comum .mobile-only-label {
    color: var(--premify-muted);
  }
  
  .linha-col.premify .mobile-only-label {
    color: var(--premify-purple);
  }
  
  .comparativo-cta-wrapper {
    margin-top: 36px;
    width: 100%;
    padding: 0 16px;
  }
  
  .comparativo-cta-wrapper .btn {
    width: 100%;
  }
}

/* ============================================================
   DOBRA 9 — SIMULAÇÃO DE CAMPANHA (CONVERSÃO FINAL)
   ============================================================ */
.simulation-section {
  position: relative;
  background-color: var(--premify-bg-light);
  background: radial-gradient(circle at 80% 80%, #f4eeff 0%, var(--premify-bg-light) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}

.simulation-bg-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  max-width: 800px;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.75;
  z-index: 1;
  mask-image: linear-gradient(to left, #000 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 100%);
}

.simulation-glow-bubble {
  position: absolute;
  bottom: -10%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(166, 107, 255, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 2;
}

.simulation-container {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 5;
}

.simulation-content-left {
  flex: 1.1;
  max-width: 640px;
}

.simulation-title {
  font-family: var(--font-family-display);
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--premify-text);
  margin-bottom: 20px;
}

.simulation-title .highlight-purple-inline {
  color: var(--premify-purple);
}

.simulation-subtitle {
  font-family: var(--font-family-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--premify-muted);
  margin-bottom: 36px;
}

/* Benefits vertical list */
.simulation-benefits-list {
  list-style: none;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simulation-benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.simulation-benefit-item:hover {
  transform: translateX(6px);
}

.benefit-icon-wrapper {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon-wrapper svg {
  display: block;
  width: 100%;
  height: auto;
}

.benefit-label {
  font-family: var(--font-family-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--premify-text);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.simulation-benefit-item:hover .benefit-label {
  color: var(--premify-purple);
}

/* CTAs Area */
.simulation-ctas {
  display: flex;
  align-items: center;
  gap: 32px;
}

.simulation-ctas .btn-primary {
  padding: 18px 38px;
  font-size: 16px;
  box-shadow: 
    0 16px 36px rgba(123, 63, 242, 0.25),
    0 0 20px rgba(166, 107, 255, 0.15);
}

.btn-whatsapp-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--premify-purple);
  text-decoration: none;
  font-family: var(--font-family-sans);
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-whatsapp-text svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-whatsapp-text span {
  position: relative;
}

.btn-whatsapp-text span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--premify-purple);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.btn-whatsapp-text:hover {
  color: var(--premify-purple-light);
}

.btn-whatsapp-text:hover svg {
  transform: scale(1.1) rotate(6deg);
}

.btn-whatsapp-text:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
  background-color: var(--premify-purple-light);
}

/* Decor right side (dashboard) */
.simulation-decor-right {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.simulation-dashboard-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(22, 11, 58, 0.15)) drop-shadow(0 0 30px rgba(166, 107, 255, 0.08));
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.simulation-dashboard-img:hover {
  transform: translateY(-6px) scale(1.01) rotate(0.5deg);
  filter: drop-shadow(0 30px 60px rgba(123, 63, 242, 0.22)) drop-shadow(0 0 40px rgba(166, 107, 255, 0.15));
}

/* ============================================================
   MODAL LARGE STYLES & FORM GRID
   ============================================================ */
.modal-container {
  /* Prevent modal from clipping on smaller screen heights */
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.modal-container.modal-large {
  max-width: 720px;
  padding: 44px;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin-bottom: 24px;
}

/* Custom styling for select inputs in premium modal */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a66bff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background-color: var(--premify-indigo);
  color: var(--premify-white);
  padding: 12px;
}

.form-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'/%3E%3C/svg%3E");
}

/* Scrollbar styling for premium modal */
.modal-container::-webkit-scrollbar {
  width: 6px;
}

.modal-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
  background: rgba(166, 107, 255, 0.25);
  border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: rgba(166, 107, 255, 0.4);
}

/* ============================================================
   RESPONSIVIDADE (MOBILE / TABLET) FOR DOBRA 9
   ============================================================ */
@media (max-width: 1024px) {
  .simulation-container {
    gap: 40px;
  }
  
  .simulation-dashboard-img {
    max-width: 440px;
  }
}

@media (max-width: 768px) {
    
  .simulation-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .simulation-content-left {
    max-width: 100%;
    flex: auto;
  }
  
  .simulation-title {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .simulation-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 28px;
  }
  
  .simulation-benefits-list {
    margin-bottom: 32px;
    gap: 16px;
  }
  
  .simulation-benefit-item:hover {
    transform: none;
  }
  
  .benefit-icon-wrapper {
    width: 44px;
    height: 44px;
  }
  
  .benefit-label {
    font-size: 15px;
  }
  
  .simulation-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .simulation-ctas .btn-primary {
    width: 100%;
    padding: 16px 24px;
  }
  
  .btn-whatsapp-text {
    justify-content: center;
    padding: 12px;
    background: rgba(123, 63, 242, 0.04);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 12px;
  }
  
  .btn-whatsapp-text:hover {
    background: rgba(123, 63, 242, 0.08);
  }
  
  .simulation-decor-right {
    width: 100%;
    flex: auto;
    justify-content: center;
    margin-top: 16px;
  }
  
  .simulation-dashboard-img {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(22, 11, 58, 0.12)) drop-shadow(0 0 20px rgba(166, 107, 255, 0.06));
  }
  
  .simulation-dashboard-img:hover {
    transform: none;
    filter: drop-shadow(0 15px 30px rgba(22, 11, 58, 0.12)) drop-shadow(0 0 20px rgba(166, 107, 255, 0.06));
  }
  
  .simulation-bg-lines {
    opacity: 0.35;
    width: 80%;
  }

  /* Modal Form responsivo */
  .form-grid-2col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .modal-container.modal-large {
    padding: 36px 20px;
    border-radius: 20px;
  }
  
  .modal-title {
    font-size: 24px;
  }
}







/* ============================================================
   GLOBAL FOOTER (RODAPÉ ESCURO PREMIUM)
   ============================================================ */
.site-footer {
  background-color: var(--premify-indigo);
  background: 
    radial-gradient(circle at 10% 90%, rgba(123, 63, 242, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(166, 107, 255, 0.05) 0%, transparent 45%),
    linear-gradient(135deg, #090824 0%, #160B3A 100%);
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
  color: var(--premify-white);
  border-top: 1px solid rgba(166, 107, 255, 0.12);
  z-index: 20;
}

.footer-glow {
  position: absolute;
  top: -200px;
  left: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 63, 242, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-brand-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col-title {
  font-family: var(--font-family-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--premify-white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-links-list,
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--premify-purple-light);
  transform: translateX(3px);
  display: inline-block;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

.contact-value {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-value:hover {
  color: var(--premify-purple-light);
}

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-link:hover {
  background: rgba(166, 107, 255, 0.08);
  border-color: var(--premify-purple-light);
  color: var(--premify-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 63, 242, 0.2);
}

/* ============================================================
   PÁGINA DE POLÍTICA DE PRIVACIDADE
   ============================================================ */
.privacy-page {
  background-color: var(--premify-bg-light);
  color: var(--premify-text);
}

.privacy-page .site-header {
  position: relative; /* Fixed flow rather than absolute on text subpages */
  background-color: var(--premify-indigo);
  height: 96px;
}

.privacy-hero {
  padding: 80px 0 48px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, #f7f3ff 0%, var(--premify-bg-light) 100%);
  border-bottom: 1px solid rgba(123, 63, 242, 0.08);
}

.privacy-hero-title {
  font-family: var(--font-family-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--premify-text);
  margin-bottom: 16px;
}

.privacy-hero-subtitle {
  font-family: var(--font-family-sans);
  font-size: 18px;
  line-height: 1.5;
  color: var(--premify-muted);
  max-width: 600px;
  margin: 0 auto;
}

.privacy-main-content {
  padding: 64px 0 96px 0;
}

.privacy-body-container {
  display: flex;
  justify-content: center;
}

.privacy-content-card {
  background: var(--premify-white);
  border: 1px solid rgba(123, 63, 242, 0.08);
  border-radius: 20px;
  padding: 56px;
  max-width: 840px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(123, 63, 242, 0.02);
}

.privacy-update-date {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--premify-purple);
  margin-bottom: 24px;
}

.privacy-content-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--premify-text);
  opacity: 0.9;
  margin-bottom: 20px;
}

.privacy-section-block {
  margin-top: 40px;
  border-top: 1px dashed rgba(123, 63, 242, 0.12);
  padding-top: 36px;
}

.privacy-section-block:first-of-type {
  margin-top: 24px;
  border-top: none;
  padding-top: 0;
}

.privacy-section-block h2 {
  font-family: var(--font-family-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--premify-indigo);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.privacy-section-block h3 {
  font-family: var(--font-family-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--premify-text);
  margin-top: 24px;
  margin-bottom: 12px;
}

.privacy-section-block ul {
  margin-left: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-section-block li {
  font-family: var(--font-family-sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--premify-text);
  opacity: 0.85;
}

.privacy-email-link {
  color: var(--premify-purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.privacy-email-link:hover {
  color: var(--premify-purple-light);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVIDADE PARA RODAPÉ E PÁGINA PRIVACIDADE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }
  
  .footer-col-contact {
    grid-column: span 4;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    margin-top: 8px;
  }
  
  .footer-col-contact .footer-col-title {
    margin-bottom: 0;
    padding-top: 8px;
  }
  
  .footer-contact-list {
    flex-direction: row;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 32px 0;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer-col-contact {
    grid-column: span 1;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
  }
  
  .footer-col-contact .footer-col-title {
    padding-top: 0;
  }
  
  .footer-contact-list {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  
  .privacy-content-card {
    padding: 32px 20px;
    border-radius: 16px;
  }
  
  .privacy-section-block h2 {
    font-size: 20px;
  }
  
  .privacy-section-block h3 {
    font-size: 16px;
  }
}

/* ============================================================
   SCROLL MARGIN OFFSET FOR FIXED HEADER
   ============================================================ */
#ecossistema-section,
#como-funciona-section,
#mecanicas-section,
#comparativo-section,
#dobra-09-simulacao {
  scroll-margin-top: 80px; /* Compensate for sticky header height */
}

/* ============================================================
   WHATSAPP CTA INSIDE MOBILE MENU OVERLAY
   ============================================================ */
.btn-mobile-menu-whatsapp {
  display: none;
}

@media (max-width: 768px) {
  .btn-mobile-menu-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    background: linear-gradient(135deg, #6C2BE2 0%, #8E4FFF 100%);
    color: var(--premify-white);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(123, 63, 242, 0.25);
    border: 1px solid rgba(166, 107, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .btn-mobile-menu-whatsapp:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }
}

@media (max-width: 480px) {
  .header-cta .btn-header {
    display: none !important;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background-color: #f8f6fc;
  padding: 80px 0;
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-title {
  font-family: var(--font-family-display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #1a0f3d;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.faq-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4563;
  max-width: 760px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--premify-white);
  border: 1px solid rgba(166, 107, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(26, 15, 61, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(166, 107, 255, 0.3);
  box-shadow: 0 8px 25px rgba(26, 15, 61, 0.06);
}

.faq-item.active {
  border-color: rgba(166, 107, 255, 0.4);
  box-shadow: 0 12px 35px rgba(123, 63, 242, 0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #1a0f3d;
}

.faq-question-text {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-family-display);
  padding-right: 24px;
}

.faq-item.active .faq-question-text {
  color: var(--premify-purple);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8E4FFF;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4563;
}

/* FAQ CTA */
.faq-cta-wrapper {
  margin-top: 56px;
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(166, 107, 255, 0.2);
  box-shadow: 0 15px 40px rgba(123, 63, 242, 0.06);
}

.faq-cta-text {
  font-size: 18px;
  font-weight: 600;
  color: #1a0f3d;
  margin-bottom: 20px;
}

.btn-faq-cta {
  min-width: 280px;
  height: 56px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-header {
    margin-bottom: 40px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question-text {
    font-size: 16px;
  }
  
  .faq-answer-inner {
    padding: 0 20px 20px 20px;
    font-size: 15px;
  }
  
  .faq-cta-wrapper {
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .faq-cta-text {
    font-size: 16px;
  }
  
  .btn-faq-cta {
    width: 100%;
  }
}
