/* ===== VARIÁVEIS DE TEMA ===== */
:root {
  --color-brand-bg: #000000;
  --color-brand-primary: #ffd60a;
  --color-brand-dark: #0f0e09;

  --color-white: #ffffff;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;

  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-soft: 0 0 30px rgba(255, 214, 10, 0.25);
  --shadow-strong: 0 0 40px rgba(255, 214, 10, 0.5);

  --transition-fast: 150ms ease-out;
  --transition-normal: 300ms ease;
}

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

html,
body {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-brand-bg);
  color: var(--color-white);
  scroll-behavior: smooth;
}

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

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

/* ===== LAYOUT GLOBAL ===== */

.page--dark {
  background: radial-gradient(circle at top, #000000 0%, #000000 60%);
  color: var(--color-white);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 5rem;
}

/* ===== BOTÕES ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2.4rem;
  text-transform: uppercase;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-normal),
    background-color var(--transition-normal),
    color var(--transition-normal);
}

.btn--primary {
  background: linear-gradient(
    90deg,
    var(--color-brand-primary),
    #ffe784
  );
  color: #000;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

/* ===== NAVBAR ===== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg, #000000cc, #000000f2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

/* LOGO / BRAND NA NAVBAR */
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo {
  height: 40px;
  width: auto;
  display: block;
}

/* Texto "ANDREY RIBEIRO" com degradê amarelo */
.navbar__brand-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.01rem;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    var(--color-brand-primary),
    #ffe784
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

/* menu desktop */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__nav {
  display: flex;
  gap: 1.5rem;
}

.navbar__link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-brand-primary),
    #ffe784
  );
  transition: width var(--transition-fast);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: 100%;
}

/* Botão hamburguer (escondido no desktop) */
.navbar__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 0.22rem;
}

.navbar__toggle-line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #f9fafb;
}

/* ===== HERO ===== */

.hero {
  padding-top: 2.25rem;
  padding-bottom: 3rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.05fr); /* ✅ mais espaço pra imagem */
  gap: 2.5rem;
  align-items: center;
}

/* badge superior */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5e7eb;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-brand-primary);
  box-shadow: 0 0 10px rgba(255, 214, 10, 0.9);
}

/* título principal */
.hero__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero__highlight {
  background: linear-gradient(
    90deg,
    var(--color-brand-primary),
    #ffe784
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(255, 214, 10, 0.35);
}

/* subtítulo */
.hero__subtitle {
  color: var(--color-gray-300);
  max-width: 32rem;
  font-size: 0.98rem;
}

/* ações */
.hero__actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* métricas */
.hero__metrics {
  margin-top: 1.75rem;
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.metric {
  min-width: 90px;
  position: relative;
  z-index: 0;
  transition: transform var(--transition-fast);
}

.metric::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 214, 10, 0.3),
    transparent 65%
  );
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity var(--transition-normal),
    transform var(--transition-normal);
  z-index: -1;
}

.metric:hover::before {
  opacity: 1;
  transform: scale(1);
}

.metric:hover .metric__value {
  color: var(--color-brand-primary);
}

.metric__value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-white);
}

.metric__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* garantia */
.hero__guarantee {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CHIPS */

.hero__chips {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1.05rem;
  border-radius: 999px;
  background: #050812;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--transition-normal),
    background-color var(--transition-normal),
    border-color var(--transition-normal),
    transform var(--transition-fast);
}

.hero-chip::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 15% 30%, rgba(255, 214, 10, 0), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.hero-chip:hover {
  box-shadow: 0 0 20px rgba(255, 214, 10, 0.45);
  border-color: rgba(255, 214, 10, 0.4);
  transform: translateY(-1px);
}

.hero-chip:hover::before {
  opacity: 1;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(255, 214, 10, 0.28),
    transparent 65%
  );
}

/* bolinha dourada + ícone preto */
.hero-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    #ffe784,
    var(--color-brand-primary)
  );
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(255, 214, 10, 0.25);
  color: #000000;
  font-size: 0.9rem;
}

.hero-chip__icon i {
  display: block;
  line-height: 1;
}

.hero-chip__text {
  white-space: nowrap;
}

/* ===== COLUNA DIREITA – IMAGEM + CARDS ===== */

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGEM DO ANDREY – espaço limpo */
.hero__image-wrapper {
  width: min(800px, 100%); /* ✅ 150px maior, mas sem quebrar em telas menores */
  height: 650px;          /* ✅ mantém altura fixa no desktop */
  margin: 0 auto;
  background-image: url("../img/andrey-topo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* cards flutuantes */

.hero-floating {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(5, 8, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: #fff;
  z-index: 3;
  animation: heroFloat 6s ease-in-out infinite alternate;
}

.hero-floating__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    #ffe784,
    var(--color-brand-primary)
  );
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.5),
    0 0 12px rgba(255, 214, 10, 0.3);
  color: #000000;
  font-size: 0.9rem;
}

.hero-floating__icon i {
  display: block;
  line-height: 1;
}

.hero-floating__content {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-floating__value {
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-floating__label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

/* posições dos cards */
.hero-floating--top {
  top: 8%;
  right: 2%;
}

.hero-floating--right {
  top: 45%;
  right: -6%;
}

.hero-floating--left {
  bottom: 6%;
  left: -4%;
}

/* animação suave */
@keyframes heroFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(3px, -6px, 0);
  }
  100% {
    transform: translate3d(-3px, 4px, 0);
  }
}

/* ===== FAIXAS DIAGONAIS (MARQUEE EM X MODERNO) ===== */

.marquee {
  position: relative;
  margin-top: -6rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

/* faixas centralizadas geometricamente no centro da section */
.marquee__band {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 40px;
  display: flex;
  align-items: center;
  transform-origin: center center;
}

/* FAIXA PRETA */
.marquee__band--dark {
  transform: translate(-50%, -50%) rotate(-2deg);
  background: var(--color-brand-dark);
  border-top: 1px solid rgba(255, 214, 10, 0.18);
  border-bottom: 1px solid rgba(255, 214, 10, 0.18);
  z-index: 1;
}

/* FAIXA AMARELA */
.marquee__band--yellow {
  transform: translate(-50%, -50%) rotate(2deg);
  background: var(--color-brand-primary);
  box-shadow: 0 0 30px rgba(255, 214, 10, 0.4);
  z-index: 2;
}

/* CONTEÚDO INTERNO – loop infinito com conteúdo duplicado */
.marquee__inner {
  display: flex;
  width: max-content;
}

/* blocos duplicados A e B */
.marquee__content {
  display: flex;
  flex-shrink: 0;
}

/* animações contínuas, começando do meio pra evitar “buraco” */
.marquee__band--dark .marquee__inner {
  animation: marquee-left 25s linear infinite;
  animation-delay: -20.5s;
}

.marquee__band--yellow .marquee__inner {
  animation: marquee-right 25s linear infinite;
  animation-delay: -20.5s;
}

/* itens de texto */
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-inline: 2rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* remove “buraco” no início e no fim da sequência duplicada */
.marquee__content:first-child .marquee__item:first-child {
  padding-left: 0;
}

.marquee__content:last-child .marquee__item:last-child {
  padding-right: 0;
}

.marquee__band--dark .marquee__item {
  color: rgba(255, 255, 255, 0.96);
}
.marquee__band--yellow .marquee__item {
  color: #111111;
}

/* ícones */
.marquee__icon {
  font-size: 1.05rem;
}
.marquee__icon--light {
  color: var(--color-brand-primary);
}
.marquee__icon--dark {
  color: #000000;
}

/* keyframes do marquee */
@keyframes marquee-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* ===== FOOTER ===== */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 1.5rem;
  background: #ffd500;
}

.footer__inner {
  text-align: center;
  font-size: 0.95rem;
  color: #000000;
  font-weight: 500;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    #ffe784,
    var(--color-brand-primary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 60;
  animation: whatsappPulse 1.8s ease-out infinite;
  box-shadow:
    0 0 0 0 rgba(255, 214, 10, 0.8),
    0 0 25px rgba(255, 214, 10, 0.5);
}

.whatsapp-icon {
  font-size: 26px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 214, 10, 0.7),
      0 0 25px rgba(255, 214, 10, 0.5);
  }
  60% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 22px rgba(255, 214, 10, 0),
      0 0 35px rgba(255, 214, 10, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 214, 10, 0),
      0 0 25px rgba(255, 214, 10, 0.5);
  }
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 214, 10, 0.9);
}

/* ===== RESPONSIVO ===== */

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  /* ORDEM NO MOBILE:
     1) TEXTO (hero__content)
     2) IMAGEM (hero__visual)
   */
  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
  }

  .hero__image-wrapper {
    max-width: 280px;
    margin-inline: auto;
  }

  .hero__metrics {
    gap: 1.25rem;
  }

  .hero-floating--top {
    top: 6%;
    right: 4%;
  }
  .hero-floating--right {
    top: 55%;
    right: -4%;
  }
  .hero-floating--left {
    bottom: 4%;
    left: -2%;
  }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .navbar__inner {
    height: 64px;
  }

  .navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.75rem 1.5rem 1.25rem;
    background: rgba(4, 7, 19, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    display: none;
    z-index: 55;
  }

  .navbar__nav {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .navbar__link {
    font-size: 0.95rem;
  }

  .navbar__cta {
    width: 100%;
    justify-content: center;
    padding-block: 0.8rem;
  }

  .navbar__toggle {
    display: inline-flex;
  }

  /* quando aberto */
  .navbar.navbar--open .navbar__menu {
    display: flex;
  }

  .marquee {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .marquee__band {
    width: 180%;
    height: 50px;
  }

  .marquee__band--dark {
    transform: translate(-50%, -50%) rotate(-1.6deg);
  }

  .marquee__band--yellow {
    transform: translate(-50%, -50%) rotate(1.6deg);
  }

  .marquee__item {
    padding-inline: 1.6rem;
    font-size: 0.75rem;
  }

  .navbar__brand-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  .hero__metrics {
    flex-direction: column;
  }

  .hero__chips {
    gap: 0.5rem;
  }

  .hero-chip {
    padding-inline: 0.9rem;
  }

  .hero-floating {
    transform: scale(0.9);
  }

  /* opcional: diminuir ainda mais o texto do brand ou esconder */
  .navbar__brand-text {
    display: none; /* se quiser deixar só a logo no mobile bem pequeno */
  }
}

/* ===== RESPONSIVO IMAGEM HERO ===== */

@media (max-width: 1024px) {
  .hero__image-wrapper {
    width: min(800px, 100%);  /* ✅ não volta pra 100% sempre */
    height: auto;
    aspect-ratio: 800 / 650;
  }
}

@media (max-width: 600px) {
  .hero__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 800 / 650; /* ✅ mantém proporção da imagem maior */
  }
}
/* =======================================================
   SCROLLBAR PREMIUM ULTRA – GLASS + GLOW DOURADO
======================================================= */

