﻿:root {
  --orange: #ff7a00;
  --black: #0b0b0b;
  --dark: #111;
  --glass: rgba(255,255,255,0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  width: 100%;
  padding: 0 20px;
  min-height:90px;
  top: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 900;
}

.logo img {
  max-height: 100px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
}


/* ================= SUBHEADER ================= */
.subheader {
  position: fixed; /* fica preso junto do header */
  top: 100px; /* altura do header */
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
  background: #000;
  border-top: 2px solid #ff7a00; /* linha neon entre header e subheader */
  border-bottom: 2px solid #ff7a00; /* linha inferior do subheader */
  z-index: 900; /* acima do conteÃºdo, abaixo do header se necessÃ¡rio */
}

.subheader i {
  color: #ff7a00; /* neon laranja */
  filter: blur(0.4px);
  transition: 0.3s;
  text-shadow: 0 0 10px #ff7a00; /* brilho neon */
}

.subheader i:hover {
  transform: scale(1.3);
  text-shadow: 0 0 20px #ff7a00; /* neon mais intenso */
}

/* ================= HEADER MOBILE ================= */
@media (max-width: 768px) {
  .header {
    /*display: flex;            /* transforma o header em flex container */
    justify-content: center;  /* centraliza horizontalmente logo + menu hambÃºrguer */
    align-items: center;      /* centraliza verticalmente */
    gap: 30px;                /* distÃ¢ncia entre logo e hambÃºrguer */
    z-index: 900;
  }
}

@media (max-width: 768px) {
  .logo img {
    max-height: 70px;
  }
}

/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
  .subheader {
    top: 70px; /* ajusta altura do header no mobile */
    gap: 15px;
    padding: 6px 0;
    display: flex; /* garante que o subheader apareÃ§a no mobile */
    z-index: 900;
  }

  .subheader i {
    font-size: 20px;
    color: #ff7a00;
    text-shadow: 0 0 10px #ff7a00; /* neon ativo no mobile */
  }
}

/* ================= CONTEÃšDO ================= */
.container {
  max-width: 1200px;
  margin: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}

/* MENU LINKS - DESKTOP */
.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: var(--orange);
}

/* MENU HAMBURGUER - MOBILE */
.menu-mobile {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.logo span {
  color: var(--orange);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 150px 20px;
  max-width: 1200px;
  margin: auto;
}

.hero h1 span {
  color: var(--orange);
}

/* MOCKUP */
.phone-mockup {
  background: linear-gradient(145deg, #111, #000);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  box-shadow: 0 0 60px rgba(255,122,0,0.2);
}

.screen-glow {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: inset 0 0 40px rgba(255,122,0,0.4);
}

/* BUTTON */
.btn {
  background: linear-gradient(135deg, var(--orange), #ff9a3c);
  padding: 6px 20px;
  border-radius: 8px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 25px rgba(255,122,0,0.5);
}

.buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: var(--glass);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255,122,0,0.3);
}

/* FORM */
.form {
  max-width: 400px;
  margin: auto;
  display: grid;
  gap: 15px;
}

input {
  padding: 14px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 0 25px rgba(37,211,102,0.6);
}

/* ============================= */
/* FLOATING ICONS BACKGROUND FINAL */
/* ============================= */
.floating-icons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* fundo absoluto */
  pointer-events: none; /* nÃ£o atrapalha cliques */
}

.floating-icons i {
  position: absolute;
  color: #ff7a00;
  text-shadow:
    0 0 5px #ff7a00,
    0 0 10px #ff7a00,
    0 0 20px #ff7a00,
    0 0 40px #ff7a00,
    0 0 60px #ff7a00;
  animation: floatIcon linear infinite;
  opacity: 1;
}

/* DESKTOP POSIÃ‡Ã•ES */
.floating-icons i:nth-child(1) { top: 10%; left: 5%; font-size: 120px; animation-duration: 22s; }
.floating-icons i:nth-child(2) { top: 30%; right: 10%; font-size: 140px; animation-duration: 26s; }
.floating-icons i:nth-child(3) { bottom: 15%; left: 15%; font-size: 100px; animation-duration: 20s; }
.floating-icons i:nth-child(4) { bottom: 25%; right: 20%; font-size: 160px; animation-duration: 28s; }
.floating-icons i:nth-child(5) { top: 50%; left: 45%; font-size: 180px; animation-duration: 30s; }

/* ANIMAÃ‡ÃƒO SUAVE */
@keyframes floatIcon {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-40px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .floating-icons i {
    opacity: 1; /* neon intenso */
    text-shadow:
      0 0 5px #ff7a00,
      0 0 10px #ff7a00,
      0 0 20px #ff7a00,
      0 0 40px #ff7a00,
      0 0 60px #ff7a00;
  }

  /* Tamanhos 50% menores que no desktop */
  .floating-icons i:nth-child(1) { font-size: 40px; }  /* 120px / 2 */
  .floating-icons i:nth-child(2) { font-size: 50px; }  /* 140px / 2 */
  .floating-icons i:nth-child(3) { font-size: 30px; }  /* 100px / 2 */
  .floating-icons i:nth-child(4) { font-size: 60px; }  /* 160px / 2 */
  .floating-icons i:nth-child(5) { font-size: 70px; }  /* 180px / 2 */

  /* Ajustar posiÃ§Ãµes para mobile, evitando que fiquem sobrepostos */
  .floating-icons i:nth-child(1) { top: 5%; left: 5%; }
  .floating-icons i:nth-child(2) { top: 20%; right: 10%; }
  .floating-icons i:nth-child(3) { top: 35%; left: 15%; }
  .floating-icons i:nth-child(4) { top: 50%; right: 15%; }
  .floating-icons i:nth-child(5) { top: 65%; left: 25%; }
}

/* ============================= */
/* MENU PC */
.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.menu a:hover {
  color: var(--orange);
}

/* ============================= */
/* MENU MOBILE */
.menu-mobile {
  display: none; /* escondido no PC */
  cursor: pointer;
  font-size: 28px;
  color: #fff;
}

/* MENU MODAL MOBILE */
.menu-mobile-modal {
  position: fixed;
  top: 0;
  right: -260px; /* escondido fora da tela */
  width: 260px;
  height: 100vh;

  background: rgba(0,0,0,0.97);

  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  gap: 25px;

  transition: right 0.3s ease;

  z-index: 99999; /* MAIS ALTO DO SITE */
}


.menu-mobile-modal a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.menu-mobile-modal a:hover {
  color: var(--orange);
}

.menu-close {
  align-self: flex-end;
  font-size: 28px;
  cursor: pointer;
  color: var(--orange);
}

/* ============================= */
/* RESPONSIVO */
@media (max-width: 768px) {
  .menu {
    display: none; /* esconde menu normal no mobile */
  }
  .menu-mobile {
    display: block; /* mostra hamburger no mobile */
  }
}

/* MOBILE: esconder header + subheader ao rolar */
@media (max-width: 768px) {

  .header,
  .subheader {
    transition: transform 0.35s ease;
  }

  .header.hide {
    transform: translateY(-120px);
  }

  .subheader.hide {
    transform: translateY(-200px);
  }
}

/* ESPAÃ‡O RESERVADO PARA HEADER + SUBHEADER */
.header-spacer {
  height: 140px; /* header + subheader */
}

/* ajuste no mobile */
@media (max-width: 768px) {
  .header-spacer {
    height: 110px;
  }
}

/* ================= HERO BACKGROUND CINEMATOGRÃFICO ================= */

/* HERO BASE */
.hero-bg {
  position: relative; /* permite camadas internas */
  overflow: hidden; /* evita vazamento do glow */
  display: flex;      /* PERMITE CENTRALIZAR CONTEÃšDO */
}

/* CONTAINER INTERNO */
.hero-content {
  position: relative; /* fica acima do fundo */
  z-index: 3;         /* acima do overlay */

  display: flex;      /* controla alinhamento */
  align-items: center; /* CENTRALIZA VERTICAL NO PC */
  justify-content: flex-start; /* conteÃºdo Ã  esquerda */

  max-width: 1200px;
  margin: auto;

  padding-left: 60px; /* desloca o texto para a esquerda */
  padding-right: 20px;
}

/* IMAGEM DE FUNDO DESKTOP */
.hero-bg {
  background-image: url("../../images/img2pc.png"); /* imagem PC */
  background-size: cover; /* cobre toda a Ã¡rea */
  background-position: center; /* centraliza */
  background-repeat: no-repeat;
}

/* OVERLAY ESCURO */
.hero-overlay {
  position: absolute;
  inset: 0; /* ocupa tudo */
  background: rgba(0,0,0,0.65); /* escurece a imagem */
  z-index: 1;
}

/* GLOW LARANJA AMBIENTAL */
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center,
      rgba(255,122,0,0.25),
      transparent 60%);
  z-index: 2;
  pointer-events: none; /* nÃ£o interfere em cliques */
}

/* TEXTO DO HERO */
.hero-text h1 {
  font-size: clamp(32px, 5vw, 54px); /* responsivo */
  line-height: 1.1;
}

.hero-text p {
  margin-top: 0px;
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 15px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* imagem mobile com enquadramento 4:5 */
  .hero-bg {
    background-image: url("../../images/img4mob.png");

    /* NÃƒO muda o tamanho do hero */
    background-size: cover;

    /* centraliza horizontal e trava topo */
    background-position: center top;

    /* impede repetiÃ§Ã£o */
    background-repeat: no-repeat;

    /* forÃ§a a altura apenas no mobile */
    height: 80vh;
  }

  /* layout em coluna */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* centralizar botÃµes */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  /* reduzir glow no mobile */
  .hero-glow {
    background:
      radial-gradient(circle at top,
        rgba(255,122,0,0.2),
        transparent 70%);
  }
}

