/* =========================
       DESIGN SYSTEM — VTRES60
    ========================== */

/* Font-face — Open Sauce Sans (all real weights) */
@font-face {
  font-family: 'Open Sauce Sans';
  src: url('../fonts/OpenSauceSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce Sans';
  src: url('../fonts/OpenSauceSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce Sans';
  src: url('../fonts/OpenSauceSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce Sans';
  src: url('../fonts/OpenSauceSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce Sans';
  src: url('../fonts/OpenSauceSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce One';
  src: url('../fonts/OpenSauceOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce One';
  src: url('../fonts/OpenSauceOne-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce One';
  src: url('../fonts/OpenSauceOne-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce One';
  src: url('../fonts/OpenSauceOne-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

:root {
  /* Typography — fallback neutro até Open Sauce ser carregada */
  --font-display: 'Open Sauce Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Open Sauce One', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Color palette — aligned with Figma */
  --color-blue: #0066FF;
  --color-purple: #CC44FF;
  --color-magenta: #A000A0;
  --color-red: #E6193C;

  /* Backward-compat aliases for existing gradient references */
  --g1: #E6193C;
  --g2: #A000A0;
  --g3: #CC44FF;
  --g4: #0066FF;

  /* Surfaces */
  --color-bg: #000000;
  --color-surface-1: #0A0A0A;
  --color-surface-2: #111114;
  --color-surface-3: #18181B;
  --color-border: rgba(255, 255, 255, 0.10);
  --color-border-hover: rgba(255, 255, 255, 0.20);

  /* Text */
  --color-text-primary: #FFFFFF;
  --color-text-secondary: rgba(255, 255, 255, 0.72);
  --color-text-muted: rgba(255, 255, 255, 0.45);

  /* Gradients — exact Figma */
  --gradient-cta: linear-gradient(270deg, #005AFF 0%, #B400FF 49.97%, #B400FF 75.2%);
  --gradient-accent: linear-gradient(90deg, #E6193C, #CC44FF, #0066FF);
  --gradient-text: linear-gradient(90deg, #E6193C 0%, #0066FF 100%);

  /* Spacing */
  --header-height: 80px;
  --section-py: 96px;
  --section-py-lg: 120px;
  --section-title-gap: 18px;
  --section-body-gap: 26px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.20);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.30);
  --shadow-glow-cta: 0 0 24px rgba(123, 43, 255, 0.35);

  /* Container */
  --container-max: 1400px;
  --container-px: clamp(16px, 4vw, 32px);

  /* Section depth (for dark premium variation) */
  --section-radius: 40px;
  --section-overlap: 28px;

  --btn-fade: rgba(255, 255, 255, .70);
}

@media (max-width: 768px) {
  :root {
    --section-radius: 28px;
    --section-overlap: 18px;
    --section-py: 64px;
    --section-py-lg: 80px;
    --section-title-gap: 14px;
    --section-body-gap: 20px;
  }
}

/* Base typography */
body {
  font-family: var(--font-body);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

/* Heading scale — exact Figma values */
.heading-hero {
  font-family: 'Open Sauce Sans', var(--font-display);
  font-size: clamp(2.75rem, 5.5vw + 0.25rem, 81.573px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -5.71px;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .heading-hero {
    line-height: 1.02;
    letter-spacing: -0.05em;
  }
}

.heading-section {
  font-family: 'Open Sauce Sans', var(--font-display);
  font-size: clamp(1.875rem, 3vw + 0.5rem, 3rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.heading-sub {
  font-size: clamp(1.125rem, 1.8vw + 0.25rem, 1.5rem);
  font-weight: 500;
  line-height: 1.25;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Selection */
::selection {
  background: var(--color-blue);
  color: #ffffff;
}

/* Gradient text utility */
.v360-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}



/* =========================
       BOTÕES
    ========================== */
/* Glassmorphism panel (match dashboard) */
.glass-panel {
  background: rgba(10, 10, 10, 0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}



/* Botão Chamativo — exact Figma values */
.btn-grad {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2.25rem;
  border-radius: 9999px;
  border: 1px solid #EEE;
  background: var(--gradient-cta);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.btn-grad::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 160% at 70% 30%, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, 0) 55%);
  opacity: .75;
  z-index: 0;
  pointer-events: none;
}

.btn-grad::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -22%;
  width: 58%;
  height: 170%;
  border-radius: inherit;
  background: radial-gradient(closest-side, var(--btn-fade) 0%, rgba(255, 255, 255, .20) 45%, rgba(255, 255, 255, 0) 72%);
  filter: blur(10px);
  opacity: .25;
  transform: rotate(8deg);
  z-index: 0;
  pointer-events: none;
}

.btn-grad>* {
  position: relative;
  z-index: 1;
}

.btn-grad:hover {
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-grad:active {
  transform: scale(0.98);
  filter: brightness(1.2);
}


/* Botão Normal — exact Figma values */
.btn-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  border: 1px solid #EEE;
  background: #EEE;
  color: #000000;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: border-color .18s ease, transform .18s ease, background-color .18s ease;
}

.btn-outline:hover {
  background: #FFFFFF;
  border-color: #FFF;
  transform: translateY(-1px);
}

.btn-outline:active {
  transform: translateY(0px) scale(.99);
}


/* =========================
       MARQUEE
    ========================== */
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation-duration: 90s !important;
  }
}





/* =========================
       DIVIDER
    ========================== */
.grad-divider {
  height: 3px;
  width: 100%;
  max-width: 820px;
  margin: 26px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(224, 0, 32, .05) 0%, rgba(224, 0, 32, .85) 10%, rgba(160, 0, 96, .85) 40%, rgba(128, 0, 128, .85) 65%, rgba(32, 0, 192, .85) 90%, rgba(32, 0, 192, .05) 100%);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .35));
  opacity: .70;
  position: relative;
  overflow: hidden;
}

.grad-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -60%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}


/* =========================
       ESPAÇAMENTO
    ========================== */
.section-pad {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section-pad-lg {
  padding-top: var(--section-py-lg);
  padding-bottom: var(--section-py-lg);
}

.section-title {
  margin-bottom: var(--section-title-gap);
}

/* Transformacao benefit cards hover */
.benefit-card {
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.section-body {
  margin-top: var(--section-body-gap);
}


/* =========================
       HOVER CARDS METODOLOGIA
    ========================== */
.method-card {
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
  will-change: transform;
}

.method-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(224, 0, 32, .28), rgba(128, 0, 128, .22), rgba(32, 0, 192, .22));
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
  z-index: 0;
  filter: blur(10px);
}

.method-card>* {
  position: relative;
  z-index: 1;
}

.method-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .55);
  border-color: rgba(255, 255, 255, .22);
  background-color: rgba(255, 255, 255, .07);
}

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





/* =========================
       PONTO PULSANDO
    ========================== */
.pulse-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 rgba(52, 211, 153, .35);
  animation: dotPulse 1.6s ease-out infinite;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(52, 211, 153, .30) 0%, rgba(52, 211, 153, 0) 60%);
  opacity: .9;
  animation: ringPulse 1.6s ease-out infinite;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, .45);
  }

  60% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

@keyframes ringPulse {
  0% {
    transform: scale(.35);
    opacity: .65;
  }

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

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


/* =========================
       POLAROID STACK (Quem Somos)
    ========================== */
.polaroid {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0, 0, 0, .55);
  transform-origin: center;
  position: relative;
  isolation: isolate;
}

.polaroid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 20% 10%, rgba(224, 0, 32, .20) 0%, rgba(128, 0, 128, .10) 35%, rgba(32, 0, 192, .12) 65%, rgba(0, 0, 0, 0) 75%);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}