/* Chrome, Edge e Safari */
::-webkit-scrollbar {
  width: 8px;
}

/* Fundo da barra (efeito vidro escuro) */
::-webkit-scrollbar-track {
  background: rgba(15, 14, 9, 0.85);
  backdrop-filter: blur(6px);
}

/* Parte que desliza */
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #fff3a3 0%,
    #ffd60a 40%,
    #e6b800 100%
  );
  border-radius: 999px;
  border: 2px solid rgba(15, 14, 9, 0.9);

  /* Glow externo + brilho interno */
  box-shadow:
    0 0 8px rgba(255, 214, 10, 0.5),
    0 0 18px rgba(255, 214, 10, 0.35),
    inset 0 0 6px rgba(255, 255, 255, 0.4);

  transition: all 0.3s ease;
}

/* Hover mais intenso */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffe784 30%,
    #ffd60a 70%
  );

  box-shadow:
    0 0 12px rgba(255, 214, 10, 0.8),
    0 0 28px rgba(255, 214, 10, 0.6),
    inset 0 0 8px rgba(255, 255, 255, 0.6);

  transform: scale(1.05);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #ffd60a rgba(15, 14, 9, 0.85);
}




/* =======================================================
   SEÇÃO: "Como essa Landing Page vai aumentar seu faturamento?"
======================================================= */

.revenue {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 6vw, 6.5rem);
  background: radial-gradient(circle at top, #0b0b0b 0%, #000 60%);
}

.revenue__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.revenue__glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  filter: blur(140px);
  opacity: 0.9;
  transform: translate3d(0,0,0);
}

.revenue__glow--left {
  top: 10%;
  left: -10%;
  background: rgba(255, 214, 10, 0.12);
}

.revenue__glow--right {
  bottom: -10%;
  right: -10%;
  background: rgba(255, 214, 10, 0.10);
}

.revenue__grid {
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.06;
  mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,1), rgba(0,0,0,0));
}

.revenue__inner {
  position: relative;
  z-index: 1;
}

.revenue__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

/* Pill */
.revenue__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0.35rem 0.45rem;
  box-shadow: 0 0 18px rgba(255, 214, 10, 0.08);
  width: fit-content;
}

.revenue__pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  background: linear-gradient(90deg, #ffe784, #ffd60a);
  color: #050505;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.revenue__pill-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 600;
  padding-inline: 0.6rem;
  white-space: nowrap;
}

/* Title */
.revenue__title {
  margin-top: 1.2rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.revenue__title-highlight {
  color: transparent;
  background: linear-gradient(90deg, #ffd60a, #ffe784);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(255, 214, 10, 0.35));
}

/* Bullets */
.revenue__bullets {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.revenue__bullet {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.revenue__bullet-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #ffd60a, #ffe784);
  box-shadow: 0 0 14px rgba(255, 214, 10, 0.55);
  transition: width 280ms ease;
}

.revenue__bullet p {
  padding-left: 0.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
}

.revenue__bullet:hover {
  transform: translateX(8px);
  border-color: rgba(255, 214, 10, 0.35);
  box-shadow: 0 0 28px rgba(255, 214, 10, 0.14);
}

.revenue__bullet:hover .revenue__bullet-bar {
  width: 9px;
}

/* Cards (direita) */
.revenue__col--cards {
  position: relative;
}

.revenue__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.revenue-card {
  position: relative;
  border-radius: 22px;
  padding: 1.25rem 1.25rem 1.2rem;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.revenue-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 214, 10, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.revenue-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 214, 10, 0.35);
  box-shadow: 0 0 34px rgba(255, 214, 10, 0.18);
}

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

.revenue-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #ffd60a;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.55), 0 0 18px rgba(255, 214, 10, 0.25);
  margin-bottom: 0.9rem;
}

.revenue-card__icon i {
  color: #0f0e09;
  font-size: 20px;
  line-height: 1;
  display: block;
}

.revenue-card__title {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  transition: color 280ms ease;
}

.revenue-card__desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.5;
}

.revenue-card:hover .revenue-card__title {
  color: #ffd60a;
}

/* spark decor */
.revenue__spark {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,214,10,0.12), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,214,10,0.10), transparent 40%);
  filter: blur(6px);
  opacity: 0.9;
  z-index: -1;
}

/* Reveal (entrada suave) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* Responsivo */
@media (max-width: 980px) {
  .revenue__wrap {
    grid-template-columns: 1fr;
  }

  .revenue__cards {
    grid-template-columns: 1fr;
  }

  .revenue__col--cards {
    margin-top: 0.5rem;
  }
}

@media (max-width: 520px) {
  .revenue__bullet p {
    font-size: 0.95rem;
  }

  .revenue-card {
    padding: 1.1rem;
  }

  .revenue-card__icon {
    width: 44px;
    height: 44px;
  }
}




/* =====================================================
   SEÇÃO MOTIVOS PARA TER UMA LANDING PAGE PROFISSIONAL
===================================================== */

.reasons{
  position:relative;
  padding:6rem 0;
  text-align:center;
  overflow:hidden;
}

.reasons__header{
  max-width:720px;
  margin:auto;
}

.reasons__title{
  font-size:clamp(2rem,3vw,2.8rem);
  font-weight:800;
  line-height:1.2;
}

.reasons__highlight{
  background:linear-gradient(90deg,#ffd60a,#ffe784);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.reasons__subtitle{
  margin-top:1rem;
  color:rgba(255,255,255,0.65);
  font-size:1rem;
}

.reasons__grid{
  margin-top:3rem;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}

/* CARD */

.reason-card{

  padding:1.6rem;

  border-radius:22px;

  background:rgba(10,10,10,0.75);

  border:1px solid rgba(255,255,255,0.06);

  backdrop-filter:blur(12px);

  transition:all .35s ease;

  text-align:left;
}

.reason-card:hover{

  transform:translateY(-6px);

  border-color:rgba(255,214,10,0.35);

  box-shadow:0 0 40px rgba(255,214,10,0.18);
}

/* ÍCONE */

.reason-card__icon{

  width:50px;
  height:50px;

  border-radius:16px;

  background:#ffd60a;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:1rem;

  box-shadow:0 0 0 3px rgba(0,0,0,0.5),
  0 0 16px rgba(255,214,10,0.3);
}

.reason-card__icon i{
  color:#0f0e09;
  font-size:22px;
}

/* TEXTO */

.reason-card h3{

  font-size:1.1rem;
  font-weight:800;
  margin-bottom:.4rem;
}

.reason-card p{

  font-size:.95rem;

  color:rgba(255,255,255,0.65);

  line-height:1.5;
}

/* RESPONSIVO */

@media(max-width:980px){

.reasons__grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:640px){

.reasons__grid{
grid-template-columns:1fr;
}

.reason-card{
text-align:center;
}

.reason-card__icon{
margin:auto;
margin-bottom:1rem;
}

}





/* =========================================
PORTFÓLIO CARROSSEL
========================================= */

.portfolio {
  padding: 9rem 0;
  overflow: hidden;
}

.portfolio__header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
}

.portfolio__highlight {
  color: #ffd60a;
}

.portfolio__subtitle {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
}

/* viewport */
.portfolio__viewport {
  width: 100%;
  overflow: hidden;
}

/* track */
.portfolio__track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: portfolioScroll 28s linear infinite;
}

.portfolio__viewport:hover .portfolio__track {
  animation-play-state: paused;
}

/* ============================
CARD PORTFÓLIO PREMIUM
============================ */

.portfolio-card {
  width: 280px;
  height: 450px;
  border-radius: 18px;
  position: relative;
  flex: 0 0 auto;
  background: #0f0e09;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.35s ease;
  overflow: visible;
}

/* GLOW EXTERNO SUAVE */
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 32px;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 214, 10, 0.25),
    transparent 70%
  );
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -2;
  pointer-events: none;
}

/* GLOW EXTERNO MAIS FORTE */
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 24px;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 214, 10, 0.35),
    transparent 95%
  );
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
  pointer-events: none;
}

/* HOVER DO CARD */
.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-card:hover::after {
  opacity: 1;
}

.portfolio-card:hover {
  border: 2px solid rgba(255, 214, 10, 0.75);
}

/* MEDIA */
.portfolio-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 18px;
}

/* IMAGEM */
.portfolio-card__media img {
  width: 100%;
  min-height: 120%;
  object-fit: cover;
  transform: translateY(0);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.15, 1);
}

/* EFEITO DE SUBIDA */
.portfolio-card:hover img {
  transform: translateY(-22%);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .portfolio-card {
    width: 240px;
    height: 400px;
  }
}

@media (max-width: 520px) {
  .portfolio-card {
    width: 200px;
    height: 340px;
  }
}

/* ANIMAÇÃO DO CARROSSEL */
@keyframes portfolioScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CTA */
.portfolio-cta {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-transform: uppercase;
}

.portfolio-cta__text {
  font-size: 1.2rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
}

.portfolio-cta__text span {
  background: linear-gradient(90deg, #ffd60a, #ffe784);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}




/* =======================================================
   SEÇÃO: O CUSTO DA INÉRCIA VS O PODER DA CONVERSÃO
======================================================= */

.compare {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.8rem, 6vw, 6.8rem);
  background: radial-gradient(circle at top, #0b0b0b 0%, #000 70%);
}

/* BG + grid sutil */
.compare__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.compare__glow {
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 999px;
  filter: blur(150px);
  opacity: 0.9;
}

.compare__glow--top {
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 214, 10, 0.14);
}

.compare__glow--mid {
  bottom: -35%;
  left: 10%;
  background: rgba(255, 214, 10, 0.10);
}

.compare__grid {
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.05;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1), rgba(0,0,0,0));
}

.compare__inner {
  position: relative;
  z-index: 1;
}

/* Header centralizado */
.compare__header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.compare__title {
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;

}