/* ================= HERO â€“ ALTURA CONTROLADA ================= */

/* DESKTOP */
.hero-bg {
  min-height: 100vh; /* desktop continua tela cheia */
  padding-top: 0;
  padding-bottom: 100px;
}

/* MOBILE â€“ trava proporÃ§Ã£o 4:5 */
@media (max-width: 768px) {
  .hero-bg {
    min-height: unset; /* REMOVE a trava de 100vh */
    height: calc(100vw * 1.25); /* 4:5 exato */
    padding-top: 0;
    padding-bottom: 60px;
  }
}

/* ================= MOBILE HERO AJUSTE FINAL ================= */
@media (max-width: 768px) {
  .hero-bg {
    padding-top: 0; /* respeita header + subheader no mobile */
  }
}

/* TEXTO DO HERO - CONTROLE DE LARGURA */
.hero-text {
  max-width: 520px; /* leitura elegante */
}

/* ================= HERO MOBILE ================= */
@media (max-width: 768px) {

  .hero-content {
    display: flex;               /* ativa flex */
    flex-direction: column;      /* empilha conteÃºdo */
    justify-content: flex-end;   /* EMPURRA PARA O FUNDO */
    align-items: center;         /* centraliza horizontalmente */
    height: 100%;                /* ocupa toda altura do hero */
    padding: 0 20px 40px;        /* respiro inferior */
    margin-bottom: -80px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;             /* usa toda largura no mobile */
    margin-right: 50px;
  }

}

/* ================= HERO TEXTO - DESKTOP ================= */
@media (min-width: 769px) {

  .hero-content {
    display: flex;
    align-items: center;        /* continua centralizado verticalmente */
    justify-content: flex-start;
    min-height: 100vh;
    margin-left: 10px;
  }

  .hero-text {
    max-width: 520px;
    text-align: left;

    /* â¬‡ move o texto SEM mexer na imagem */
    transform: translateY(0px);
  }

}

/* ========================================================= */
/* HERO â€“ GLOW LARANJA NEON COM CORTE EXATO EM 50% */
/* ========================================================= */

/* Base do hero */
.hero-bg {
  position: relative;
  overflow: hidden;
}

/* ========================================================= */
/* GLOW LARANJA â€“ DESKTOP (ESQUERDA â†’ MEIO) */
/* ========================================================= */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  /* 
    Gradiente com CORTE REAL:
    AtÃ© 50% â†’ glow
    ApÃ³s 50% â†’ imagem 100% limpa
  */
  background: linear-gradient(
    90deg,
    rgba(255,122,0,0.95) 0%,   /* neon mÃ¡ximo */
    rgba(255,122,0,0.85) 20%,
    rgba(255,122,0,0.6) 35%,
    rgba(255,122,0,0.3) 45%,
    rgba(255,122,0,0.15) 49%,
    rgba(255,122,0,0.0) 50%,  /* CORTE */
    rgba(0,0,0,0.0) 100%      /* imagem pura */
  );

  pointer-events: none;
}

/* ========================================================= */
/* MOBILE â€“ GLOW DE BAIXO PARA CIMA (ATÃ‰ O MEIO) */
/* ========================================================= */
@media (max-width: 768px) {

  .hero-bg::after {
    background: linear-gradient(
      0deg,
      rgba(255,122,0,0.98) 0%,   /* neon extremamente forte */
      rgba(255,122,0,0.85) 20%,
      rgba(255,122,0,0.6) 35%,
      rgba(255,122,0,0.3) 45%,
      rgba(255,122,0,0.15) 49%,
      rgba(255,122,0,0.0) 50%,  /* CORTE EXATO */
      rgba(0,0,0,0.0) 100%      /* imagem limpa */
    );
  }
}

/* ========================================================= */
/* GARANTIA DE CAMADAS */
/* ========================================================= */

/* overlay escuro original continua funcionando */
.hero-overlay {
  z-index: 3;
}

/* conteÃºdo sempre acima de tudo */
.hero-content {
  position: relative;
  z-index: 4;
}

/* ========================================================= */
/* REMOÃ‡ÃƒO TOTAL DE QUALQUER OVERLAY ESCURO NO HERO */
/* ========================================================= */

/* Neutraliza completamente o overlay antigo */
.hero-overlay {
  background: transparent !important; /* remove escurecimento */
  opacity: 1 !important;
}

/* ================= HERO ================= */
.hero-bg {
  position: relative;
  overflow: hidden;
}

/* ================= FUMAÃ‡A CAMADA 1 ================= */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.75) 20%,
    rgba(0,0,0,0.45) 35%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.0) 50%
  );

  animation: smokeDrift1 28s linear infinite;
  filter: blur(18px);
}

/* ================= FUMAÃ‡A CAMADA 2 ================= */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 20%,
    rgba(0,0,0,0.18) 35%,
    rgba(0,0,0,0.08) 45%,
    rgba(0,0,0,0.0) 50%
  );

  animation: smokeDrift2 18s linear infinite;
  filter: blur(28px);
}

/* ================= MOVIMENTO ORGÃ‚NICO ================= */
@keyframes smokeDrift1 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 20% 55%;
  }
  100% {
    background-position: 40% 45%;
  }
}

@keyframes smokeDrift2 {
  0% {
    background-position: 10% 60%;
  }
  50% {
    background-position: 30% 50%;
  }
  100% {
    background-position: 55% 55%;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-bg::before,
  .hero-bg::after {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.75) 20%,
      rgba(0,0,0,0.45) 35%,
      rgba(0,0,0,0.18) 45%,
      rgba(0,0,0,0.0) 50%
    );
  }

  .hero-bg::before {
    animation: smokeDriftMobile1 26s linear infinite;
  }

  .hero-bg::after {
    animation: smokeDriftMobile2 16s linear infinite;
  }
}

/* ================= MOVIMENTO MOBILE ================= */
@keyframes smokeDriftMobile1 {
  0% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 48% 80%;
  }
  100% {
    background-position: 52% 60%;
  }
}

@keyframes smokeDriftMobile2 {
  0% {
    background-position: 55% 95%;
  }
  50% {
    background-position: 50% 75%;
  }
  100% {
    background-position: 45% 55%;
  }
}

/* ================= CONTEÃšDO ================= */
.hero-content {
  position: relative;
  z-index: 5;
}

/* =========================================================
   HERO FX â€” CAMADA NEON EXCLUSIVA
   ========================================================= */

.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 3; /* acima da fumaÃ§a preta, abaixo do texto */
  pointer-events: none;
  overflow: hidden;
}

/* =========================================================
   FUMAÃ‡A NEON LARANJA (POUCAS E ORGÃ‚NICAS)
   ========================================================= */
.hero-fx::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 18% 42%,
      rgba(255,122,0,0.22),
      rgba(255,122,0,0.06),
      transparent 65%),
    radial-gradient(circle at 32% 68%,
      rgba(255,90,0,0.18),
      rgba(255,90,0,0.04),
      transparent 70%);

  filter: blur(55px);
  opacity: 0.55;

  animation: neonSmokeMove 40s ease-in-out infinite alternate;
}

@keyframes neonSmokeMove {
  0%   { transform: translate(0,0); }
  50%  { transform: translate(50px,-25px); }
  100% { transform: translate(90px,30px); }
}

/* =========================================================
   RAIOS NEON â€” FINOS, ORGÃ‚NICOS, VIVOS
   ========================================================= */
.hero-fx::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(118deg,
      transparent 49.6%,
      rgba(255,122,0,0.35) 50%,
      transparent 50.4%),
    linear-gradient(142deg,
      transparent 49.7%,
      rgba(255,90,0,0.25) 50%,
      transparent 50.3%);

  filter: blur(1px);
  opacity: 0.22;

  animation: neonRaysMove 24s linear infinite;
}

@keyframes neonRaysMove {
  0%   { background-position: 0% 0%; opacity: 0.15; }
  50%  { background-position: 35% 20%; opacity: 0.35; }
  100% { background-position: 70% 40%; opacity: 0.2; }
}

/* =========================================================
   PARTÃCULAS NEON â€” GRÃƒO CINEMATOGRÃFICO
   ========================================================= */
.hero-fx {
  background-image:
    radial-gradient(circle, rgba(255,140,40,0.14) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255,100,20,0.1) 1px, transparent 1.6px);

  background-size: 160px 160px, 260px 260px;

  animation: neonParticlesMove 55s linear infinite;
}

@keyframes neonParticlesMove {
  from { background-position: 0 0, 120px 180px; }
  to   { background-position: 220px 120px, 360px 420px; }
}

/* =========================================================
   MOBILE â€” REDUÃ‡ÃƒO DE INTENSIDADE
   ========================================================= */
@media (max-width: 768px) {
  .hero-fx::before { opacity: 0.35; }
  .hero-fx::after  { opacity: 0.16; }
}

/* =========================================================
   FIX DEFINITIVO â€” NÃƒO REMOVE NADA DO SEU CÃ“DIGO
   ========================================================= */

/* 1ï¸âƒ£ Mata definitivamente o overlay invisÃ­vel */
.hero-overlay {
  display: none !important;
}

/* 2ï¸âƒ£ Garante ordem correta das camadas */
.hero-bg {
  isolation: isolate; /* cria contexto de empilhamento REAL */
}

/* 3ï¸âƒ£ ForÃ§a o FX acima da fumaÃ§a preta */
.hero-fx {
  z-index: 6 !important;
}