.polaroid img {
  position: relative;
  z-index: 0;
}

.polaroid .label {
  position: relative;
  z-index: 2;
  padding: 12px 14px 14px;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
}




/* =========================
       BACKGROUND (IGUAL FAQ) — USAR NA TRANSFORMAÇÃO TAMBÉM
    ========================== */
.v360-section-bg {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 450px at 20% 30%, rgba(224, 0, 32, 0.08), transparent 60%),
    radial-gradient(800px 450px at 80% 70%, rgba(32, 0, 192, 0.08), transparent 60%),
    transparent;
}


/* =========================
       REVEAL ON SCROLL (fade + slide)
    ========================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: opacity 600ms ease, transform 700ms ease, filter 700ms ease;
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal.delay-1 {
  transition-delay: 80ms;
}

.reveal.delay-2 {
  transition-delay: 140ms;
}

.reveal.delay-3 {
  transition-delay: 220ms;
}


/* =========================
       METHOD CARD — sutil gradiente topo
    ========================== */
.method-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(224, 0, 32, .22) 0%, rgba(128, 0, 128, .14) 25%, rgba(32, 0, 192, .08) 50%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, .06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.method-bar {
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--g1), var(--g2), var(--g3), var(--g4));
  opacity: .55;
  z-index: 2;
}


/* =========================
       SEÇÃO CLARA ARREDONDADA — TOP
       (restaurado do Site Antigo, adaptado aos tokens atuais)
    ========================== */
.section-rounded-top {
  background: linear-gradient(135deg, #dbeafe 0%, #f8fafc 50%, #ffe4e6 100%);
  background-attachment: fixed;
  position: relative;
  z-index: 10;
  border-top-left-radius: var(--section-radius);
  border-top-right-radius: var(--section-radius);
  margin-top: calc(var(--section-overlap) * -1);
  overflow: hidden;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, .06), 0 -18px 70px rgba(0, 0, 0, .18);
}

/* =========================
       SEÇÃO CLARA ARREDONDADA — BOTTOM
    ========================== */