.compare__title-red {
  color: transparent;
  background: linear-gradient(90deg, #ff2b2b, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(255, 43, 43, 0.28));
}

.compare__title-yellow {
  color: transparent;
  background: linear-gradient(90deg, #ffd60a, #ffe784);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(255, 214, 10, 0.35));
}

/* Wrap centralizado (igual referência) */
.compare__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
  max-width: 980px;
  margin-inline: auto;
}

/* Painéis */
.compare__panel {
  border-radius: 18px;
  padding: 2.1rem 2rem;
  background: rgba(12, 12, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

/* esquerda com borda vermelha sutil */
.compare__panel--left {
  border-color: rgba(255, 43, 43, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 43, 43, 0.10), 0 0 30px rgba(0,0,0,0.55);
}

/* direita com brilho por trás + borda amarela sutil */
.compare__panel--right {
  border-color: rgba(255, 214, 10, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 214, 10, 0.10), 0 0 40px rgba(0,0,0,0.55);
}

/* spotlight atrás do painel direito */
.compare__spotlight {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 214, 10, 0.22), transparent 62%),
    radial-gradient(circle at 30% 80%, rgba(255, 214, 10, 0.12), transparent 55%);
  filter: blur(18px);
  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
}

/* títulos das colunas */
.compare__panel-title {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #fff;
}

.compare__panel-title-red {
  color: transparent;
  background: linear-gradient(90deg, #ff2b2b, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(255, 43, 43, 0.28));
}

.compare__panel-title-yellow {
  color: transparent;
  background: linear-gradient(90deg, #ffd60a, #ffe784);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255, 214, 10, 0.34));
}

/* lista */
.compare__list {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

/* divisor (linha no meio da esquerda) */
.compare__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0.2rem 0;
}

.compare__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.85rem;
  align-items: start;
}

/* ícones “cintilantes” */
.compare__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  margin-top: 2px;
  position: relative;
  isolation: isolate;
}

/* vermelho cintilante */
.compare__icon--bad {
  color: #0b0b0b;
  background: radial-gradient(circle at 30% 30%, #ff9a9a, #ff2b2b);
  box-shadow:
    0 0 10px rgba(255, 43, 43, 0.45),
    0 0 22px rgba(255, 43, 43, 0.25),
    inset 0 0 8px rgba(255,255,255,0.30);
}

/* verde cintilante */
.compare__icon--good {
  color: #06210f;
  background: radial-gradient(circle at 30% 30%, #7dffb3, #00d26a);
  box-shadow:
    0 0 10px rgba(0, 210, 106, 0.50),
    0 0 24px rgba(0, 210, 106, 0.25),
    inset 0 0 8px rgba(255,255,255,0.30);
}

/* leve “shimmer” animado no ícone */
.compare__icon::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.40) 50%, transparent 65%);
  transform: translateX(-60%) rotate(10deg);
  opacity: 0.0;
  z-index: -1;
  filter: blur(2px);
  animation: compareShine 2.8s ease-in-out infinite;
}

@keyframes compareShine {
  0% { opacity: 0; transform: translateX(-70%) rotate(10deg); }
  35% { opacity: 0.45; }
  55% { opacity: 0.10; }
  100% { opacity: 0; transform: translateX(70%) rotate(10deg); }
}

/* texto */
.compare__text {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 300;
}

/* Responsivo */
@media (max-width: 980px) {
  .compare__wrap {
    grid-template-columns: 1fr;
  }

  .compare__panel {
    padding: 1.8rem 1.5rem;
  }

  .compare__title {
    line-height: 1.1;
  }
}

@media (max-width: 520px) {
  .compare__text {
    font-size: 0.95rem;
  }
}



<script>
  (function () {
    const scroller = document.querySelector("[data-tscroller]");
    const track = document.querySelector("[data-ttrack]");
    const btnPrev = document.querySelector("[data-tprev]");
    const btnNext = document.querySelector("[data-tnext]");

    if (!scroller || !track) return;

    // Duplica o conteúdo do track para loop infinito perfeito
    const originalHTML = track.innerHTML;
    track.innerHTML = originalHTML + originalHTML;

    let isPaused = false;
    let rafId = null;

    // velocidade (px por frame) — ajuste fino aqui
    const speed = 0.55;

    // Função de animação
    function tick() {
      if (!isPaused) {
        scroller.scrollLeft += speed;

        // quando passar da metade, volta sem perceber
        const half = track.scrollWidth / 2;
        if (scroller.scrollLeft >= half) {
          scroller.scrollLeft -= half;
        }
      }
      rafId = requestAnimationFrame(tick);
    }

    // inicia em um ponto “bom” (evita espaço vazio no começo)
    function startAtMiddle() {
      const half = track.scrollWidth / 2;
      scroller.scrollLeft = half / 2;
    }

    // pausa ao hover/foco
    scroller.addEventListener("mouseenter", () => (isPaused = true));
    scroller.addEventListener("mouseleave", () => (isPaused = false));
    scroller.addEventListener("focusin", () => (isPaused = true));
    scroller.addEventListener("focusout", () => (isPaused = false));

    // setas
    const step = 360; // quanto “anda” por clique (aprox 1 card)

    function nudge(dir) {
      isPaused = true;
      scroller.scrollBy({ left: dir * step, behavior: "smooth" });

      // retoma depois de um tempo
      window.setTimeout(() => (isPaused = false), 900);
    }

    if (btnPrev) btnPrev.addEventListener("click", () => nudge(-1));
    if (btnNext) btnNext.addEventListener("click", () => nudge(1));

    // start
    startAtMiddle();
    tick();

    // segurança: recalcula quando redimensionar
    window.addEventListener("resize", () => {
      startAtMiddle();
    });

    // cleanup opcional
    window.addEventListener("beforeunload", () => {
      if (rafId) cancelAnimationFrame(rafId);
    });
  })();
</script>





/* =======================================================
   DEPOIMENTOS — CARROSSEL PREMIUM (INFINITO)
======================================================= */

.testimonials {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.8rem, 6vw, 6.8rem);
}

/* header */
.testimonials__header {
  margin-bottom: 2rem;
}

.testimonials__eyebrow {
  color: var(--color-brand-primary, #ffd60a);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.testimonials__headrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonials__title {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.testimonials__highlight {
  color: var(--color-brand-primary, #ffd60a);
  text-shadow: 0 0 18px rgba(255, 214, 10, 0.22);
}

/* botões setas */
.testimonials__controls {
  display: flex;
  gap: 0.6rem;
}

.tbtn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 10, 10, 0.55);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: transform 180ms ease, box-shadow 260ms ease, border-color 260ms ease;
  backdrop-filter: blur(10px);
}

.tbtn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 214, 10, 0.35);
  box-shadow: 0 0 22px rgba(255, 214, 10, 0.18);
}

/* viewport 100% */
.testimonials__viewport {
  width: 100%;
  overflow: visible;
  position: relative;
  padding: 30px 0;
}

/* fade lateral premium */
.testimonials__viewport::before,
.testimonials__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}

.testimonials__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0,0,0,1), rgba(0,0,0,0));
}
.testimonials__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0,0,0,1), rgba(0,0,0,0));
}

/* scroller */
.testimonials__scroller {
  overflow: hidden;
  outline: none;
}

/* track */
.testimonials__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-inline: 2rem;
  will-change: transform;
}

/* card */
.tcard {
  width: 320px;
  min-height: 300px;
  border-radius: 18px;
  padding: 1.4rem 1.35rem 1.35rem;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  position: relative;
  flex: 0 0 auto;
  transition: transform 220ms ease, border-color 260ms ease, box-shadow 320ms ease;
  overflow: hidden;
}

/* glow atrás (premium) */
.tcard::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at 25% 25%, rgba(255, 214, 10, 0.22), transparent 60%);
  filter: blur(16px);
  opacity: 0;
  transition: opacity 280ms ease;
  z-index: 0;
  pointer-events: none;
}

.tcard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 214, 10, 0.0);
  transition: border-color 260ms ease;
  pointer-events: none;
  z-index: 1;
}

.tcard:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 214, 10, 0.25);
  box-shadow: 0 0 40px rgba(255, 214, 10, 0.14);
}

.tcard:hover::before {
  opacity: 1;
}

.tcard:hover::after {
  border-color: rgba(255, 214, 10, 0.45);
}

/* topo */
.tcard__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}

.tcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 214, 10, 0.35);
  box-shadow: 0 0 18px rgba(255, 214, 10, 0.18);
}

.tcard__who {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.tcard__name {
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
}

.tcard__role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.15rem;
}

/* estrelas */
.tcard__stars {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.9rem;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 2;
}