/* 4ï¸âƒ£ Rebaixa fumaÃ§as pretas */
.hero-bg::before,
.hero-bg::after {
  z-index: 2 !important;
}

/* 5ï¸âƒ£ Garante texto sempre no topo */
.hero-content {
  z-index: 10 !important;
}

/* =========================================================
   LINHA NEON LARANJA â€” FUNDO DO HERO
   ========================================================= */

.hero-neon-line {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  /* COR NEON */
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,122,0,0.9) 20%,
    rgba(255,122,0,1) 50%,
    rgba(255,122,0,0.9) 80%,
    transparent 100%
  );

  /* GLOW NEON */
  box-shadow:
    0 0 6px rgba(255,122,0,0.8),
    0 0 14px rgba(255,122,0,0.6),
    0 0 28px rgba(255,122,0,0.4);

  z-index: 10; /* acima do fundo, abaixo do texto */
  pointer-events: none;
}

/* =========================================================
   MOBILE â€” UM POUCO MAIS SUAVE
   ========================================================= */
@media (max-width: 768px) {
  .hero-neon-line {
    height: 1.5px;
    box-shadow:
      0 0 4px rgba(255,122,0,0.7),
      0 0 10px rgba(255,122,0,0.5),
      0 0 18px rgba(255,122,0,0.35);
  }
}

/* =========================================================
   PARTÃCULAS NEON DE CRESCIMENTO (MESMA LÃ“GICA)
   ========================================================= */

.hero-rise-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 4;
}

/* =========================================================
   PARTÃCULAS â€” DESKTOP
   Ãrea: esquerda atÃ© 30%
   ========================================================= */
.hero-rise-fx::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;

  width: 30%;
  height: 100%;

  /* PARTÃCULAS GRANDES E NEON */
  background-image:
    radial-gradient(circle, rgba(255,120,0,1) 3px, transparent 6px),
    radial-gradient(circle, rgba(255,160,60,0.9) 2.5px, transparent 6px),
    radial-gradient(circle, rgba(255,90,20,0.8) 2px, transparent 5px);

  background-size:
    80px 80px,
    120px 120px,
    180px 180px;

  /* FADE DE COR (100% â†’ 0%) */
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0) 100%
  );

  /* BRILHO NEON FORTE */
  filter:
    drop-shadow(0 0 6px rgba(255,120,0,1))
    drop-shadow(0 0 16px rgba(255,90,20,0.8))
    drop-shadow(0 0 32px rgba(255,60,0,0.6));

  mix-blend-mode: screen;

  animation: riseParticlesDesktop 18s linear infinite;
}

/* MOVIMENTO â€” SUBINDO */
@keyframes riseParticlesDesktop {
  from {
    background-position:
      0 120%,
      40px 140%,
      80px 160%;
  }
  to {
    background-position:
      0 -40%,
      40px -60%,
      80px -80%;
  }
}

/* =========================================================
   MOBILE
   Ãrea: fundo atÃ© 30% da altura
   ========================================================= */
@media (max-width: 768px) {
  .hero-rise-fx::before {
    left: 0;
    bottom: 0;
    top: auto;

    width: 100%;
    height: 30%;

    /* FADE VERTICAL (100% â†’ 0%) */
    mask-image: linear-gradient(
      to top,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0) 100%
    );

    animation: riseParticlesMobile 10s linear infinite;
  }

  @keyframes riseParticlesMobile {
    from {
      background-position:
        0 140%,
        60px 160%,
        120px 180%;
    }
    to {
      background-position:
        0 -40%,
        60px -60%,
        120px -80%;
    }
  }
}

/* =========================================================
   WRAPPER HERO â€” BASE (MOBILE NÃƒO MUDA)
   ========================================================= */

.hero-desktop-wrapper {
  width: 100%;
}

/* =========================================================
   DESKTOP ONLY
   ========================================================= */
@media (min-width: 1024px) {

  .hero-desktop-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 140px;
    padding-bottom: 80px;
  }

  /* CONTAINER VISUAL */
  .hero-desktop-wrapper .hero-bg {
    width: 1800px;
    max-width: none;
    height: 600px;

    position: relative;
    overflow: hidden;

    border-radius: 24px;

    /* BORDA NEON */
    border: 1px solid rgba(255, 122, 0, 0.7);
    box-shadow:
      0 0 20px rgba(255, 122, 0, 0.35),
      inset 0 0 25px rgba(255, 122, 0, 0.25);
  }
}

/* =========================================================
   AJUSTES HERO DESKTOP (SEM AFETAR MOBILE)
   ========================================================= */
@media (min-width: 1024px) {

  /* HERO NÃƒO PODE TER ALTURA DE TELA INTEIRA */
  .hero {
    min-height: unset;
    height: 600px;
  }

  /* CONTAINER INTERNO */
  .hero-content {
    height: 100%;
    display: flex;
    align-items: center;
  }

  /* TEXTO SEMPRE Ã€ ESQUERDA E ACIMA DE TUDO */
  .hero-text {
    position: relative;
    z-index: 5;
    max-width: 600px;
  }

  /* BLOCO DA IMAGEM */
  .hero-images {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;

    width: 420px;
    height: 420px; /* ðŸ”¥ 1:1 */
  }

  /* IMAGEM 1:1 */
  .hero-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
  }
}

@media (min-width: 1024px) {

  /* Remove imagem antiga de fundo no desktop */
  .hero-bg,
  .hero::before,
  .hero-overlay {
    background-image: none !important;
  }

}

/* =========================================================
   HERO DESKTOP â€” CORREÃ‡ÃƒO ESTRUTURAL DEFINITIVA
   ========================================================= */
@media (min-width: 1024px) {

  /* HERO PRECISA SER REFERÃŠNCIA */
  .hero {
    position: relative;      /* ðŸ”¥ FUNDAMENTAL */
    height: 600px;
    min-height: unset;
  }

  /* CONTEÃšDO PRECISA OCUPAR TODA ALTURA */
  .hero-content {
    position: relative;
    height: 100%;            /* ðŸ”¥ FUNDAMENTAL */
    display: flex;
    align-items: center;     /* centro vertical */
    justify-content: flex-start;
    padding-left: 80px;
  }

  /* TEXTO SEMPRE VISÃVEL E ACIMA */
  .hero-text {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-bottom: 350px;
  }

  /* BLOCO DE IMAGEM 1:1 */
  .hero-images {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);

    width: 420px;
    height: 420px;

    background-image: url("../../images/img2pc.png");
    background-size: cover;
    background-position: center;

    border-radius: 18px;

    z-index: 3;
  }

  /* GARANTE QUE IMAGENS INTERNAS NÃƒO QUEBREM */
  .hero-images img {
    display: none;
  }

}

/* =========================================================
   HERO COLLAGE â€” DESKTOP ONLY
   NÃƒO ALTERA MOBILE
   ========================================================= */

/* Wrapper geral */
/* =========================================================
   HERO COLLAGE â€” POSICIONAMENTO CORRETO (50% â†’ 100%)
   ========================================================= */

@media (min-width: 1024px) {
  .hero-collage-desktop {
    position: absolute;

    /* ancora a partir do centro do hero */
    left: 50%;
    top: 50%;

    transform: translate(0%, -50%);

    width: 820px;
    height: 820px;

    pointer-events: none;
    z-index: 8;
  }
}


/* Base das imagens */
.collage-img {
  position: absolute;
  width: 400px;
  aspect-ratio: 4 / 5;
  object-fit: cover;

  border-radius: 18px;

  /* Borda interna sutil */
  border: 1px solid rgba(255,122,0,0.18);

  /* Sombra real */
  box-shadow:
    0 25px 60px rgba(0,0,0,0.75),
    0 0 45px rgba(255,122,0,0.35);

  /* Glow direcional (lado esquerdo) */
  filter:
    drop-shadow(-15px 0 35px rgba(255,122,0,0.45));

  transition: transform 0.6s ease;
}

/* IMAGEM PRINCIPAL (CENTRO) */
.img-1 {
  top: 160px;
  left: 200px;
  z-index: 3;
  transform: rotate(2deg);
}

/* IMAGEM SUPERIOR */
.img-2 {
  top: 0;
  left: -120px;
  z-index: 2;
  transform: rotate(-8deg);
}

/* IMAGEM INFERIOR */
.img-3 {
  bottom: 0;
  left: 480px;
  z-index: 1;
  transform: rotate(9deg);
}

/* =========================================================
   RESPONSIVO DESKTOP
   ========================================================= */

@media (max-width: 1400px) {
  .hero-collage-desktop {
    right: -80px;
    transform: translateY(-100%) scale(0.9);
  }
}

@media (max-width: 1200px) {
  .hero-collage-desktop {
    right: -40px;
    transform: translateY(-100%) scale(0.8);
  }
}

/* =========================================================
   MOBILE â€” DESATIVADO TOTALMENTE
   ========================================================= */