.section-rounded-bottom {
  background: linear-gradient(135deg, #dbeafe 0%, #f8fafc 50%, #ffe4e6 100%);
  background-attachment: fixed;
  position: relative;
  z-index: 10;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
  margin-bottom: calc(var(--section-overlap) * -1);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 18px 70px rgba(0, 0, 0, .18);
}

/* Glass panel — light variant (inside white sections) */
.section-rounded-top .glass-panel,
.section-rounded-bottom .glass-panel {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 102, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #1e293b;
}

/* Light section utility: blue-tinted border */
.border-v360-light {
  border: 1px solid rgba(0, 102, 255, 0.12) !important;
}

/* btn-grad inside light sections — adapted glow */
.section-rounded-top .btn-grad,
.section-rounded-bottom .btn-grad {
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.25);
}




/* =========================
       MOBILE MENU
    ========================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, .80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
  padding: max(2rem, 10vh) 1rem 2rem;
  overflow-y: auto;
  gap: 28px;
}

.mobile-menu-nav a {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: color .18s ease;
}

.mobile-menu-nav a:hover {
  color: #fff;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, .85);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}

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

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

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


/* =========================
       WHATSAPP FAB
    ========================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .40), 0 0 0 0 rgba(37, 211, 102, .40);
  transition: transform .18s ease, box-shadow .3s ease;
  animation: fabPulse 2.5s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .45);
}

.whatsapp-fab:active {
  transform: scale(.96);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .40), 0 0 0 0 rgba(37, 211, 102, .35);
  }

  50% {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .40), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}


/* =========================
       TABS — O QUE IMPLEMENTAMOS
    ========================== */
.impl-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

.impl-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .22s ease;
}

.impl-tab:hover {
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .8);
}

.impl-tab.is-active {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .30);
}

.impl-tab.is-active .impl-tab-icon {
  background: linear-gradient(135deg, var(--g1), var(--g3), var(--g4));
  color: #fff;
}

.impl-tab-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: rgba(255, 255, 255, .06);
  transition: background .22s ease, color .22s ease;
}

.impl-panel {
  display: none;
  margin-top: 48px;
  gap: 40px;
  align-items: center;
}

.impl-panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.impl-panel-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.impl-panel-desc {
  color: rgba(255, 255, 255, .65);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.impl-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, .80);
  line-height: 1.45;
}

.impl-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--g1), var(--g4));
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #fff;
  margin-top: 1px;
}

.impl-visual {
  background: rgba(10, 10, 10, 0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 32px;
  display: grid;
  place-items: center;
  min-height: 280px;
  text-align: center;
}

.impl-visual-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.impl-visual-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
}

@media (max-width: 768px) {
  .impl-panel.is-active {
    grid-template-columns: 1fr;
  }

  .impl-visual {
    min-height: 180px;
    order: -1;
  }

  .impl-tabs {
    gap: 4px;
  }

  .impl-tab {
    padding: 10px 12px;
    font-size: 10px;
  }

  .impl-tab-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}


/* =========================
       FAQ SMOOTH ANIMATION
    ========================== */
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-item.is-open .faq-a {
  max-height: 500px;
  padding-top: 0;
  padding-bottom: 22px;
}


@media (prefers-reduced-motion: reduce) {

  .method-card,
  .method-card::before {
    transition: none !important;
  }

  .method-card:hover {
    transform: none !important;
  }

  .marquee__track {
    animation-duration: 90s !important;
  }

  .btn-grad,
  .btn-outline {
    transition: none !important;
  }

  .pulse-dot,
  .pulse-dot::after {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .whatsapp-fab {
    animation: none !important;
  }

  .faq-a {
    transition: none !important;
  }

  .mobile-menu-overlay {
    transition: none !important;
  }
}


/* =========================
       FAQ (VTRES60) — clean e minimalista
    ========================== */
.faq-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 450px at 25% 25%, rgba(224, 0, 32, 0.08), transparent 60%),
    radial-gradient(800px 450px at 75% 75%, rgba(32, 0, 192, 0.08), transparent 60%),
    transparent;
}

.faq-wrap {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.faq-left {
  text-align: center;
  justify-self: center;
  max-width: 420px;
}

.faq-title {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-size: clamp(40px, 4.2vw, 56px);
}

.faq-subtitle {
  margin: 18px auto 0;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: rgba(10, 10, 10, 0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px 22px;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  font-family: inherit;
}

.faq-qtext {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.faq-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #e00020 0%, #a00060 45%, #800080 70%, #2000c0 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.faq-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.65);
  border-bottom: 2px solid rgba(255, 255, 255, 0.65);
  transform: rotate(45deg);
  transition: transform 180ms ease;
  margin-right: 6px;
}

.faq-a {
  padding: 0 22px 0 22px;
}

.faq-a-inner {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(225deg);
}

.faq-item.is-open {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

@media (max-width: 980px) {
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .faq-left {
    max-width: 560px;
  }

  .faq-title {
    font-size: clamp(34px, 8vw, 52px);
  }
}