.tcard__stars span {
  color: var(--color-brand-primary, #ffd60a);
  text-shadow: 0 0 10px rgba(255, 214, 10, 0.35);
  font-size: 0.95rem;
}

/* texto */
.tcard__text {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* Responsivo */
@media (max-width: 900px) {
  .testimonials__headrow {
    align-items: flex-start;
  }

  .tcard {
    width: 290px;
  }

  .testimonials__viewport::before,
  .testimonials__viewport::after {
    width: 60px;
  }
}

@media (max-width: 520px) {
  .testimonials__controls {
    display: none; /* opcional: some com setas no mobile */
  }

  .tcard {
    width: 260px;
  }
}




/* responsivo */

@media(max-width:900px){

.portfolio-card{
width:240px;
height:400px;
}

}

@media(max-width:520px){

.portfolio-card{
width:200px;
height:340px;
}

}

/* Animação marquee:
   como duplicamos 10 itens em sequência, movemos -50% do track */
@keyframes portfolio-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsivo */
@media (max-width: 900px) {
  .portfolio-card {
    width: 240px;
    height: 400px;
  }
  .portfolio__track {
    gap: 18px;
    animation-duration: 30s; /* um pouco mais lento no mobile */
  }
  .portfolio__viewport::before,
  .portfolio__viewport::after {
    width: 60px;
  }
}

@media (max-width: 520px) {
  .portfolio-card {
    width: 210px;
    height: 360px;
  }
  .portfolio__track {
    gap: 14px;
    animation-duration: 34s;
  }
}






/* =======================================================
   CLIENTES ATENDIDOS — LOGOS (2 LINHAS) FUNDO AMARELO
======================================================= */
.clients{

  /* VARIÁVEIS DE TAMANHO DAS LOGOS */
  --logo-width:150px;
  --logo-height:100px;

  background:#ffd60a;
  padding-block:4.5rem;

}

.clients__inner{
  text-align:center;
}

.clients__title{

  font-size:clamp(2rem,3.4vw,3.2rem);
  line-height:1.15;
  font-weight:900;
  letter-spacing:.01em;

  color:#0f0e09;

  margin-bottom:2.2rem;

}

/* GRID DE LOGOS */

.clients__grid{

  display:flex;
  flex-direction:column;
  gap:1.6rem;
}

.clients__row{

  display:flex;
  align-items:center;
  justify-content:center;

  flex-wrap:wrap;

  gap:2rem;

}


/* LOGO */

.clients__logo{

  width:var(--logo-width);
  height:var(--logo-height);

  object-fit:contain;

  transition:
    transform 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;

}


/* HOVER */

.clients__logo:hover{

  animation:clientsPulse 520ms ease-in-out both;

}


/* ANIMAÇÃO */

@keyframes clientsPulse{

  0%   { transform:scale(1); }

  40%  { transform:scale(1.06); }

  70%  { transform:scale(.98); }

  100% { transform:scale(1.02); }

}



/* =========================================
RESPONSIVO
========================================= */


/* TABLET */

@media (max-width:900px){

  .clients{

    --logo-width:130px;
    --logo-height:85px;

    padding-block:3.8rem;

  }

  .clients__row{
    gap:1.6rem;
  }

}


/* MOBILE */

@media (max-width:600px){

  .clients{

    --logo-width:110px;
    --logo-height:70px;

  }

}


/* MOBILE PEQUENO */

@media (max-width:420px){

  .clients{

    --logo-width:95px;
    --logo-height:60px;

  }

}


/* =======================================================
   SEÇÃO: DECISÃO É SIMPLES (AJUSTADA FINAL)
======================================================= */

.decision{
  position:relative;
  overflow:hidden;

  /* pedido: 100px em cima e em baixo (px) */
  padding-top:100px;
  padding-bottom:100px;

  background: radial-gradient(circle at top, #0b0b0b 0%, #000 70%);

  /* ✅ CONTROLE DA IMAGEM EM % (0 a 100) 
     Dica: 70% ~ tamanho anterior / ajuste como quiser */
  --decision-photo-size: 50%;
}

/* glows de fundo (premium) */
.decision::before,
.decision::after{
  content:"";
  position:absolute;
  width:720px;
  height:720px;
  border-radius:999px;
  filter:blur(140px);
  opacity:.8;
  pointer-events:none;
}

.decision::before{
  top:-40%;
  left:50%;
  transform:translateX(-50%);
  background:rgba(255,214,10,.12);
}

.decision::after{
  bottom:-45%;
  left:-15%;
  background:rgba(255,214,10,.10);
}

.decision__inner{
  position:relative;
  z-index:1;
  text-align:center;
}

/* título */
.decision__title{
  font-size:clamp(2rem,3.4vw,3.2rem);
  line-height:1.15;
  font-weight:800;
  color:rgba(255,255,255,.90);
  margin-bottom:34px;
}

/* "e a sua decisão," verde cintilante */
.decision__green{
  color: transparent;
  background: radial-gradient(circle at 30% 30%, #7dffb3, #00d26a);
  -webkit-background-clip:text;
  background-clip:text;
  filter: drop-shadow(0 0 14px rgba(0, 210, 106, 0.35));
}

/* "hoje é muuto simples:" amarelo em degradê */
.decision__yellow{
  font-style:italic;
  font-weight:900;
  color: transparent;
  background: linear-gradient(90deg, #ffd60a, #ffe784);
  -webkit-background-clip:text;
  background-clip:text;
  filter: drop-shadow(0 0 16px rgba(255,214,10,.25));
}

/* palco central */
.decision__stage{
  position:relative;
  width:min(980px,100%);
  margin-inline:auto;
  display:grid;
  place-items:center;
}

/* ✅ foto com tamanho controlado por % */
.decision__photo{
  width: var(--decision-photo-size);
  max-width: 720px;   /* segurança p/ não ficar gigante no desktop */
  min-width: 260px;   /* segurança p/ não ficar minúsculo */
  height:auto;
  display:flex;
  justify-content:center;
  align-items:center;
}

.decision__photo img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:0;   /* sem borda */
  box-shadow:none;   /* sem efeito */
}

/* balões menores e delicados */
.decision__balloon{
  position:absolute;

  /* ✅ nunca ultrapassa tela e sempre fica bonito */
  width: clamp(220px, 30vw, 320px);
  max-width: calc(100% - 24px);

  border-radius:14px;
  padding:14px 14px;

  background:rgba(10,10,10,.62);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(14px);

  text-align:left;
  z-index:5;
  overflow:hidden;

  transition: transform 220ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

/* brilho premium no hover */
.decision__balloon::before{
  content:"";
  position:absolute;
  inset:-45%;
  background: radial-gradient(circle at 20% 25%, rgba(255,214,10,.20), transparent 62%);
  filter:blur(16px);
  opacity:0;
  transition:opacity 260ms ease;
  pointer-events:none;
}

.decision__balloon:hover{
  border-color:rgba(255,214,10,.30);
  box-shadow: 0 0 38px rgba(255,214,10,.12), 0 0 24px rgba(0,0,0,.55);
  transform: translateY(-2px);
}

.decision__balloon:hover::before{
  opacity:1;
}

/* ícone amarelo + fundo discreto */
.decision__bicon{
  width:38px;
  height:38px;
  border-radius:12px;
  display:inline-grid;
  place-items:center;

  color:#ffd60a;
  background: rgba(255,214,10,.14);

  box-shadow: 0 0 0 2px rgba(0,0,0,.55), 0 0 16px rgba(255,214,10,.16);
  margin-bottom:10px;
}

/* texto do balão (Sora 300) */
.decision__balloon-text{
  color:rgba(255,255,255,.88);
  font-weight:300;
  line-height:1.4;
  font-size:0.98rem;
}

.decision__balloon-text strong{
  color:#fff;
  font-weight:300;
}

/* posições desktop (lado a lado, em cima da imagem) */
.decision__balloon--left{
  left: 12%;
  top: 68%;
  transform: translate(-8%, -50%);
  animation: decisionFloatA 6.8s ease-in-out infinite;
}

.decision__balloon--right{
  right: 12%;
  top: 58%;
  transform: translate(8%, -50%);
  animation: decisionFloatB 7.4s ease-in-out infinite;
}

/* flutuação delicada */
@keyframes decisionFloatA{
  0%{ transform: translate(-8%, -50%) translateY(0); }
  50%{ transform: translate(-8%, -50%) translateY(-6px); }
  100%{ transform: translate(-8%, -50%) translateY(0); }
}
@keyframes decisionFloatB{
  0%{ transform: translate(8%, -50%) translateY(0); }
  50%{ transform: translate(8%, -50%) translateY(7px); }
  100%{ transform: translate(8%, -50%) translateY(0); }
}

/* CTA */
.decision__cta{
  margin-top:34px;
  display:flex;
  justify-content:center;
}

/* Botão com glow atrás (corrigido) */
.decision__btn{
  position:relative;
  isolation:isolate;
  display:inline-flex;
  align-items:center;
  gap:0.7rem;

  padding:1.05rem 2.4rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;

  box-shadow: 0 0 26px rgba(255,214,10,.22);
}

/* glow atrás do botão */
.decision__btn::before{
  content:"";
  position:absolute;
  inset:-18px;
  border-radius:999px;
  background: radial-gradient(circle at 50% 45%, rgba(255,214,10,.35), transparent 65%);
  filter: blur(18px);
  opacity:0;
  transition: opacity 260ms ease;
  z-index:-1;
  pointer-events:none;
}

.decision__btn:hover::before{
  opacity:1;
}

.decision__btn-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#0f0e09;
}


/* ✅ MOBILE/TABLET: balões menores e fora do rosto (sobre a imagem) */
@media (max-width: 980px){
  .decision{
    --decision-photo-size: 88%;
  }

  /* deixa os balões menores automaticamente */
  .decision__balloon{
    width: clamp(200px, 78vw, 320px);
    padding: 12px 12px;
    border-radius: 12px;
  }

  .decision__bicon{
    width: 34px;
    height: 34px;
    border-radius: 11px;
    margin-bottom: 8px;
  }

  .decision__balloon-text{
    font-size: 0.92rem;
  }

  /* ✅ posicionamento: DESCE o balão de cima (não fica no rosto) */
  .decision__balloon--left,
  .decision__balloon--right{
    left:50%;
    right:auto;
    transform: translate(-50%, 0);
    max-width: calc(100% - 24px);
  }

  .decision__balloon--left{
    top: 26%; /* ✅ antes estava ~10-12% (rosto). Agora fica no peito */
    animation: decisionFloatMobileA 6.8s ease-in-out infinite;
  }

  .decision__balloon--right{
    top: 78%;
    animation: decisionFloatMobileB 7.4s ease-in-out infinite;
  }
}

/* ✅ MOBILE PEQUENO: balões ainda menores */
@media (max-width: 520px){
  .decision{
    --decision-photo-size: 94%;
  }

  .decision__balloon{
    width: clamp(190px, 86vw, 290px);
    padding: 11px 11px;
    border-radius: 12px;
  }

  .decision__bicon{
    width: 32px;
    height: 32px;
  }

  .decision__balloon-text{
    font-size: 0.90rem;
    line-height: 1.35;
  }

  /* ✅ ajustes finos de posição */
  .decision__balloon--left{
    top: 52%;
  }

  .decision__balloon--right{
    top: 80%;
  }
}

/* animações mobile (mantém suave) */
@keyframes decisionFloatMobileA{
  0%{ transform: translate(-50%, 0) translateY(0); }
  50%{ transform: translate(-50%, 0) translateY(-6px); }
  100%{ transform: translate(-50%, 0) translateY(0); }
}
@keyframes decisionFloatMobileB{
  0%{ transform: translate(-50%, 0) translateY(0); }
  50%{ transform: translate(-50%, 0) translateY(6px); }
  100%{ transform: translate(-50%, 0) translateY(0); }
}






/* =======================================================
   AUTORIDADE — LAYOUT FINAL (TOPO + 2 COLUNAS + CTA)
======================================================= */

.authority{
  position:relative;
  overflow:hidden;
  padding-block: clamp(3.8rem, 5vw, 5rem);
  background: radial-gradient(circle at top, #0b0b0b 0%, #000 72%);
}

/* glow sutil de fundo */
.authority::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 70% 35%, rgba(255,214,10,0.14), transparent 55%),
    radial-gradient(circle at 35% 80%, rgba(255,214,10,0.10), transparent 55%);
  filter: blur(22px);
  opacity: .85;
  pointer-events:none;
}

.authority__inner{
  position:relative;
  z-index:1;
}

/* ===== TOPO ===== */
.authority__top{
  text-align:center;
  max-width: 860px;
  margin-inline:auto;
  margin-bottom: 2.2rem;
}

/* pill */
.authority__pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,10,10,0.55);
  color: rgba(255,255,255,0.80);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  backdrop-filter: blur(10px);
}

/* título */
.authority__title{
  margin-top: 1rem;
  font-size: clamp(2rem, 2.7vw, 2.7rem);
  font-weight: 900;
  line-height: 1.12;
  color:#fff;
}

.authority__highlight{
  color: transparent;
  background: linear-gradient(90deg, #ffd60a, #ffe784);
  -webkit-background-clip:text;
  background-clip:text;
  filter: drop-shadow(0 0 14px rgba(255,214,10,0.30));
}

/* subtítulo */
.authority__subtitle{
  margin-top: 0.95rem;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.55;
}

.authority__subtitle strong{
  color: rgba(255,255,255,0.92);
  font-weight: 800;
}

/* ===== GRID (2 COLUNAS) ===== */
.authority__grid{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: stretch;

  /* pedido: max 700px de altura */
  max-height: 700px;
}

/* ===== COLUNA IMAGEM (SEM BORDA, PREENCHE TUDO) ===== */
.authority__media{
  position:relative;
  width:100%;
  height: min(520px, 60vh);
  min-height: 420px;
  max-height: 700px;
  overflow:hidden;
  border-radius: 0; /* ✅ sem borda */
}

.authority__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* fade lateral (igual referência) */
.authority__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0.95) 92%
  );
  pointer-events:none;
}