@media (max-width: 768px) {
  .hero-collage-desktop {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hero-visual {
    position: relative; /* ðŸ”¥ FUNDAMENTAL */
  }
}

@media (min-width: 1024px) {
  .hero-collage-desktop {
    position: absolute;

    right: -140px; /* sai para fora do container */
    top: 50%;
    transform: translateY(-50%);

    width: 820px;
    height: 820px;

    z-index: 20;
    pointer-events: none;
  }
}

/* =========================================================
   HERO COLLAGE â€” ANIMAÃ‡Ã•ES DESKTOP ONLY
   ========================================================= */
@media (min-width: 1024px) {

  .collage-img {
    will-change: transform;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  /* ---------- ENTRADA INDIVIDUAL ---------- */

  .img-1 {
    animation:
      enterImg1 1.6s cubic-bezier(.22,.61,.36,1) forwards,
      floatImg1 10s ease-in-out infinite 1.6s;
  }

  .img-2 {
    animation:
      enterImg2 1.6s cubic-bezier(.22,.61,.36,1) forwards,
      floatImg2 12s ease-in-out infinite 1.6s;
    animation-delay: 0.4s, 2s;
  }

  .img-3 {
    animation:
      enterImg3 1.6s cubic-bezier(.22,.61,.36,1) forwards,
      floatImg3 14s ease-in-out infinite 1.6s;
    animation-delay: 0.8s, 2.4s;
  }

  /* ---------- KEYFRAMES DE ENTRADA ---------- */

  @keyframes enterImg1 {
    from {
      transform: translate(120px, 40px) rotate(2deg);
      opacity: 0;
    }
    to {
      transform: translate(0, 0) rotate(2deg);
      opacity: 1;
    }
  }

  @keyframes enterImg2 {
    from {
      transform: translate(-140px, 30px) rotate(-8deg);
      opacity: 0;
    }
    to {
      transform: translate(0, 0) rotate(-8deg);
      opacity: 1;
    }
  }

  @keyframes enterImg3 {
    from {
      transform: translate(0, -160px) rotate(9deg);
      opacity: 0;
    }
    to {
      transform: translate(0, 0) rotate(9deg);
      opacity: 1;
    }
  }

  /* ---------- MICRO MOVIMENTO ORGÃ‚NICO ---------- */

  @keyframes floatImg1 {
    0%   { transform: translate(0, 0) rotate(2deg); }
    50%  { transform: translate(6px, -8px) rotate(2deg); }
    100% { transform: translate(0, 0) rotate(2deg); }
  }

  @keyframes floatImg2 {
    0%   { transform: translate(0, 0) rotate(-8deg); }
    50%  { transform: translate(-8px, 6px) rotate(-8deg); }
    100% { transform: translate(0, 0) rotate(-8deg); }
  }

  @keyframes floatImg3 {
    0%   { transform: translate(0, 0) rotate(9deg); }
    50%  { transform: translate(5px, 10px) rotate(9deg); }
    100% { transform: translate(0, 0) rotate(9deg); }
  }
}

/* =====================================================
   BLOCO SECUNDÃRIO â€” ABAIXO DO HERO
   ===================================================== */

.bloco-secundario {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 120px 20px;
}

.bloco-secundario-wrapper {
  width: 1800px; /* mesma largura do hero */
  max-width: 100%;
}

.bloco-secundario-conteudo {
  position: relative;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;

  min-height: 520px;
  padding: 0 120px;
}

.bloco-secundario-imagem {
  width: 420px;
  height: 420px;

  overflow: hidden;
  border-radius: 18px;

  /* SOMBRA REAL + NEON SUAVE */
  box-shadow:
    0 25px 60px rgba(0,0,0,0.8),
    0 0 30px rgba(255,122,0,0.25);

  /* micro movimento */
  animation: imagemFlutua 8s ease-in-out infinite;
}

.bloco-secundario-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MICRO MOVIMENTO NEON */
@keyframes imagemFlutua {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.bloco-secundario-texto {
  max-width: 560px;
  margin-left: 120px;
}

.bloco-secundario-texto h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.bloco-secundario-texto p {
  margin: 18px 0 28px;
  opacity: 0.9;
}

/* PULSO NEON SUTIL NO TEXTO */
.bloco-secundario-texto h2 span {
  color: var(--orange);
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%   { text-shadow: 0 0 6px rgba(255,122,0,0.3); }
  50%  { text-shadow: 0 0 14px rgba(255,122,0,0.6); }
  100% { text-shadow: 0 0 6px rgba(255,122,0,0.3); }
}

@media (max-width: 768px) {

  .bloco-secundario {
    padding: 0;
  }

  .bloco-secundario-wrapper {
    width: 100%;
  }

  .bloco-secundario-conteudo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;

    height: calc(100vw * 1.25); /* 4:5 */
    padding: 0;

    overflow: hidden;
  }

  /* IMAGEM COMO FUNDO */
  .bloco-secundario-imagem {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    animation: none;
  }

  .bloco-secundario-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* TEXTO IGUAL AO HERO */
  .bloco-secundario-texto {
    position: relative;
    z-index: 10;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0 20px 40px;

    text-align: center;
  }

  /* OVERLAY + GLOW IGUAL AO HERO */
  .bloco-secundario-conteudo::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
      0deg,
      rgba(0,0,0,0.9) 0%,
      rgba(0,0,0,0.6) 30%,
      rgba(0,0,0,0.25) 45%,
      transparent 55%
    );

    z-index: 5;
  }
}

/* =====================================================
   BLOCO TERCIÃRIO â€” CARD SEM IMAGEM
   ===================================================== */

.bloco-terciario {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 120px 20px 14px;
}

.bloco-terciario-conteudo {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* esquerda no desktop */
  padding: 0 120px;
}

.bloco-terciario .bloco-secundario-texto {
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.bloco-terciario .bloco-secundario-texto .btn {
  margin-top: 20px;
}

.bloco-terciario .bloco-secundario-texto p {
  margin: 14px 0 0;
}

/* IMAGEM DESKTOP â€” VAZA PARA FORA DO CONTAINER */
.bloco-terciario-imagem {
  position: absolute;
  top: 50%;
  right: 18%;
  transform: translate(30%, -50%); /* centraliza na altura do texto */

  width: 620px;
  height: 620px;

  z-index: 1;

  overflow: visible;
}

.bloco-terciario-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  position: relative;
  z-index: 3;
}

/* Halo concentricos + aura pulsante */
.bloco3-halo {
  position: absolute;
  inset: -18%;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle,
      rgba(255,122,0,0.32) 0%,
      rgba(255,122,0,0.14) 35%,
      transparent 65%),
    radial-gradient(circle,
      rgba(255,90,0,0.22) 0%,
      rgba(255,90,0,0.08) 25%,
      transparent 55%);
  filter: blur(14px);
  animation: bloco3Aura 10s ease-in-out infinite;
}

/* Neblina laranja lateral */
.bloco3-fog {
  position: absolute;
  inset: -30% -10% -20% -40%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 70% 55%,
      rgba(255,120,0,0.26),
      rgba(255,120,0,0.08),
      transparent 70%),
    radial-gradient(circle at 85% 30%,
      rgba(255,90,0,0.22),
      rgba(255,90,0,0.06),
      transparent 75%);
  filter: blur(28px);
  opacity: 0.65;
  animation: bloco3Fog 24s ease-in-out infinite alternate;
}

/* Particulas grandes e raras */
.bloco3-particles {
  position: absolute;
  inset: -24% -8% -6% -8%;
  pointer-events: none;
  z-index: 2;
  background-image:
    radial-gradient(circle, rgba(255,140,40,0.9) 4px, transparent 10px),
    radial-gradient(circle, rgba(255,100,20,0.8) 3.5px, transparent 9px),
    radial-gradient(circle, rgba(255,160,60,0.75) 3px, transparent 8px);
  background-size:
    240px 240px,
    200px 200px,
    160px 160px;
  filter:
    drop-shadow(0 0 12px rgba(255,120,0,1))
    drop-shadow(0 0 26px rgba(255,90,20,0.8));
  opacity: 0.7;
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 55%, rgba(0,0,0,0) 75%);
  clip-path: ellipse(70% 70% at 50% 50%);
  animation: bloco3Particles 26s linear infinite;
}

/* Pulsar suave da imagem */
.bloco-terciario-imagem img {
  animation: bloco3ImagePulse 4s ease-in-out infinite;
}

@keyframes bloco3ImagePulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes bloco3Aura {
  0%   { opacity: 0.55; transform: scale(0.98); }
  50%  { opacity: 0.85; transform: scale(1.03); }
  100% { opacity: 0.55; transform: scale(0.98); }
}

@keyframes bloco3Fog {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(22px,-12px) scale(1.03); }
  100% { transform: translate(40px,10px) scale(1.02); }
}

@keyframes bloco3Particles {
  from {
    background-position:
      10% 40%,
      50px 60%,
      90px 80%;
  }
  to {
    background-position:
      10% -30%,
      50px -50%,
      90px -70%;
  }
}

/* garante texto acima da imagem no desktop */
.bloco-terciario .bloco-secundario-texto {
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .bloco-terciario {
    padding: 20px 0 8px;
  }

  .bloco-terciario-conteudo {
    min-height: auto;
    position: relative;
    padding: 0 20px;
    justify-content: center; /* centralizado no mobile */
    flex-direction: column;
    gap: 20px;
  }

  .bloco-terciario .bloco-secundario-texto {
    text-align: center;
  }

  .bloco-terciario .bloco-secundario-texto h2 {
    font-size: clamp(26px, 8vw, 32px);
    overflow-wrap: break-word;
  }

  .bloco-terciario .bloco-secundario-texto p {
    max-width: 330px;
    margin: 12px auto 0;
  }

  .bloco-terciario .bloco-secundario-texto .btn {
    margin-top: 18px;
  }

  /* IMAGEM MOBILE â€” ACIMA DO TEXTO */
  .bloco-terciario-imagem {
    position: relative;
    top: auto;
    right: auto;
    transform: none;

    width: min(92vw, 420px);
    height: auto;
    aspect-ratio: 1 / 1;
    z-index: 5; /* garante brilho acima do bloco 2 no mobile */
  }

  /* remove fumaÃ§a no mobile */
  .bloco3-fog {
    display: none;
  }
}

/* =====================================================
   PARTÃCULAS NEON â€” MAIORES, RARAS E SINCRONIZADAS
   COM O HERO (MOBILE)
   ===================================================== */

@media (max-width: 768px) {

  .bloco-secundario-conteudo::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;
    z-index: 6;

    /* PARTÃCULAS MAIS RARAS E VARIADAS */
    background-image:
      /* GRANDES (raras) */
      radial-gradient(circle, rgba(255,120,0,1) 4px, transparent 10px),

      /* MÃ‰DIAS */
      radial-gradient(circle, rgba(255,160,60,0.9) 3px, transparent 8px),

      /* PEQUENAS */
      radial-gradient(circle, rgba(255,90,20,0.75) 2px, transparent 6px);

    background-size:
      220px 220px,  /* grandes â†’ rarÃ­ssimas */
      160px 160px,  /* mÃ©dias */
      120px 120px;  /* pequenas */

    /* APARECEM SOMENTE NO FUNDO (IGUAL AO HERO) */
    mask-image: linear-gradient(
      to top,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0) 55%
    );

    /* BRILHO NEON CONTROLADO */
    filter:
      drop-shadow(0 0 8px rgba(255,120,0,0.9))
      drop-shadow(0 0 18px rgba(255,90,20,0.6))
      drop-shadow(0 0 32px rgba(255,60,0,0.45));

    /* â±ï¸ MESMO RITMO DO HERO */
    animation: particulasHeroSync 18s linear infinite;
  }

  /* ANIMAÃ‡ÃƒO SINCRONIZADA */
  @keyframes particulasHeroSync {
    from {
      background-position:
        0 140%,
        80px 160%,
        140px 180%;
    }
    to {
      background-position:
        0 -40%,
        80px -60%,
        140px -80%;
    }
  }
}

/* =====================================================
   BLOCO SECUNDÃRIO â€” CONTROLE PC / MOBILE
   ===================================================== */

/* MOBILE por padrÃ£o */
.bloco-secundario-desktop {
  display: none;
}

.bloco-secundario-mobile {
  display: block;
}

/* DESKTOP */
@media (min-width: 1024px) {
  .bloco-secundario-mobile {
    display: none;
  }

  .bloco-secundario-desktop {
    display: block;
  }
}

/* =====================================================
   BLOCO SECUNDÃRIO â€” DESKTOP SEM IMAGEM
   ===================================================== */

.bloco-secundario-conteudo-desktop {
  min-height: 420px;

  display: flex;
  justify-content: flex-end; /* joga para a direita */
  align-items: center;

  padding-right: 120px;
}

.bloco-secundario-desktop .bloco-secundario-texto {
  max-width: 520px;
  margin: 0;
}


/* =====================================================
   BLOCO SECUNDÃRIO DESKTOP â€” BASE
   ===================================================== */

.bloco-secundario-desktop {
  position: relative; /* permite imagem absoluta */
  overflow: visible;  /* deixa a imagem "vazar" */
}

.bloco-secundario-conteudo-desktop {
  position: relative;
  min-height: 480px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding-right: 120px;
}

/* =====================================================
   IMAGEM DESKTOP â€” QUADRADA, CENTRALIZADA E VAZANDO
   ===================================================== */

.bloco-secundario-imagem-desktop {
  position: absolute;

  /* Centraliza verticalmente no bloco */
  top: 20%;
  left: 10%;

  transform: translate(-30%, -50%); 
  /* -30% faz ela vazar para fora, ajuste se quiser */

  width: 520px;
  height: 520px;

  z-index: 1; /* abaixo do texto */
}



/* TEXTO SEMPRE ACIMA DA IMAGEM */
.bloco-secundario-desktop .bloco-secundario-texto {
  position: relative;
  z-index: 5;
  max-width: 520px;
}

/* MOBILE â€” imagem desktop nunca aparece */
}

/* =====================================================
   CAMADA DE PARTÃCULAS â€” SOBRE A IMAGEM (SEM RECORTE)
   ===================================================== */

.bloco-secundario-imagem-desktop::after {
  content: "";
  position: absolute;

  /* ocupa exatamente a Ã¡rea da imagem */
  inset: 0;

  pointer-events: none;
  z-index: 4;

  background-image:
    radial-gradient(circle, rgba(255,120,0,1) 4px, transparent 10px),
    radial-gradient(circle, rgba(255,160,60,0.9) 3px, transparent 8px),
    radial-gradient(circle, rgba(255,90,20,0.75) 2px, transparent 6px);

  background-size:
    220px 220px,
    160px 160px,
    120px 120px;

  /* MESMO fade do mobile */
  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0) 55%
  );

  animation: particulasHeroSync 18s linear infinite;
}

.bloco-secundario-conteudo-desktop {
  position: relative;
}
.bloco-secundario-imagem-desktop {
  position: absolute;
  z-index: 2;
}
/* =====================================================
   PARTÃCULAS DESKTOP â€” IGUAL AO MOBILE
   ===================================================== */

/* =====================================================
   PARTICULAS DESKTOP — AREA CENTRAL (80% DA IMAGEM)
   ===================================================== */
.particulas-desktop {
  position: absolute;

  top: 50%;
  left: 21%;
  transform: translate(-40%, -50%);

  width: 44%;
  height: 140%;

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

  background-image:
    radial-gradient(circle, rgba(255,120,0,1) 4px, transparent 10px),
    radial-gradient(circle, rgba(255,160,60,0.9) 3px, transparent 8px),
    radial-gradient(circle, rgba(255,90,20,0.75) 2px, transparent 6px);

  background-size:
    220px 220px,
    160px 160px,
    120px 120px;

  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0) 55%
  );

  animation: particulasHeroSync 18s linear infinite;
}

@keyframes particulasHeroSync {
  from {
    background-position:
      0 0,
      0 0,
      0 0;
  }
  to {
    background-position:
      0 -1000px,
      0 -800px,
      0 -600px;
  }
}

/* =====================================================
   DESTAQUE DE FUNDO â€” TEXTO DESKTOP (PREMIUM)
   ===================================================== */

@media (min-width: 1024px) {
  .bloco-secundario-texto {
    background: linear-gradient(
      135deg,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.25)
    );

    backdrop-filter: blur(6px);

    padding: 48px 52px;
    border-radius: 18px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  }
}

@media (min-width: 1024px) {
  .bloco-secundario-texto {
    position: relative;
  }

  .bloco-secundario-texto::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 18px;
    padding: 1.5px;

    background: linear-gradient(
      120deg,
      transparent,
      rgba(255,120,0,0.9),
      transparent
    );

    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
  }
}

@media (min-width: 1024px) {
  .bloco-secundario-texto .btn {
    position: relative;
    z-index: 2;
  }

  .bloco-secundario-texto .btn::after {
    content: "";
    position: absolute;
    inset: -200px;

    background: radial-gradient(
      circle,
      rgba(255,120,0,0.35),
      transparent 65%
    );

    z-index: -1;
  }
}

/* =====================================================
   TÃTULO COM DESTAQUE (IGUAL AO HERO)
   ===================================================== */

.titulo-destaque {
  color: #ffffff;
}

/* =====================================================
   BLOCO DE MÃ‰TRICAS
   ===================================================== */

.bloco-metricas {
  width: 100%;
  padding: 80px 0 40px;
}

.bloco-metricas-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;

  padding: 0 24px;
}

/* =====================================================
   CARD DE MÃ‰TRICA â€” VISUAL PREMIUM
   ===================================================== */

.card-metrica {
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25)
  );

  backdrop-filter: blur(6px);

  padding: 42px 32px;
  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.45);

  position: relative;
  text-align: center;
}

/* Card extra mobile do bloco 3 não deve aparecer no desktop */
.card-metrica-mobile-only {
  display: none;
}

.card-metrica::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 18px;
  padding: 1.5px;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,120,0,0.9),
    transparent
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.numero-contador {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  color: #ff7a00;

  display: block;
  margin-bottom: 14px;
}

.card-metrica p {
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.85;
}

/* BLOCO 4 - NOSSOS SERVICOS */
.bloco-servicos-4 {
  padding: 8px 20px 34px;
}

.bloco-servicos-4-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.bloco-servicos-4 h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.bloco-servicos-4 h2 span {
  color: var(--orange);
}

.bloco-servicos-4-desc {
  margin-top: 0;
  opacity: 0.85;
  font-size: clamp(14px, 2vw, 18px);
}

.servicos-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, 520px);
  gap: 24px;
  justify-content: center;
  justify-items: center;
}

.servico-card {
  max-width: 520px;
  width: 520px;
  padding: 44px 40px;
  text-align: left;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.servico-card h3 {
  margin: 0;
  font-size: 24px;
}

.servico-desc {
  margin-top: 12px;
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.4;
}

.servico-bullets {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
  padding: 0;
}

.servico-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  opacity: 0.9;
}

.servico-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
  box-shadow: 0 0 8px rgba(255,122,0,0.8);
}

.servico-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.servico-photo {
  width: 280px;
  height: 280px;
  border-radius: 12px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-photo::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(255,122,0,0.45),
    transparent 70%
  );
  filter: blur(16px);
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.servico-photo::after {
  content: "";
  position: absolute;
  inset: -18px;
  pointer-events: none;
  z-index: 0;

  background-image:
    radial-gradient(circle, rgba(255,120,0,1) 4px, transparent 10px),
    radial-gradient(circle, rgba(255,160,60,0.9) 3px, transparent 8px),
    radial-gradient(circle, rgba(255,90,20,0.75) 2px, transparent 6px);

  background-size:
    220px 220px,
    160px 160px,
    120px 120px;

  filter:
    drop-shadow(0 0 8px rgba(255,120,0,0.9))
    drop-shadow(0 0 18px rgba(255,90,20,0.6))
    drop-shadow(0 0 32px rgba(255,60,0,0.45));

  animation: particulasHeroSync 18s linear infinite;
}