/* ===== COLUNA DIREITA ===== */
.authority__content{
  position:relative;
  text-align:left;
  padding: 0.6rem 0;
}

/* brilho por trás do conteúdo */
.authority__content::before{
  content:"";
  position:absolute;
  inset:-18%;
  background: radial-gradient(circle at 35% 40%, rgba(255,214,10,0.18), transparent 60%);
  filter: blur(26px);
  opacity: .95;
  z-index:-1;
  pointer-events:none;
}

/* lista */
.authority__list{
  margin:0;
  display:grid;
  gap: 0.95rem;
  list-style:none;
  padding:0;
}

.authority__item{
  display:grid;
  grid-template-columns: 26px 1fr;
  gap: 0.85rem;
  align-items:flex-start;

  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);

  transition: transform 200ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.authority__item:hover{
  transform: translateY(-2px);
  border-color: rgba(255,214,10,0.22);
  box-shadow: 0 0 28px rgba(255,214,10,0.10);
}

/* estrela amarela cintilante */
.authority__star{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:grid;
  place-items:center;

  color:#0f0e09;
  background: radial-gradient(circle at 30% 30%, #ffe784, #ffd60a);

  box-shadow:
    0 0 10px rgba(255,214,10,0.45),
    0 0 22px rgba(255,214,10,0.25),
    inset 0 0 8px rgba(255,255,255,0.25);

  position:relative;
  isolation:isolate;
  font-size: 12px;
  line-height:1;
}

.authority__star::after{
  content:"";
  position:absolute;
  inset:-35%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
  transform: translateX(-60%) rotate(10deg);
  opacity:0;
  filter: blur(2px);
  animation: authorityShine 2.8s ease-in-out infinite;
}

@keyframes authorityShine{
  0%{ opacity:0; transform: translateX(-70%) rotate(10deg); }
  35%{ opacity:0.45; }
  55%{ opacity:0.12; }
  100%{ opacity:0; transform: translateX(70%) rotate(10deg); }
}

/* texto */
.authority__item span{
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.45;
  font-size: 0.98rem;
}

.authority__item strong{
  color:#fff;
  font-weight: 900;
}

/* ===== CTA ===== */
.authority__actions{
  margin-top: 2rem;
  display:flex;
  justify-content:center;
}

.authority__btn{
  position:relative;
  isolation:isolate;
  display:inline-flex;
  align-items:center;
  gap:0.65rem;
  padding: 1.05rem 2.2rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 0 26px rgba(255,214,10,0.22);
}

.authority__btn::before{
  content:"";
  position:absolute;
  inset:-18px;
  border-radius:999px;
  background: radial-gradient(circle at 50% 45%, rgba(255,214,10,0.35), transparent 65%);
  filter: blur(18px);
  opacity:0;
  transition: opacity 260ms ease;
  z-index:-1;
  pointer-events:none;
}

.authority__btn:hover::before{
  opacity:1;
}

.authority__btn-ico{ font-size: 1.05rem; }
.authority__btn-arrow{ margin-left: 0.25rem; font-weight: 900; }

/* ===== RESPONSIVO ===== */
@media (max-width: 980px){
  .authority__grid{
    grid-template-columns: 1fr;
    max-height: none;
  }

  .authority__media{
    height: 380px;
    min-height: 320px;
  }

  .authority__media::after{
    background: linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.25) 55%,
      rgba(0,0,0,0.95) 100%
    );
  }

  .authority__content{
    text-align:left;
  }
}

@media (max-width: 520px){
  .authority__media{
    height: 320px;
  }

  .authority__btn{
    width: 100%;
    justify-content:center;
  }
}





/* =======================================================
   SEÇÃO — MINHAS PÁGINAS PREMIUM NÃO SÃO PRA TODO MUNDO
   (AMARELO COM DEGRADÊ + GLOW ATRÁS + BORDAS LUMINOSAS)
======================================================= */
.not4everyone{
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.6rem, 6vw, 6.6rem);
  background: radial-gradient(circle at top, #0b0b0b 0%, #000000 70%);

  /* ===== PALETA (HEX) — TROQUE AQUI QUANDO QUISER ===== */
  --bad-bg: #d22337;            /* vermelho (bloco esquerdo) */
  --bad-text: #ffffff;          /* texto no bloco vermelho */

  --good-bg-1: #fbda33;         /* amarelo degradê (início) */
  --good-bg-2: #f8d940;         /* amarelo degradê (fim) */
  --good-text: #000000;         /* texto no bloco amarelo */

  --glow-yellow-soft: rgba(255, 214, 10, 0.22);
  --glow-yellow-strong: rgba(255, 214, 10, 0.42);

  --line-yellow: rgba(255, 214, 10, 0.85);
  --line-yellow-soft: rgba(255, 214, 10, 0.22);

  --green-1: #7dffb3;
  --green-2: #00d26a;

  --red-1: #ffb1bc;
  --red-2: #ff2d4b;
}

.not4everyone::before,
.not4everyone::after{
  content:"";
  position:absolute;
  width: 760px;
  height: 760px;
  border-radius: 999px;
  filter: blur(150px);
  opacity: .85;
  pointer-events: none;
}

.not4everyone::before{
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,214,10,.12);
}

.not4everyone::after{
  bottom: -45%;
  left: -15%;
  background: rgba(255,214,10,.10);
}

.not4everyone__inner{
  position: relative;
  z-index: 1;
}

.not4everyone__header{
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 2.2rem;
}

.not4everyone__title{
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: .01em;
  color: rgba(255,255,255,0.92);
}

.not4everyone__title-highlight{
  font-weight: 900;
  color: transparent;
  background: linear-gradient(90deg, #ffd60a, #ffe784);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(255,214,10,.28));
}

.not4everyone__subtitle{
  margin-top: 1rem;
  color: rgba(255,255,255,.66);
  font-weight: 300;
  line-height: 1.55;
  font-size: 1.02rem;
}

.not4everyone__subtitle strong{
  color: #f3cc08;
  font-weight: 800;
}

/* GRID: 2 blocos centralizados */
.not4everyone__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 5px; /* pedido: 5px exatos */
  max-width: 980px;
  margin-inline: auto;
  align-items: center;
}

/* CARD base */
.not4everyone__card{
  border-radius: 26px;
  padding: 2.2rem 2.1rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 220ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

/* LEFT (vermelho) */
.not4everyone__card--bad{
  background: var(--bad-bg);
  color: var(--bad-text);
  min-height: 520px;
  box-shadow: 0 14px 45px rgba(0,0,0,.55);
}

/* RIGHT (amarelo) — maior, com degradê + glow + bordas luminosas */
.not4everyone__card--good{
  background: linear-gradient(135deg, var(--good-bg-1) 0%, var(--good-bg-2) 100%);
  color: var(--good-text);
  min-height: 610px;
  border-color: rgba(0,0,0,0.14);

  /* sombra + halo */
  box-shadow:
    0 18px 55px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,214,10,0.22),
    0 0 60px var(--glow-yellow-soft);

  transform: translateY(0);
  isolation: isolate;
}

/* ===== GLOW FORTE ATRÁS DO BLOCO AMARELO (por fora) ===== */
.not4everyone__card--good:hover::before{
  transform: scale(1.08);
  filter: blur(22px);
  opacity: 1;
  transition: all .35s ease;

  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.40), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(255,214,10,0.60), transparent 62%),
    radial-gradient(circle at 50% 45%, rgba(255,214,10,0.55), transparent 60%);
}

/* ===== BORDA LUMINOSA (linha brilhante nas bordas) ===== */
.not4everyone__card--good::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 26px;
  z-index: -1;
  pointer-events: none;

  /* “stroke” luminoso premium */
  border: 1px solid rgba(255,214,10,0.00);
  box-shadow:
    0 0 0 1px rgba(255,214,10,0.22) inset,
    0 0 22px rgba(255,214,10,0.22),
    0 0 40px rgba(255,214,10,0.14);

  /* linha animada nas bordas */
  background:
    linear-gradient(90deg, rgba(255,255,255,0.00), rgba(255,255,255,0.18), rgba(255,255,255,0.00)) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  opacity: .95;
  animation: n4eBorderShine 3.6s ease-in-out infinite;
}

/* shimmer dentro do bloco amarelo */
.not4everyone__spark{
  position:absolute;
  inset:0;
  background: linear-gradient(115deg, transparent 80%, rgba(255,255,255,0.20) 50%, transparent 70%);
  transform: translateX(-60%);
  opacity: 0;
  animation: n4eShimmer 3.6s ease-in-out infinite;
  pointer-events:none;
  mix-blend-mode: soft-light;
  z-index: 0;
}

/* animações */
@keyframes n4eGlowBreath{
  0%{ transform: scale(1); opacity: .90; }
  50%{ transform: scale(1.02); opacity: 1; }
  100%{ transform: scale(1); opacity: .90; }
}

@keyframes n4eBorderShine{
  0%{ opacity: .85; filter: brightness(1); }
  50%{ opacity: 1; filter: brightness(1.1); }
  100%{ opacity: .85; filter: brightness(1); }
}