.servico-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.servico-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 22px;
  color: #ff7a00;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,140,40,0.35), transparent 60%),
    linear-gradient(135deg, rgba(255,122,0,0.18), rgba(255,122,0,0.04));
  border: 1px solid rgba(255,122,0,0.45);
  box-shadow:
    inset 0 0 8px rgba(255,122,0,0.2),
    0 0 18px rgba(255,122,0,0.28);
}

.servico-title {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.servico-title h3 {
  margin: 0;
}

@media (max-width: 1023px) {
  .bloco-servicos-4 {
    padding: 6px 16px 22px;
  }

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

  .servico-card {
    width: 100%;
    max-width: 520px;
    padding: 28px 24px;
    text-align: left;
  }

  .servico-photo {
    width: min(80vw, 240px);
    height: min(80vw, 240px);
    margin: 0 auto;
    display: block;
    background: none;
    border: none;
    box-shadow: none;
  }

  .servico-desc {
    font-size: 13px;
  }

  .servico-bullets li {
    font-size: 12px;
  }

  .servico-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .servico-title {
    margin-top: 14px;
    gap: 10px;
    justify-content: flex-start;
  }
}

/* ÍCONE DE RELÓGIO (CARD MOBILE DO BLOCO 3) */
.card-metrica-icon-clock {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.clock-face {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,122,0,0.85);
  position: relative;
  box-shadow:
    0 0 18px rgba(255,122,0,0.35),
    inset 0 0 12px rgba(255,122,0,0.25);
}

.clock-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  background: #ff7a00;
  transform-origin: bottom center;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255,122,0,0.8);
}

.clock-hand.hour {
  height: 16px;
  transform: translateX(-50%) rotate(35deg);
}

.clock-hand.minute {
  height: 22px;
  transform: translateX(-50%) rotate(110deg);
}

.clock-center {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7a00;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(255,122,0,0.9);
}
/* =====================================================
   METRICAS — MOBILE COMPACTO (2x2)
   ===================================================== */

@media (max-width: 1023px) {
  .bloco-metricas-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .bloco-metricas .card-metrica {
    padding: 22px 26px;
    border-radius: 14px;
    overflow: hidden;
  }

  .bloco-metricas .numero-contador {
    font-size: 23px;
    margin-bottom: 6px;
    line-height: 1.1;
    display: inline-flex;
    padding: 0 4px;
    max-width: 100%;
  }

  .bloco-metricas .card-metrica p {
    font-size: 13px;
    line-height: 1.3;
  }
}

/* =====================================================
   CONTADOR COM + PADRONIZADO
   ===================================================== */

.numero-contador {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  color: #ff7a00;
}

.numero-contador::before {
  content: "+";
  font-weight: 900;
  color: #ff7a00;
}

/* =====================================================
   MOBILE — CORRECAO DEFINITIVA DOS CARDS (SEM CORTE)
   ===================================================== */

@media (max-width: 1023px) {
  .bloco-metricas {
    width: 100%;
    padding: 32px 0 24px !important;
  }

  .bloco-metricas-container {
    max-width: 360px !important;
    width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 12px !important;
    padding-right: 12px !important;

    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;

    box-sizing: border-box !important;
  }

  .card-metrica {
    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .card-metrica::before {
    inset: 1px !important;
    padding: 1px !important;
  }

  /* garante números dentro do card */
  .bloco-metricas .card-metrica {
    overflow: hidden !important;
  }
}

/* =====================================================
   DESKTOP — MARGIN-BOTTOM SEM AFETAR MOBILE
   ===================================================== */

@media (min-width: 1024px) {
  .bloco-metricas {
    margin-bottom: 70px;
    display: flow-root;
  }
}

/* =====================================================
   BLOCO 3 — CARD MOBILE E ORDEM
   ===================================================== */

@media (max-width: 1023px) {
  .bloco-metrica-mobile-extra .card-metrica-mobile-only {
    display: block;
    width: min(92vw, 360px);
  }

  .bloco3-mobile-card {
    display: flex !important;
    align-items: center;
    gap: 14px;
    width: min(92vw, 320px);
    order: 0;
    padding: 18px 16px;
    text-align: left;
  }

  .bloco-terciario-imagem {
    order: 1;
  }

  .bloco-terciario .bloco-secundario-texto {
    order: 2;
  }

  .bloco3-mobile-card .card-metrica-texto-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .bloco3-mobile-card .card-metrica-icon-clock {
    margin: 0;
    flex: 0 0 auto;
  }

  .bloco3-mobile-card .clock-face {
    width: 56px;
    height: 56px;
  }

  .bloco3-mobile-card .card-metrica-texto-topo {
    font-size: 16px;
  }

  .bloco3-mobile-card .card-metrica-texto-destaque {
    font-size: 26px;
    color: #ff7a00;
    font-weight: 800;
  }
}

/* =====================================================
   BLOCOS FINAIS DA LANDING
   Continuação visual após "Artes e criativos"
   ===================================================== */

.bloco-final {
  position: relative;
  width: 100%;
  padding: 56px 20px;
  overflow: hidden;
}

.bloco-final + .bloco-final {
  padding-top: 30px;
}

.bloco-por-que,
.bloco-metodo {
  padding-bottom: 28px;
}

.bloco-conversao,
.bloco-segmentos,
.bloco-prova,
.bloco-faq {
  padding-bottom: 36px;
}

.bloco-final::before {
  content: "";
  position: absolute;
  inset: 8% -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(255,122,0,0.16), transparent 42%),
    radial-gradient(circle at 78% 62%, rgba(255,100,0,0.12), transparent 44%);
  filter: blur(18px);
  opacity: 0.9;
}

.bloco-final-wrapper,
.conversion-panel,
.segmentos-wrapper,
.faq-wrapper,
.final-cta-box {
  position: relative;
  z-index: 2;
}

.bloco-final-head {
  max-width: 840px;
  margin: 0 auto 38px;
  text-align: center;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #ff7a00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bloco-final h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.bloco-final h2 span,
.final-card i,
.metodo-item > span,
.flow-step span,
.depo-card strong,
.faq-copy .mini-label {
  color: var(--orange);
}

.bloco-final-head p,
.conversion-copy p,
.segmentos-copy p,
.final-cta-box p {
  max-width: 760px;
  margin: 16px auto 0;
  opacity: 0.88;
  font-size: clamp(14px, 2vw, 17px);
}

.final-grid {
  display: grid;
  gap: 24px;
}

.final-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.final-card {
  min-height: 260px;
  padding: 34px 28px;
  text-align: left;
}

.final-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  font-size: 22px;
  background: rgba(255,122,0,0.12);
  border: 1px solid rgba(255,122,0,0.35);
  box-shadow: 0 0 24px rgba(255,122,0,0.22);
}

.final-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.bloco-conversao {
  padding-top: 72px;
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.62), rgba(0,0,0,0.28)),
    radial-gradient(circle at 70% 50%, rgba(255,122,0,0.16), transparent 48%);
  border: 1px solid rgba(255,122,0,0.38);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}

.conversion-flow {
  position: relative;
  display: block;
  min-height: 460px;
  padding: 12px 0;
  isolation: isolate;
}

.conversion-flow::before {
  content: "";
  position: absolute;
  inset: 5% 0 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,122,0,0.28), transparent 24%),
    radial-gradient(circle at 83% 34%, rgba(255,122,0,0.22), transparent 26%),
    radial-gradient(circle at 24% 68%, rgba(255,122,0,0.2), transparent 28%),
    radial-gradient(circle at 78% 88%, rgba(255,122,0,0.24), transparent 28%);
  filter: blur(16px);
  opacity: 0.78;
  animation: flowPulse 4.8s ease-in-out infinite alternate;
}

.flow-route {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-route-glow,
.flow-route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-route-glow {
  stroke: #ff7a00;
  stroke-width: 14;
  filter: url(#flowGlow);
  opacity: 0.74;
}

.flow-route-line {
  stroke: url(#flowGradient);
  stroke-width: 6;
  filter: url(#flowGlow);
}

.flow-step {
  position: absolute;
  z-index: 2;
  display: block;
  width: min(360px, 72%);
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: translateY(-50%);
}

.flow-step-1 {
  left: 11.3%;
  top: 16.5%;
}

.flow-step-2 {
  left: 26.5%;
  right: auto;
  top: 40%;
  text-align: left;
}

.flow-step-3 {
  left: 12.6%;
  top: 65.2%;
}

.flow-step-4 {
  left: 27.8%;
  right: auto;
  top: 86.5%;
  text-align: left;
}

.flow-step span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50%;
  color: #0b0500;
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffb066, #ff7a00 46%, #ff5f00);
  border: 2px solid rgba(255,190,120,0.95);
  box-shadow:
    0 0 18px rgba(255,122,0,0.85),
    0 0 42px rgba(255,122,0,0.42),
    inset 0 1px 8px rgba(255,255,255,0.32);
  text-shadow: none;
}

.flow-step div {
  position: relative;
  z-index: 3;
  margin-left: 86px;
  padding: 4px 0 4px 14px;
  border-left: 2px solid rgba(255,122,0,0.62);
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.flow-step-2 div,
.flow-step-4 div {
  padding: 4px 0 4px 14px;
  border-left: 2px solid rgba(255,122,0,0.62);
  border-right: 0;
}

.flow-step strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 21px;
  line-height: 1.1;
  text-shadow: 0 0 16px rgba(255,122,0,0.25);
}

.flow-step p {
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.88;
  max-width: 210px;
}

@keyframes flowPulse {
  from {
    opacity: 0.55;
    transform: scale(0.98);
  }
  to {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

.metodo-lista {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.metodo-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  border: 1px solid rgba(255,122,0,0.26);
  box-shadow: 0 16px 46px rgba(0,0,0,0.35);
}

.metodo-item > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  border: 1px solid rgba(255,122,0,0.55);
  box-shadow: inset 0 0 14px rgba(255,122,0,0.18), 0 0 20px rgba(255,122,0,0.18);
}

.metodo-item h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.bloco-segmentos {
  padding-top: 72px;
}

.segmentos-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
}

.segmentos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.segmentos-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255,122,0,0.16), rgba(0,0,0,0.42));
  border: 1px solid rgba(255,122,0,0.32);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

.depo-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  gap: 16px;
  overflow: hidden;
}

.depo-card p {
  font-size: 16px;
  line-height: 1.55;
}

.depo-card strong {
  margin-top: 22px;
  font-size: 15px;
}

.proof-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -10px auto 28px;
  max-width: 980px;
}

.proof-pill {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,122,0,0.12), rgba(0,0,0,0.44)),
    radial-gradient(circle at 18% 20%, rgba(255,122,0,0.18), transparent 42%);
  border: 1px solid rgba(255,122,0,0.28);
  box-shadow: 0 14px 38px rgba(0,0,0,0.26);
}

.proof-pill i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ff7a00;
  background: rgba(255,122,0,0.12);
  border: 1px solid rgba(255,122,0,0.38);
  box-shadow: 0 0 22px rgba(255,122,0,0.22);
}

.proof-pill strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.proof-pill span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.35;
}

.depo-top {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.depo-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0a0500;
  background: linear-gradient(135deg, #ffb066, #ff7a00 52%, #ff5f00);
  border: 2px solid rgba(255,190,120,0.85);
  box-shadow: 0 0 24px rgba(255,122,0,0.45);
}

.depo-avatar i {
  font-size: 20px;
}

.depo-top strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.depo-top small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.35;
}

.depo-stars {
  display: flex;
  gap: 4px;
  color: #ff7a00;
  text-shadow: 0 0 14px rgba(255,122,0,0.58);
}

.depo-stars i {
  font-size: 13px;
}

.depo-result {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.45;
}

.depo-result p {
  margin: 0;
}

.depo-result p + p {
  margin-top: 5px;
}

.depo-result span {
  color: #ff7a00;
  font-weight: 900;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 160px;
}

.faq-copy .btn {
  margin-top: 26px;
}

.faq-lista {
  display: grid;
  gap: 12px;
}

.faq-lista details {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,0,0,0.58), rgba(0,0,0,0.24));
  border: 1px solid rgba(255,122,0,0.24);
  box-shadow: 0 14px 38px rgba(0,0,0,0.28);
  overflow: hidden;
}

.faq-lista summary {
  cursor: pointer;
  padding: 22px;
  color: #fff;
  font-weight: 900;
}

.faq-lista p {
  padding: 0 22px 22px;
  opacity: 0.85;
}

.final-conversao {
  padding: 40px 20px 56px;
}

.final-cta-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,122,0,0.18), rgba(0,0,0,0.58)),
    radial-gradient(circle at center, rgba(255,122,0,0.22), transparent 58%);
  border: 1px solid rgba(255,122,0,0.46);
  box-shadow: 0 0 42px rgba(255,122,0,0.18), 0 24px 72px rgba(0,0,0,0.55);
}

.final-cta-box .btn {
  margin-top: 28px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  position: relative;
  padding: 34px 20px 24px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.94), rgba(0,0,0,1)),
    radial-gradient(circle at top, rgba(255,122,0,0.14), transparent 48%);
  border-top: 1px solid rgba(255,122,0,0.18);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,122,0,0.05), transparent 40%),
    radial-gradient(circle at 82% 0%, rgba(255,122,0,0.08), transparent 30%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(210px, 0.75fr) minmax(320px, 1.15fr);
  gap: 18px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255,122,0,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
}

.footer-logo-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.footer-logo-row img {
  width: 58px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255,122,0,0.22));
}

.footer-logo-row strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.15;
}

.footer-logo-row span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.64);
  font-size: 13px;
  line-height: 1.35;
}

.footer-brand p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  font-size: 14px;
}

.footer-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255,122,0,0.28);
  border-radius: 8px;
  background: rgba(255,122,0,0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.footer-cta i {
  color: var(--orange);
  font-size: 12px;
}

.footer-cta:hover {
  border-color: rgba(255,122,0,0.5);
  background: rgba(255,122,0,0.14);
  color: #fff;
}

.footer-links,
.footer-data {
  display: grid;
  gap: 10px;
}

.footer-links strong,
.footer-data strong {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav-list {
  display: grid;
  gap: 9px;
}

.footer-nav-list a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(255,122,0,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-nav-list i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,122,0,0.09);
  color: var(--orange);
}

.footer-nav-list a:hover {
  border-color: rgba(255,122,0,0.38);
  background: rgba(255,122,0,0.08);
  color: #fff;
}

.footer-info-list {
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-info-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(255,122,0,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.45;
}

.footer-info-list i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,122,0,0.1);
  color: var(--orange);
  box-shadow: 0 0 18px rgba(255,122,0,0.12);
}

.footer-info-list b {
  color: #fff;
  font-weight: 900;
}

.footer-info-list a {
  color: inherit;
  text-decoration: none;
}

.footer-info-list a:hover {
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(255,122,0,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom a:hover {
  border-color: rgba(255,122,0,0.38);
  background: rgba(255,122,0,0.08);
  color: #ffb066;
}

@media (max-width: 1023px) {
  .bloco-final {
    padding: 44px 16px;
  }

  .bloco-final + .bloco-final {
    padding-top: 26px;
  }

  .bloco-por-que,
  .bloco-metodo {
    padding-bottom: 24px;
  }

  .bloco-conversao,
  .bloco-segmentos,
  .bloco-prova,
  .bloco-faq {
    padding-bottom: 30px;
  }

  .final-conversao {
    padding: 32px 16px 44px;
  }

  .final-grid-3,
  .conversion-panel,
  .segmentos-wrapper,
  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .conversion-panel,
  .final-cta-box {
    padding: 28px 18px;
  }

  .conversion-flow {
    min-height: 420px;
  }

  .faq-copy {
    position: relative;
    top: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proof-summary {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-bottom: 22px;
  }
}

@media (max-width: 768px) {
  .bloco-final {
    padding: 34px 14px;
  }

  .bloco-final + .bloco-final {
    padding-top: 22px;
  }

  .bloco-por-que,
  .bloco-metodo {
    padding-bottom: 22px;
  }

  .bloco-conversao,
  .bloco-segmentos,
  .bloco-prova,
  .bloco-faq {
    padding-bottom: 28px;
  }

  .final-conversao {
    padding: 28px 14px 36px;
  }

  .bloco-final-head {
    margin-bottom: 26px;
  }

  .final-card,
  .metodo-item,
  .depo-card {
    padding: 22px 18px;
  }

  .proof-pill {
    min-height: auto;
    padding: 14px;
  }

  .depo-card {
    gap: 14px;
  }

  .depo-top {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .depo-avatar {
    width: 48px;
    height: 48px;
  }

  .depo-card p {
    font-size: 15px;
  }

  .site-footer {
    padding: 28px 14px 96px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .conversion-flow {
    display: block;
    min-height: 430px;
    padding: 18px 0 8px;
  }

  .conversion-flow::before {
    inset: 0;
    width: auto;
    border-radius: 0;
    background:
      radial-gradient(circle at 10% 16%, rgba(255,122,0,0.18), transparent 22%),
      radial-gradient(circle at 88% 36%, rgba(255,122,0,0.16), transparent 24%),
      radial-gradient(circle at 14% 62%, rgba(255,122,0,0.18), transparent 24%),
      radial-gradient(circle at 86% 86%, rgba(255,122,0,0.16), transparent 22%);
    filter: blur(12px);
    opacity: 0.8;
    box-shadow: none;
    animation: flowPulse 5s ease-in-out infinite alternate;
  }

  .flow-route {
    display: block;
  }

  .conversion-flow .flow-step {
    position: absolute;
    width: min(310px, 78%);
    max-width: 78%;
    display: block;
    padding: 0;
    transform: translateY(-50%);
    text-align: left;
  }

  .conversion-flow .flow-step-1 {
    left: 11.3%;
    top: 16.5%;
  }

  .conversion-flow .flow-step-2,
  .conversion-flow .flow-step-4 {
    left: 26.5%;
    right: auto;
    width: min(310px, 70%);
    margin-left: 0;
    text-align: left;
  }

  .conversion-flow .flow-step-2 {
    top: 40%;
  }

  .conversion-flow .flow-step-3 {
    left: 12.6%;
    top: 65.2%;
  }

  .conversion-flow .flow-step-4 {
    left: 27.8%;
    top: 86.5%;
  }

  .conversion-flow .flow-step span {
    width: 56px;
    height: 56px;
    flex: none;
    font-size: 16px;
  }

  .conversion-flow .flow-step div,
  .conversion-flow .flow-step-3 div {
    margin-left: 72px;
    padding: 3px 0 3px 12px;
    border-left: 2px solid rgba(255,122,0,0.62);
    border-right: 0;
  }

  .conversion-flow .flow-step-2 div,
  .conversion-flow .flow-step-4 div {
    margin-left: 72px;
    padding: 3px 0 3px 12px;
    border-left: 2px solid rgba(255,122,0,0.62);
    border-right: 0;
  }

  .conversion-flow .flow-step strong {
    font-size: 19px;
  }

  .metodo-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .segmentos-tags span {
    flex: 1 1 calc(50% - 12px);
    justify-content: center;
    text-align: center;
    font-size: 13px;
  }

  .faq-lista summary {
    padding: 18px;
  }

  .faq-lista p {
    padding: 0 18px 18px;
  }
}

/* =====================================================
   CTA + POPUP DE AGENDAMENTO
   Mantém o visual neon original e adiciona conversão.
   ===================================================== */

button,
textarea {
  font-family: 'Inter', sans-serif;
}

.btn.lead-open,
.lead-submit {
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  line-height: 1.18;
  text-align: center;
  white-space: normal;
}

.btn.lead-open {
  min-height: 46px;
  padding: 12px 22px;
  max-width: 100%;
}

.btn.center {
  display: table;
  margin: 34px auto 0;
}

.final-conversao {
  position: relative;
  overflow: hidden;
}

.final-conversao::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,122,0,0.28), transparent 52%),
    radial-gradient(circle at 70% 45%, rgba(255,90,0,0.16), transparent 48%);
  filter: blur(22px);
  pointer-events: none;
  z-index: -1;
}

.final-conversao .text {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: clamp(12px, 3vw, 24px);
  overflow: hidden;
  overscroll-behavior: contain;
  box-sizing: border-box;
}

.lead-modal.active {
  display: flex;
}

body.lead-modal-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.lead-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  touch-action: none;
}

.lead-modal-box {
  position: relative;
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 18px;
  box-sizing: border-box;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.88), rgba(18,18,18,0.88)),
    radial-gradient(circle at top left, rgba(255,122,0,0.24), transparent 48%);
  border: 1px solid rgba(255,122,0,0.55);
  box-shadow:
    0 0 42px rgba(255,122,0,0.28),
    0 30px 90px rgba(0,0,0,0.75);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.lead-modal-box::before {
  display: none;
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,122,0,0.4);
  border-radius: 10px;
  color: #ff7a00;
  background: rgba(0,0,0,0.65);
  cursor: pointer;
}