@keyframes n4eShimmer{
  0%{ transform: translateX(-70%); opacity: 0; }
  30%{ opacity: .22; }
  60%{ opacity: .12; }
  100%{ transform: translateX(70%); opacity: 0; }
}

/* hover premium */
.not4everyone__card:hover{
  transform: translateY(-4px);
}

.not4everyone__card--bad:hover{
  box-shadow: 0 18px 60px rgba(0,0,0,.58);
}

.not4everyone__card--good:hover{
  transform: translateY(-6px) scale(1.01);

  box-shadow:
    0 28px 80px rgba(0,0,0,.60),
    0 0 0 1px rgba(255,214,10,0.35),
    0 0 120px rgba(255,214,10,.55),
    0 0 180px rgba(255,214,10,.35),
    inset 0 0 35px rgba(255,255,255,0.18);

  transition: all .35s ease;
}

/* títulos internos */
.not4everyone__card-title{
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

/* listas */
.not4everyone__list{
  list-style: none;
  display: grid;
  gap: 1.05rem;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.not4everyone__item{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.not4everyone__text{
  font-weight: 400;
  line-height: 1.45;
  font-size: 1.02rem;
}

/* ÍCONES premium (cintilantes) */
.not4everyone__icon{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  margin-top: 2px;
  position: relative;
  isolation: isolate;
}

/* vermelho cintilante */
.not4everyone__icon--bad{
  color: #000000;
  background: radial-gradient(circle at 30% 30%, var(--red-1), var(--red-2));
  box-shadow:
    0 0 10px rgba(255, 45, 75, 0.65),
    0 0 26px rgba(255, 45, 75, 0.28),
    inset 0 0 8px rgba(255,255,255,0.35);
}

/* verde cintilante */
.not4everyone__icon--good{
  color: #06210f;
  background: radial-gradient(circle at 30% 30%, var(--green-1), var(--green-2));
  box-shadow:
    0 0 10px rgba(0, 210, 106, 0.60),
    0 0 26px rgba(0, 210, 106, 0.26),
    inset 0 0 8px rgba(255,255,255,0.35);
}

/* shimmer nos ícones */
.not4everyone__icon::after{
  content:"";
  position:absolute;
  inset:-35%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.50) 50%, transparent 65%);
  transform: translateX(-60%) rotate(10deg);
  opacity: 0;
  filter: blur(2px);
  animation: n4eIconShine 2.8s ease-in-out infinite;
}

@keyframes n4eIconShine{
  0%{ opacity: 0; transform: translateX(-70%) rotate(10deg); }
  35%{ opacity: .45; }
  55%{ opacity: .12; }
  100%{ opacity: 0; transform: translateX(70%) rotate(10deg); }
}

/* RESPONSIVO */
@media (max-width: 980px){
  .not4everyone__grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .not4everyone__card{
    padding: 1.8rem 1.5rem;
  }

  .not4everyone__card--bad,
  .not4everyone__card--good{
    min-height: auto;
  }
}

@media (max-width: 520px){
  .not4everyone__text{
    font-size: 0.98rem;
  }
}








/* =======================================================
   BÔNUS EXCLUSIVO — FULL WIDTH + GLASS + EFEITOS INTERNOS
   (ajustes pedidos: ícone topo removido / ícones inline / controle % / faixa verde)
======================================================= */

:root{
  --bonus-yellow-1: #f3cc08;
  --bonus-yellow-2: #ffd500; 
  --bonus-yellow-3: #f8d940;
  --bonus-black: #0b0b0b;

  /* ✅ CONTROLE DE INTENSIDADE DOS EFEITOS (0% a 200% recomendado) */
  --bonus-effects: 130%;

  /* ✅ COR DA FAIXA (troque aqui por qualquer hex) */
  --bonus-ribbon: #c1c1c1; /* verde */
  --bonus-ribbon-text: #0b0b0b;
}

.bonus{
  background: radial-gradient(circle at top, #0b0b0b 0%, #000000 90%);
  padding-block: 5rem;
  overflow: hidden;
}

.bonus__panel{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: clamp(2.6rem, 4vw, 3.8rem) 0;

  background: linear-gradient(180deg, var(--bonus-yellow-1) 50%, var(--bonus-yellow-2) 100%);
  color: var(--bonus-black);

  box-shadow:
    0 40px 120px rgba(0,0,0,0.55),
    0 0 90px rgba(255, 214, 10, 0.20);

  overflow: hidden;

  --bonus-parallax-y: 0px;
}

/* ✅ efeitos internos com controle de % */
.bonus__panel::before{
  content:"";
  position:absolute;
  inset:-35%;
  pointer-events:none;
  z-index:0;

  background:
    radial-gradient(circle at 18% 28%, #ffe784 0%, rgba(255,231,132,0) 56%),
    radial-gradient(circle at 82% 22%, #ffd60a 0%, rgba(255,214,10,0) 58%),
    radial-gradient(circle at 55% 85%, #f8d940 0%, rgba(248,217,64,0) 60%),
    linear-gradient(135deg, var(--bonus-yellow-1) 0%, var(--bonus-yellow-2) 45%, var(--bonus-yellow-3) 100%);

  filter: blur(22px);
  opacity: calc(0.95 * (var(--bonus-effects) / 100));
  transform: translate3d(0, var(--bonus-parallax-y), 0) scale(1.06);
  transition: transform 120ms linear;
}

/* shimmer do mestre (também controlado por %) */
.bonus__panel::after{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  z-index:0;

  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0) 65%
  );

  transform: translateX(-60%) rotate(10deg);
  filter: blur(1px);
  opacity: calc(0.70 * (var(--bonus-effects) / 100));
  animation: bonusMasterShine 3.2s ease-in-out infinite;
}

@keyframes bonusMasterShine{
  0%   { transform: translateX(-70%) rotate(10deg); opacity: 0.0; }
  25%  { opacity: 0.55; }
  55%  { opacity: 0.18; }
  100% { transform: translateX(70%) rotate(10deg); opacity: 0.0; }
}

.bonus__inner{ position: relative; z-index: 2; }

/* ✅ FAIXA VERDE + variável */
.bonus__ribbon{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index: 3;
  text-align:center;

  background: linear-gradient(90deg, var(--bonus-ribbon) 0%, #f1f1f1 100%);
  color: var(--bonus-ribbon-text);

  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.78rem;

  padding: 0.7rem 1rem;

  box-shadow:
    0 16px 40px rgba(0, 210, 106, 0.18),
    0 0 0 1px rgba(0,0,0,0.22) inset;
}

/* Header */
.bonus__head{
  text-align: center;
  padding-top: 2.4rem; /* por causa da faixa */
}

.bonus__title{
  margin-top: 0.4rem;
  font-size: clamp(2.0rem, 3.2vw, 3.0rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bonus__subtitle{
  margin-top: 0.4rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.bonus__lead{
  margin-top: 1.15rem;
  max-width: 860px;
  margin-inline: auto;
  font-size: 1.2rem;
  line-height: 1.55;
  opacity: 0.92;
}

.bonus__lead strong{ font-weight: 900; }

/* Grid responsivo */
.bonus__grid{
  margin-top: 2.4rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* CARD GLASS */
.bonus__card{
  position: relative;
  border-radius: 22px;
  padding: 1.35rem 1.25rem;
  overflow: hidden;

  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 22px 60px rgba(0,0,0,0.20),
    0 0 0 1px rgba(0,0,0,0.10) inset;

  transition: transform 220ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.bonus__card::before{
  content:"";
  position:absolute;
  inset:-55%;
  pointer-events:none;

  background:
    radial-gradient(circle at 20% 25%, rgba(255,214,10,0.45), transparent 60%),
    radial-gradient(circle at 80% 35%, rgba(255,231,132,0.35), transparent 60%);

  filter: blur(18px);
  opacity: 0.55;
  transition: opacity 260ms ease;
}

.bonus__card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 22px;
  pointer-events:none;

  box-shadow:
    0 0 0 1px rgba(255,214,10,0.25) inset,
    0 0 26px rgba(255,214,10,0.18);

  opacity: 0.0;
  transition: opacity 260ms ease;
}

.bonus__card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,214,10,0.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.26),
    0 0 52px rgba(255,214,10,0.26);
}

.bonus__card:hover::before{ opacity: 0.95; }
.bonus__card:hover::after{ opacity: 1; }

/* ✅ ícone AGORA AO LADO do texto (inline) */
.bonus__row{
  display:flex;
  align-items:flex-start;
  gap: 1rem;
}

/* Ícone */
.bonus__icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  flex: 0 0 auto;

  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

}

.bonus__icon i{
  color: var(--bonus-black);
  font-size: 1.20rem;
}

/* Texto */
.bonus__text{ min-width: 0; }

.bonus__card-title{
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}

.bonus__card-desc{
  font-size: 0.98rem;
  line-height: 1.55;
  opacity: 0.88;
}

/* CTA */
.bonus__cta{
  margin-top: 2.4rem;
  display:grid;
  justify-items:center;
  gap: 0.8rem;
}

.bonus__btn{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 0.75rem;

  padding: 1.05rem 2.2rem;
  border-radius: 999px;

  background: var(--bonus-black);
  color: var(--bonus-yellow-2);

  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow:
    0 0 0 1px rgba(255,214,10,0.25) inset,
    0 24px 70px rgba(0,0,0,0.40);

  isolation:isolate;
  overflow:hidden;

  animation: bonusCtaPulse 1.45s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 260ms ease;
}

.bonus__btn::before{
  content:"";
  position:absolute;
  inset:-22px;
  border-radius: 999px;

  background: radial-gradient(circle at 50% 45%, rgba(255,214,10,0.62), transparent 66%);
  filter: blur(14px);
  opacity: 0.65;

  z-index:-1;
  pointer-events:none;

  transition: opacity 260ms ease, filter 260ms ease;
}

.bonus__btn::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, transparent 85%, rgba(255,214,10,0.35) 80%, transparent 65%);
  transform: translateX(-60%) rotate(10deg);
  opacity: 1;
  animation: bonusBtnShine 2.1s ease-in-out infinite;
  pointer-events:none;
}

.bonus__btn:hover{
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,214,10,0.35) inset,
    0 34px 90px rgba(0,0,0,0.48),
    0 0 46px rgba(255,214,10,0.24);
}

.bonus__btn:hover::before{
  opacity: 1;
  filter: blur(12px);
}

@keyframes bonusCtaPulse{
  0%   { transform: translateY(0); }
  55%  { transform: translateY(-1px); }
  100% { transform: translateY(0); }
}
@keyframes bonusBtnShine{
  0%   { transform: translateX(-70%) rotate(10deg); opacity: 0.0; }
  28%  { opacity: 0.55; }
  60%  { opacity: 0.15; }
  100% { transform: translateX(70%) rotate(10deg); opacity: 0.0; }
}

.bonus__btn-ico,
.bonus__btn-arrow{
  font-size: 1.05rem;
  line-height: 1;
}

.bonus__fineprint{
  color: var(--bonus-black);
  font-size: 1rem;
  text-align:center;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 980px){
  .bonus__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .bonus__grid{ grid-template-columns: 1fr; }
  .bonus__btn{ width: 100%; }
}


/* ✅ controle: intensidade do brilho da borda */
:root{
  --bonus-card-border-glow: 1; /* 0 = sem brilho | 1 = normal | 1.5 = mais forte */
  --bonus-card-border-speed: 3.2s; /* velocidade da borda animada */
}

/* ativa a borda animada nos cards */
.bonus__card{
  position: relative;
  isolation: isolate; /* garante camadas certinhas */
}

/* camada “linha viva” */
.bonus__card .bonus__border{
  position:absolute;
  inset:-1px;
  border-radius: 22px;
  pointer-events:none;
  z-index: 2;

  /* máscara: só aparece na borda */
  padding: 1px;
  background:
    conic-gradient(
      from 0deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0) 18%,
      rgba(255,214,10,0.95) 30%,
      rgba(255,231,132,0.85) 42%,
      rgba(255,255,255,0) 60%,
      rgba(255,255,255,0) 100%
    );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  filter: blur(0.2px);
  opacity: 0.55;
  animation: bonusBorderSpin var(--bonus-card-border-speed) linear infinite;
  transition: opacity 260ms ease, filter 260ms ease;
}

/* glow externo adicional (premium) */
.bonus__card .bonus__border::after{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius: 30px;
  background: radial-gradient(circle at 50% 50%, rgba(255,214,10,0.25), transparent 62%);
  filter: blur(16px);
  opacity: calc(0.55 * var(--bonus-card-border-glow));
}

/* no hover fica mais forte */
.bonus__card:hover .bonus__border{
  opacity: calc(0.95 * var(--bonus-card-border-glow));
  filter: blur(0px);
}

/* animação da borda */
@keyframes bonusBorderSpin{
  to { transform: rotate(360deg); }
}








/* =======================================================
   GARANTIA 100% — PREMIUM / GLASS + SHIMMER (SEM CONIC)
   Controles por variáveis: ajuste quando quiser
======================================================= */
.guarantee{
  position: relative;
  padding-block: clamp(3.8rem, 5vw, 5.2rem);
  background: radial-gradient(circle at top, #0b0b0b 0%, #000000 70%);
  overflow: hidden;

  /* ========= CONTROLES ========= */
  --g-border: 1px;                  /* espessura da borda */
  --g-radius: 26px;                 /* raio do card */

  --g-yellow: #ffd60a;              /* amarelo principal */
  --g-yellow-2: #ffe784;            /* amarelo claro */
  --g-glass-a: rgba(255, 214, 10, 0.08); /* “vidro” dourado (suave) */
  --g-glass-b: rgba(255, 231, 132, 0.18);/* “vidro” dourado (brilho) */

  --g-border-base: rgba(255, 214, 10, 0.55); /* borda base */

  --g-loop-opacity: 10.35;           /* intensidade do loop nas bordas */
  --g-loop-speed: 3.8s;             /* velocidade do loop da borda */

  --g-hover-glow-opacity: 10.95;     /* brilho no hover (fade-in) */
  --g-hover-glow-spread: 96px;      /* força do glow no hover */
  --g-hover-glow-speed: 360ms;      /* tempo do fade-in do hover */

  --g-inner-glass-opacity: 0.45;    /* visibilidade do vidro interno */
  --g-inner-glass-speed: 7.5s;      /* velocidade do vidro interno */

  --g-card-bg: rgba(10,10,10,0.62); /* fundo do card */
  --g-card-blur: 14px;              /* blur do glass */
}

/* glow de fundo sutil (luxo) */
.guarantee::before,
.guarantee::after{
  content:"";
  position:absolute;
  width: 820px;
  height: 820px;
  border-radius: 999px;
  filter: blur(150px);
  opacity: 0.18;
  pointer-events:none;
}
.guarantee::before{
  top: -45%;
  left: -20%;
  background: rgba(255, 214, 10, 0.22);
}
.guarantee::after{
  bottom: -55%;
  right: -18%;
  background: rgba(255, 214, 10, 0.16);
}

/* CARD */
.guarantee__card{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.6rem, 3vw, 2.4rem);
  align-items: center;

  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border-radius: var(--g-radius);

  background: var(--g-card-bg);
  backdrop-filter: blur(var(--g-card-blur));
  overflow: hidden;
  isolation: isolate;

  border: var(--g-border) solid var(--g-border-base);

  /* sombra base */
  box-shadow:
    0 0 0 1px rgba(255, 214, 10, 0.10),
    0 18px 60px rgba(0,0,0,0.55);

  transition:
    border-color var(--g-hover-glow-speed) ease,
    box-shadow var(--g-hover-glow-speed) ease,
    transform 220ms ease;
}

/* =======================================================
   1) LOOP INFINITO DE “VIDRO DOURADO” NAS BORDAS
   - sem conic-gradient
   - shimmer linear que percorre a borda continuamente
======================================================= */
.guarantee__card::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: var(--g-radius);
  padding: var(--g-border);

  /* shimmer premium: faixa de vidro que “passa” */
  background:
    linear-gradient(120deg,
      rgba(255,214,10,0.00) 0%,
      rgba(255,214,10,0.00) 30%,
      rgba(255,231,132,0.55) 45%,
      rgba(255,214,10,0.10) 60%,
      rgba(255,214,10,0.00) 75%,
      rgba(255,214,10,0.00) 100%
    );
  background-size: 220% 220%;
  background-position: -120% 0%;
  opacity: var(--g-loop-opacity);
  filter: blur(0.2px);

  /* mostra só na borda */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: gBorderShimmer var(--g-loop-speed) linear infinite;
  pointer-events:none;
  z-index: 0;
}

@keyframes gBorderShimmer{
  0%   { background-position: -120% 0%; opacity: calc(var(--g-loop-opacity) * 0.95); }
  50%  { opacity: var(--g-loop-opacity); }
  100% { background-position: 120% 0%;  opacity: calc(var(--g-loop-opacity) * 0.95); }
}

/* =======================================================
   2) GLOW DE BORDA COM FADE-IN NO HOVER (bonito e suave)
======================================================= */
.guarantee__card::after{
  content:"";
  position:absolute;
  inset: -22px;
  border-radius: calc(var(--g-radius) + 22px);

  /* glow suave (default quase invisível) */
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255,214,10,0.22),
      rgba(255,214,10,0.10) 35%,
      transparent 68%
    );

  filter: blur(20px);
  opacity: 0; /* IMPORTANT: começa zerado */
  transition: opacity var(--g-hover-glow-speed) ease;
  pointer-events:none;
  z-index: -1;
}

/* HOVER: aumenta glow com fade-in, sem “estalo” */
.guarantee__card:hover{
  border-color: rgba(255,214,10,0.82);
  box-shadow:
    0 0 0 1px rgba(255,214,10,0.22),
    0 0 var(--g-hover-glow-spread) rgba(255,214,10,0.18),
    0 18px 65px rgba(0,0,0,0.62);
  transform: translateY(-2px);
}

.guarantee__card:hover::after{
  opacity: var(--g-hover-glow-opacity);
}

/* também deixa o shimmer da borda um pouco mais presente no hover */
.guarantee__card:hover::before{
  opacity: calc(var(--g-loop-opacity) + 0.18);
}

/* =======================================================
   3) “VIDRO” PASSANDO POR DENTRO (loop interno)
   - efeito sutil e luxuoso
   - controlável por --g-inner-glass-opacity
======================================================= */
.guarantee__card .guarantee__glass{
  display:none; /* só pra reserva se quiser usar um elemento extra */
}

/* vidro interno via pseudo-elemento em um wrapper invisível */
.guarantee__card .guarantee__inner-glass{
  display:none;
}

/* usamos um pseudo-elemento interno no próprio card */
.guarantee__card > *{
  position: relative;
  z-index: 2;
}

/* camada de vidro interna */
.guarantee__card .guarantee__glasslayer{
  display:none;
}

.guarantee__card{
  /* cria camada interna */
}

.guarantee__card .g__dummy{ display:none; }

/* vidro interno real */
.guarantee__card span.g__glass{
  display:none;
}

/* camada interna (pseudo) */
.guarantee__card i.g__glass{ display:none; }

.guarantee__card{
  /* pseudo interno */
}
.guarantee__card{
  /* nada aqui */
}

.guarantee__card{
  /* interno */
}

.guarantee__card{
  /* pseudo interno */
}

.guarantee__card{
  /* ok */
}

.guarantee__card{
  /* adiciona efeito interno */
}
.guarantee__card{
  /* pseudo-elemento interno usando background animado */
}
.guarantee__card{
  /* fim */
}

/* vidro interno */
.guarantee__card .guarantee__fx{ display:none; }

/* vidro interno (de verdade) */
.guarantee__card{
}
.guarantee__card{
}
.guarantee__card{
}
.guarantee__card{
}

/* ✅ camada interna via pseudo adicional usando background no card */
.guarantee__card{
  /* nada */
}
.guarantee__card{
  /* nada */
}

.guarantee__card{
  /* Vamos usar um pseudo extra com background interno via filter */
}
.guarantee__card{
}
.guarantee__card{
}

/* usando outline interno via pseudo "g-inner" (criado com box-shadow inset + animação) */
.guarantee__card .g-inner{ display:none; }

/* vidro interno final */
.guarantee__card{
}
.guarantee__card{
}
.guarantee__card{
}

/* ✅ vidro interno com pseudo dedicado */
.guarantee__card .g__no{ display:none; }

.guarantee__card{
}
.guarantee__card{
}

/* CAMADA INTERNA */
.guarantee__card{
}
.guarantee__card{
}

/* PSEUDO INTERNO */
.guarantee__card{
}
.guarantee__card{
}

/* ✅ aqui está o pseudo interno */
.guarantee__card .g__x{display:none;}

.guarantee__card{
}
.guarantee__card{
}