.lead-modal-head {
  margin-bottom: 24px;
  padding-right: 54px;
}

.lead-modal-head span {
  display: inline-block;
  margin-bottom: 8px;
  color: #ff7a00;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.lead-modal-head h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
}

.lead-modal-head p {
  margin-top: 12px;
  opacity: 0.86;
  max-width: 100%;
  overflow-wrap: break-word;
}

.lead-form {
  clear: both;
  display: grid;
  gap: 18px;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label,
.lead-socials-title,
.lead-socials legend {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.lead-wide {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 14px;
  color: #fff;
  font-size: 16px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  outline: none;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(255,122,0,0.82);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.16);
}

.lead-socials {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lead-socials-title,
.lead-socials legend {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.lead-socials-title small,
.lead-socials small,
.lead-social-count.valid {
  color: #ff7a00;
}

.lead-social-count,
.lead-error {
  font-size: 14px;
}

.lead-error {
  min-height: 20px;
  color: #ffb199;
  font-weight: 800;
}

.lead-submit {
  width: 100%;
  min-height: 54px;
  font-weight: 900;
}

.lead-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  filter: grayscale(0.15);
}

@media (max-width: 768px) {
  .btn.lead-open {
    width: min(100%, 340px);
    padding: 12px 14px;
    font-size: 12px;
  }

  .buttons .btn.lead-open {
    width: min(100%, 300px);
  }

  .lead-modal {
    align-items: center;
    justify-content: center;
    padding: 12px !important;
    box-sizing: border-box;
  }

  .lead-modal-box {
    width: 90vw !important;
    max-width: 620px !important;
    max-height: calc(100dvh - 24px);
    padding: 22px 14px 18px;
    border-radius: 16px;
    overflow-x: hidden;
  }

  .lead-modal-head {
    padding-right: 42px;
    margin-bottom: 18px;
  }

  .lead-modal-head h2 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .lead-modal-head p {
    font-size: 14px;
    line-height: 1.45;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lead-form {
    gap: 14px;
  }

  .lead-socials {
    padding: 0;
  }

  .lead-form label,
  .lead-socials-title,
  .lead-socials legend {
    font-size: 13px;
  }

  .lead-submit {
    min-height: 52px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
  }
}

/* Reforço geral de responsividade mobile */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  video {
    max-width: 100%;
    height: auto;
  }

  .hero-content {
    overflow: hidden;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-text {
    width: 100%;
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-text h1 {
    font-size: clamp(28px, 8vw, 36px);
    overflow-wrap: break-word;
  }

  .hero-text p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .buttons {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .buttons .btn {
    width: 100%;
  }

  .servico-card,
  .final-card,
  .metodo-item,
  .depo-card,
  .flow-step,
  .faq-lista details,
  .conversion-panel,
  .final-cta-box,
  .lead-modal-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .bloco-final h2,
  .conversion-copy h2,
  .segmentos-copy h2,
  .faq-copy h2,
  .final-cta-box h2 {
    overflow-wrap: break-word;
  }

  .btn.center,
  .bloco-final .btn,
  .final-cta-box .btn {
    width: min(100%, 340px);
  }
}

@media (max-width: 768px) {
  .conversion-flow .flow-step {
    width: min(310px, 78%) !important;
    max-width: 78% !important;
  }

  .conversion-flow .flow-step-1 {
    left: 11.3% !important;
    right: auto !important;
  }

  .conversion-flow .flow-step-2 {
    left: 26.5% !important;
    right: auto !important;
    width: min(310px, 70%) !important;
    max-width: 70% !important;
  }

  .conversion-flow .flow-step-3 {
    left: 12.6% !important;
    right: auto !important;
  }

  .conversion-flow .flow-step-4 {
    left: 27.8% !important;
    right: auto !important;
    width: min(310px, 70%) !important;
    max-width: 70% !important;
  }
}

@media (max-width: 380px) {
  .hero-text {
    max-width: 318px !important;
  }

  .btn.lead-open,
  .lead-submit {
    font-size: 11px;
  }

  .lead-modal-box {
    width: 90vw !important;
    max-width: 340px !important;
    max-height: calc(100dvh - 20px);
    padding: 20px 12px 16px;
  }
}

@media (max-width: 480px) {
  .buttons {
    max-width: 300px !important;
  }

  .bloco-metricas-container {
    max-width: 320px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .bloco-metricas .card-metrica {
    padding: 18px 10px !important;
    min-width: 0 !important;
  }

  .bloco-metricas .numero-contador {
    font-size: clamp(20px, 6vw, 25px) !important;
    gap: 2px !important;
    white-space: nowrap !important;
  }

  .bloco-metricas .card-metrica p {
    font-size: 12px !important;
  }

  .lead-modal {
    justify-content: flex-start !important;
    padding-left: 24px !important;
    padding-right: 0 !important;
  }

  .lead-modal-box {
    width: 340px !important;
    max-width: calc(100% - 36px) !important;
    margin: 0 !important;
  }
}

/* =====================================================
   PAGINA DE OBRIGADO
   ===================================================== */

.thank-logo-link {
  text-decoration: none;
}

.thank-page {
  position: relative;
  min-height: calc(100dvh - 140px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 20px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.76) 46%, rgba(0,0,0,0.42) 100%),
    url("../../images/img2pc.png") center / cover no-repeat;
}

.thank-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 48%, rgba(255,122,0,0.28), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.86));
  z-index: 1;
}

.thank-ambient {
  position: absolute;
  inset: 12% 48% 10% 4%;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(255,122,0,0.2);
  filter: blur(72px);
  animation: thankGlow 7s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes thankGlow {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.65; }
  to { transform: translate3d(42px, -18px, 0) scale(1.08); opacity: 0.95; }
}

.thank-content {
  position: relative;
  z-index: 3;
  max-width: 940px;
  margin: 0 auto;
}

.thank-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255,122,0,0.38);
  border-radius: 8px;
  color: #ff9a3c;
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 22px rgba(255,122,0,0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thank-content h1 {
  max-width: 760px;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 900;
}

.thank-copy {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255,255,255,0.84);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.thank-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.thank-whatsapp-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: 0;
  color: #07140b;
  background: linear-gradient(135deg, #25d366, #6ff0a1);
  box-shadow: 0 0 28px rgba(37,211,102,0.38);
}

.thank-whatsapp-btn i {
  font-size: 22px;
}

.thank-secondary-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  color: rgba(255,255,255,0.84);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,122,0,0.5);
}

.thank-secondary-link:hover {
  color: #fff;
}

.thank-steps {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.thank-steps div {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(255,122,0,0.22);
  border-radius: 8px;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
}

.thank-steps i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ff7a00;
  background: rgba(255,122,0,0.12);
}

.thank-steps strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.thank-steps span {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .thank-page {
    min-height: calc(100dvh - 110px);
    align-items: flex-start;
    padding: 54px 14px 88px;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.9) 52%, rgba(0,0,0,0.98) 100%),
      url("../../images/img4mob.png") center top / cover no-repeat;
  }

  .thank-ambient {
    inset: 36% 8% 22% 8%;
    filter: blur(54px);
  }

  .thank-content {
    max-width: 340px;
    margin-top: 18px;
  }

  .thank-content h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .thank-copy {
    font-size: 15px;
  }

  .thank-actions {
    align-items: stretch;
  }

  .thank-whatsapp-btn,
  .thank-secondary-link {
    width: 100%;
    text-align: center;
  }

  .thank-secondary-link {
    justify-content: center;
  }

  .thank-steps {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
}