/* A camada interna é um pseudo do próprio card usando background animado e mix-blend */
.guarantee__card{
}
.guarantee__card{
}

/* AQUI: vidro interno */
.guarantee__card{
}
.guarantee__card{
}

/* Vidro interno em loop (sutil) */
.guarantee__card{
}
.guarantee__card{
}

/* ✅ implementado: */
.guarantee__card{
  /* nada */
}

.guarantee__card{
  /* camada interna */
}
.guarantee__card{
}
.guarantee__card{
}

/* Pseudo interno real */
.guarantee__card{
  /* cria a camada interna via background + animação */
}
.guarantee__card{
}

.guarantee__card{
  /* camada */
}
.guarantee__card{
}

/* >>> GLASS interno */
.guarantee__card{
}
.guarantee__card{
}

/* OK, agora o pseudo interno (usa ::marker não, usa um pseudo via background overlay no próprio card) */
.guarantee__card{
}

.guarantee__card{
  /* camada interna como overlay */
}
.guarantee__card{
}

/* ✅ overlay interno */
.guarantee__card{
}
.guarantee__card{
}

/* overlay interno final */
.guarantee__card{
}
.guarantee__card{
}

/* vamos adicionar um pseudo interno usando background overlay com outro pseudo:
   usamos um elemento que já existe: ::after é glow externo, ::before é borda shimmer.
   Então o vidro interno vira uma camada com box-shadow inset via background no próprio card,
   usando "background-image" adicional através de um pseudo no conteúdo via :is().
*/
.guarantee__card{
  /* overlay interno via background adicional na própria caixa */
  background-image:
    radial-gradient(circle at 20% 15%, rgba(255, 214, 10, 0.08), transparent 55%),
    linear-gradient(120deg,
      rgba(255,255,255,0.00) 0%,
      rgba(255,255,255,0.00) 40%,
      rgba(255,231,132,0.10) 50%,
      rgba(255,255,255,0.00) 60%,
      rgba(255,255,255,0.00) 100%
    );
  background-size: auto, 220% 220%;
  background-position: center, -120% 0%;
  animation: gInnerGlass var(--g-inner-glass-speed) linear infinite;
}

@keyframes gInnerGlass{
  0%   { background-position: center, -120% 0%; }
  100% { background-position: center,  120% 0%; }
}

/* controla a visibilidade do vidro interno */
.guarantee__card{
  /* aplica intensidade via opacity no segundo layer com um truque: usamos um inset overlay */
}
.guarantee__card{
  /* reforço interno com brilho nas bordas internas */
  box-shadow:
    0 0 0 1px rgba(255, 214, 10, 0.10),
    0 18px 60px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255, 214, 10, 0.10),
    inset 0 0 45px rgba(255, 214, 10, calc(0.10 * var(--g-inner-glass-opacity)));
}

/* ===== IMAGEM ===== */
.guarantee__media{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 220px;
}

.guarantee__media img{
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(255, 214, 10, 0.20));
}

/* ===== TEXTO ===== */
.guarantee__content{
  position: relative;
}

.guarantee__title{
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.guarantee__title-highlight{
  color: transparent;
  background: linear-gradient(90deg, var(--g-yellow), var(--g-yellow-2));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(255,214,10,0.25));
}

.guarantee__subtitle{
  margin-top: 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
}

.guarantee__text{
  margin-top: 1rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.55;
  font-size: 1rem;
  max-width: 42rem;
}

.guarantee__text strong{
  color: rgba(255,255,255,0.95);
  font-weight: 800;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 980px){

  .guarantee__card{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee__media{
    justify-content: center;   /* centraliza horizontalmente */
    align-items: center;
  }

  .guarantee__media img{
    width: min(260px, 80%);
    margin-inline: auto;       /* garante centralização */
  }

  .guarantee__content{
    text-align: center;
  }

}

@media (max-width: 520px){
  .guarantee__media img{
    width: min(240px, 100%);
  }

  .guarantee__subtitle{
    font-size: 1.12rem;
  }
}






/* =======================================================
   FAQ PREMIUM — PERGUNTAS FREQUENTES
   (lado invertido: texto à esquerda / accordion à direita)
======================================================= */

.faq-premium{
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 214, 10, 0.08), transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(255, 214, 10, 0.05), transparent 30%),
    #000000;
}

.faq-premium__inner{
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3.2rem;
  align-items: start;
}

/* INTRO */
.faq-premium__intro{
  position: relative;
  padding-top: 1rem;
}

.faq-premium__bg-word{
  position: absolute;
  top: -3.2rem;
  left: 0;
  font-size: clamp(7.8rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.11);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;

  /* glow dourado sutil */
  text-shadow:
    0 0 18px rgba(255,214,10,0.10),
    0 0 38px rgba(255,214,10,0.06);
}

/* halo dourado atrás da palavra FAQ */
.faq-premium__bg-word::after{
  content: "";
  position: absolute;
  inset: -10% -6%;
  z-index: -1;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255,214,10,0.12) 0%,
    rgba(255,214,10,0.06) 35%,
    rgba(255,214,10,0.00) 72%
  );
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.faq-premium__title{
  position: relative;
  z-index: 1;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.95;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.faq-premium__text-box{
  margin-top: 4rem;
  max-width: 420px;
}

.faq-premium__subtitle{
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.faq-premium__text{
  margin-top: 1rem;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 300;
}

/* CTA */
.faq-premium__cta{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 1.05rem 1.8rem;
  border-radius: 999px;

  /* amarelo com degradê */
  background: linear-gradient(180deg, #f3cc08 0%, #ffd60a 55%, #f8d940 100%);
  color: #0b0b0b;

  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 28px rgba(255,214,10,0.22),
    0 16px 38px rgba(0,0,0,0.35);

  transition:
    transform 220ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;

  isolation: isolate;
  overflow: hidden;

  /* pulsando infinito */
  animation: faqCtaPulse 1.7s ease-in-out infinite;
}

.faq-premium__cta::before{
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.28), transparent 45%);
  opacity: 0.35;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.faq-premium__cta::after{
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,0.30) 50%,
    transparent 65%
  );
  transform: translateX(-70%) rotate(10deg);
  opacity: 0.8;
  animation: faqCtaShine 2.4s ease-in-out infinite;
  pointer-events: none;
}

.faq-premium__cta:hover{
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 0 40px rgba(255,214,10,0.30),
    0 20px 44px rgba(0,0,0,0.42);
}

.faq-premium__cta:hover::before{
  opacity: 0.55;
}

.faq-premium__cta-icon{
  display: inline-flex;
  font-size: 1.2rem;
  line-height: 1;
}

@keyframes faqCtaPulse{
  0%{
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.08) inset,
      0 0 22px rgba(255,214,10,0.16),
      0 16px 38px rgba(0,0,0,0.35);
  }
  50%{
    transform: scale(1.03);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.10) inset,
      0 0 38px rgba(255,214,10,0.28),
      0 18px 44px rgba(0,0,0,0.42);
  }
  100%{
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.08) inset,
      0 0 22px rgba(255,214,10,0.16),
      0 16px 38px rgba(0,0,0,0.35);
  }
}

@keyframes faqCtaShine{
  0%{
    transform: translateX(-70%) rotate(10deg);
    opacity: 0;
  }
  30%{
    opacity: 0.45;
  }
  60%{
    opacity: 0.15;
  }
  100%{
    transform: translateX(70%) rotate(10deg);
    opacity: 0;
  }
}

/* ACCORDION */
.faq-premium__accordion{
  display: grid;
  gap: 1rem;
}

.faq-item{
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18,18,18,0.94), rgba(10,10,10,0.94));
  border: 2px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,214,10,0.03),
    0 10px 28px rgba(0,0,0,0.30);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 220ms ease;
}

.faq-item::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 214, 10, 0.06), transparent 26%),
    radial-gradient(circle at 88% 50%, rgba(255, 214, 10, 0.04), transparent 24%);
  pointer-events: none;
}

.faq-item:hover{
  transform: translateY(-1px);
  border-color: rgba(255,214,10,0.18);
  box-shadow:
    0 0 0 1px rgba(255,214,10,0.06),
    0 0 24px rgba(255,214,10,0.08),
    0 14px 34px rgba(0,0,0,0.36);
}

.faq-item.active{
  border-color: rgba(255,214,10,0.22);
  box-shadow:
    0 0 0 1px rgba(255,214,10,0.08),
    0 0 26px rgba(255,214,10,0.10),
    0 16px 38px rgba(0,0,0,0.38);
}

.faq-item__trigger{
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 1.45rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.faq-item__left{
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.faq-item__bullet{
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #f7e27a;
  filter: drop-shadow(0 0 8px rgba(255,214,10,0.22));
  flex: 0 0 auto;
  transition: transform 260ms ease;
}

.faq-item.active .faq-item__bullet{
  transform: rotate(90deg);
}

.faq-item__question{
  color: #ffffff;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.25;
  font-weight: 700;
}

.faq-item__icon{
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item__icon::before,
.faq-item__icon::after{
  content: "";
  position: absolute;
  top: 8px;
  width: 11px;
  height: 2px;
  background: #f7e27a;
  border-radius: 999px;
  transition: transform 260ms ease;
  box-shadow: 0 0 8px rgba(255,214,10,0.16);
}

.faq-item__icon::before{
  left: 0;
  transform: rotate(45deg);
}

.faq-item__icon::after{
  right: 0;
  transform: rotate(-45deg);
}

.faq-item.active .faq-item__icon::before{
  transform: rotate(-45deg);
}

.faq-item.active .faq-item__icon::after{
  transform: rotate(45deg);
}

.faq-item__content{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease;
}

.faq-item.active .faq-item__content{
  grid-template-rows: 1fr;
}

.faq-item__content > p{
  overflow: hidden;
  padding: 0 1.5rem 1.35rem 3.35rem;
  color: rgba(255,255,255,0.68);
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 300;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .faq-premium__inner{
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .faq-premium__intro{
    order: 1;
  }

  .faq-premium__accordion{
    order: 2;
  }

  .faq-premium__text-box{
    margin-top: 2rem;
    max-width: none;
  }
}

@media (max-width: 520px){
  .faq-premium{
    padding: 4.8rem 0;
  }

  .faq-premium__title{
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .faq-item__trigger{
    padding: 1.2rem 1.1rem;
  }

  .faq-item__content > p{
    padding: 0 1.1rem 1.1rem 2.9rem;
    font-size: 0.94rem;
  }

  .faq-premium__cta{
    width: 100%;
    justify-content: center;
  }
}





