@font-face {
  font-family: 'Breathing';
  src: url('../assets/fonts/Breathing.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --navy: #1B2A6B;
  --navy-dark: #06091e;
  --orange: #E87A00;
  --gold: #F4A728;
  --gold-light: #FFD07A;
  --green-vivid: #39FF8A;
}

* { box-sizing: border-box; }

/* <picture> não deve participar do layout — só serve pra escolher a fonte
   da imagem (WebP com fallback). Sem isso, o <picture> vira o item real de
   flex/grid no lugar do <img>, quebrando centralização e larguras em %. */
picture { display: contents; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--navy-dark);
  color: #f0e8d8;
  font-family: 'Inter', sans-serif;
  cursor: url("../assets/images/cursor-sol.png") 18 18, auto;
}

/* Fundo mesh gradient fixo — cobre toda a viewport durante o scroll */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #06091e;
  background-image:
    /* Grain: profundidade e textura */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    /* Grid de pontos: toque tecnológico */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Ccircle cx='1' cy='1' r='0.7' fill='%236b8cff' fill-opacity='0.13'/%3E%3C/svg%3E"),
    /* Orb 1 — azul royal vibrante, canto superior direito */
    radial-gradient(ellipse 65% 50% at 92% 8%,   #2563eb38 0%, transparent 70%),
    /* Orb 2 — índigo, canto superior esquerdo */
    radial-gradient(ellipse 55% 45% at -5% 18%,  #4338ca28 0%, transparent 65%),
    /* Orb 3 — ciano tech, canto inferior esquerdo */
    radial-gradient(ellipse 55% 48% at 6% 92%,   #0284c720 0%, transparent 65%),
    /* Orb 4 — azul profundo, canto inferior direito */
    radial-gradient(ellipse 65% 55% at 100% 94%, #1e40af2a 0%, transparent 65%),
    /* Orb 5 — brilho central suave */
    radial-gradient(ellipse 80% 40% at 50% 52%,  #1d4ed812 0%, transparent 60%),
    /* Base: gradiente direcional */
    linear-gradient(155deg, #0d1b5e 0%, #06091e 38%, #08102a 72%, #04071a 100%);
}

h1, h2, h3, .serif { font-family: 'Plus Jakarta Sans', sans-serif; }

/* Glow pulsante no logo */
@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 20px #E87A00bb); }
  50%       { filter: drop-shadow(0 0 36px #F4A728dd); }
}
.logo-glow { animation: glow-pulse 3.5s ease-in-out infinite; }

/* Gradiente dourado no texto */
.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--orange) 60%, #c45a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Degradê azul royal — mesma paleta institucional usada em .text-gradient
   no tema claro (body.light), aqui disponível como classe própria. */
.text-gradient-blue {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Título "Crie com a Cultura Orange" (portfólio) — mesmas paletas de
   .text-gradient-blue/.text-gradient, mas com um reflexo de brilho que
   varre o texto continuamente. Classe própria (não mexe nos outros usos
   de .text-gradient/.text-gradient-blue pelo site). Desktop e mobile. */
.portfolio-title-shine {
  line-height: 1.25;
  padding-bottom: 0.08em;
  background-size: 260% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: portfolioTitleShine 4s linear infinite;
}
.portfolio-title-shine--blue {
  background-image: linear-gradient(
    100deg,
    #1e3a8a 0%, #2563eb 30%, #1d4ed8 42%,
    #8fb4ff 50%,
    #1d4ed8 58%, #2563eb 70%, #1e3a8a 100%
  );
}
.portfolio-title-shine--orange {
  background-image: linear-gradient(
    100deg,
    var(--gold-light) 0%, var(--orange) 30%, #c45a00 42%,
    #ffd98a 50%,
    #c45a00 58%, var(--orange) 70%, var(--gold-light) 100%
  );
}
@keyframes portfolioTitleShine {
  0% { background-position: 0% 0%; }
  100% { background-position: -260% 0%; }
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-title-shine { animation: none; background-position: 0% 0%; }
}

/* Linha separadora com estrela */
.sun-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--orange);
  opacity: 0.5;
}
.sun-divider::before,
.sun-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
}

/* Cards */
.card-glow {
  border: 1px solid #E87A0030;
  background: linear-gradient(135deg, #1B2A6B55, #0D1A45aa);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card-glow:hover {
  border-color: #E87A0066;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #E87A0022;
}


/* Scroll-reveal: oculto por padrão, animado via JS */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Botões */
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #0D1A45;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px #E87A0055;
}

.btn-outline {
  border: 1.5px solid var(--orange);
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--orange);
  color: #0D1A45;
}

/* Botão "liquid glass" — pill de vidro fosco translúcido */
.btn-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  color: var(--green-vivid);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: btnGlassGlow 2.4s ease-in-out infinite;
}
.btn-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% -20%, rgba(255, 255, 255, 0.35), transparent 60%);
  pointer-events: none;
}
.btn-glass:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(57, 255, 138, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
@keyframes btnGlassGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(13, 26, 69, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 0 8px rgba(57, 255, 138, 0.15);
  }
  50% {
    box-shadow: 0 4px 24px rgba(13, 26, 69, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 22px rgba(57, 255, 138, 0.55);
  }
}

/* Nav */
nav a { transition: color 0.2s; }
nav a:hover { color: var(--gold); }

/* Menu mobile */
#mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid #E87A0015;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu a:not(.btn-primary) {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--orange) 60%, #c45a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Inputs */
input, textarea {
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 2px #E87A0033;
}

/* Estrela decorativa */
.star::before { content: '✦'; }

/* ─── Urgência Badge ─── */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid #22c55e44;
  background: #22c55e0d;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #86efac;
  margin-top: 1.5rem;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 #22c55e66; }
  50%       { box-shadow: 0 0 0 6px transparent; }
}

/* ─── Pricing Cards ─── */
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card .price-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-card .price-period {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.15rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #ffffff08;
  color: #c8b88a;
}
.price-card ul li::before {
  content: '✦';
  color: var(--orange);
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 0.2rem;
}

.card-featured {
  border-color: var(--gold) !important;
  background: linear-gradient(135deg, #1B2A6B55, #0D1A45bb) !important;
  box-shadow: 0 0 48px #F4A72820, 0 0 0 1px #F4A72840 !important;
  transform: scale(1.04);
  z-index: 1;
}
.card-featured:hover {
  transform: scale(1.07) translateY(-4px) !important;
}
.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #0D1A45;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ─── Testimonials ─── */
.testimonial-card { display: flex; flex-direction: column; gap: 1rem; }
.testimonial-quote { font-size: 3rem; line-height: 1; color: var(--orange); opacity: 0.25; font-family: Georgia, serif; }
.testimonial-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; }
.testimonial-text  { font-size: 0.9rem; line-height: 1.7; color: #c8b88a; flex: 1; }
.testimonial-author strong { color: var(--gold-light); font-size: 0.9rem; }
.testimonial-author span   { font-size: 0.75rem; color: #8899bb; }

/* ─── Depoimentos em "roleta" (coverflow): todos os cards existem no DOM,
   arrastar ou trocar automaticamente só anima posição/escala/opacidade de cada um ─── */
.depoimento-card { display: flex; flex-direction: column; gap: 0.5rem; }
.depoimento-header { display: flex; align-items: center; gap: 0.6rem; }
.depoimento-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}
.depoimento-avatar img { width: 100%; height: 100%; object-fit: cover; }
.depoimento-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
}
.depoimento-brand {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #c8b88a;
}
.depoimento-bubble {
  position: relative;
  background: #ffffff;
  border: 1px solid #E87A0033;
  border-radius: 0 1rem 1rem 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  margin-left: 0.4rem;
}
.depoimento-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -0.5rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.6rem 0.6rem 0;
  border-color: transparent #ffffff transparent transparent;
}
.depoimento-text { font-size: 0.9rem; line-height: 1.65; color: var(--orange); font-style: normal; }

.depoimento-print {
  border-radius: 1rem;
  overflow: hidden;
  margin-left: 0.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  border: 1px solid #E87A0033;
}
.depoimento-print img { display: block; width: 100%; height: auto; }

.depoimentos-stack {
  position: relative;
  max-width: 900px;
  height: 340px;
  margin: 0 auto;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.depoimentos-stack:active { cursor: grabbing; }
.depoimento-card--cf {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  width: 300px;
  margin-left: -150px;
}
.depoimento-card--cf img { pointer-events: none; -webkit-user-drag: none; }
.depoimento-card--cf .depoimento-text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .depoimentos-stack { height: 300px; }
  .depoimento-card--cf { width: 230px; margin-left: -115px; }
}

/* ─── WhatsApp Floating Button ─── */
#whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px #25d36655;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
#whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px #25d36688;
}
#whatsapp-btn svg { width: 22px; height: 22px; }

/* ─── Portfólio: leque de cards estático (CSS puro, sem JS) — inspirado
   em recent.design/i/33m0b2z-aave-cards. Cada card é posicionado com um
   deslocamento (--fx/--fy) e rotação (--fr) fixos via custom properties;
   no hover/foco, zera a rotação, sobe e cresce um pouco. ─── */
.portfolio-fan {
  position: relative;
  max-width: 1100px;
  height: 550px;
  margin: -70px auto 0;
}

/* O "slot" de cada card: posição/rotação no leque, SEMPRE fixas (nunca
   mudam no hover). É esse elemento que escuta o hover — como sua área
   nunca muda de tamanho/lugar, não tem risco de "loop" de hover entre
   cards vizinhos (o bug de antes: o próprio card que disparava o hover
   também se movia/crescia, tirando-se de baixo do cursor). */
.portfolio-fan-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 276px;
  height: 372px;
  margin: -204px 0 0 -138px;
  cursor: default;
  transform: translate(var(--fx, 0), var(--fy, 0)) rotate(var(--fr, 0deg));
}
.portfolio-fan-card:hover,
.portfolio-fan-card:focus-visible {
  z-index: 20 !important;
}
.portfolio-fan-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 1.5rem; }

/* O visual: quem realmente aparece endireitado/centralizado/maior no
   hover. Cancela a posição/rotação do "slot" (multiplicando por -1) e
   soma o salto pro centro — assim o efeito parece sair do baralho e ir
   pro meio, mas quem detecta o mouse (o .portfolio-fan-card) nunca mexe. */
.portfolio-fan-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(6, 9, 30, 0.18), 0 4px 12px rgba(6, 9, 30, 0.08);
  transform: translate(0, 0) rotate(0deg) scale(1);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, opacity 0.4s ease;
}
.portfolio-fan-card:hover .portfolio-fan-inner,
.portfolio-fan-card:focus-visible .portfolio-fan-inner {
  /* Sobe e endireita no próprio lugar (sem pular pro centro do leque) —
     mais previsível e fiel à referência original. */
  transform: translate(0, -30px) rotate(calc(var(--fr, 0deg) * -1)) scale(1.08);
  box-shadow: 0 32px 70px rgba(6, 9, 30, 0.28), 0 10px 26px rgba(232, 122, 0, 0.18);
}

/* Moldura de carta de oráculo/tarô: arte gerada por IA (filete ornamentado
   dourado/laranja com florões nos cantos), aplicada como overlay sobre o
   card. Reforça a leitura "arcano numerológico" em vez de baralho comum. */
.portfolio-fan-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/card-frame-oraculo.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 3;
  opacity: 0.22;
  transition: opacity 0.4s ease, filter 0.4s ease;
}
.portfolio-fan-card:hover .portfolio-fan-inner::before,
.portfolio-fan-card:focus-visible .portfolio-fan-inner::before {
  opacity: 0.55;
  filter: brightness(1.35) drop-shadow(0 0 6px rgba(232, 122, 0, 0.4));
}

/* Reflexo: um brilho diagonal "varre" a moldura no hover, recortado pela
   própria arte da moldura via mask (só reflete onde tem traço dourado). */
.portfolio-fan-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("../assets/images/card-frame-oraculo.png");
  mask-image: url("../assets/images/card-frame-oraculo.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 1) 45%, rgba(255, 214, 140, 1) 55%, transparent 85%);
  background-size: 320% 320%;
  background-position: -160% -160%;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease, background-position 2.2s ease-in-out;
}
.portfolio-fan-card:hover .portfolio-fan-inner::after,
.portfolio-fan-card:focus-visible .portfolio-fan-inner::after {
  opacity: 1;
  background-position: 160% 160%;
}

.portfolio-fan-1 { --fx: -390px; --fy: 12px;  --fr: -12deg; z-index: 1; }
.portfolio-fan-2 { --fx: -234px; --fy: 5px;   --fr: -7deg;  z-index: 2; }
.portfolio-fan-3 { --fx: -78px;  --fy: -5px;  --fr: -2deg;  z-index: 3; }
.portfolio-fan-4 { --fx: 78px;   --fy: -5px;  --fr: 3deg;   z-index: 4; }
.portfolio-fan-5 { --fx: 234px;  --fy: 5px;   --fr: 8deg;   z-index: 5; }
.portfolio-fan-6 { --fx: 390px;  --fy: 12px;  --fr: 13deg;  z-index: 6; }

.portfolio-fan-art {
  position: relative;
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  overflow: hidden;
  /* Textura de papelão de carta (branco perolado) — grão de fibra visível
     em vez do vidro liso anterior, com leve vinheta pra dar corpo/relevo
     de material físico, não de card digital plano. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='2.2' intercept='-0.1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E"),
    radial-gradient(130% 150% at 50% 0%, rgba(255, 255, 255, 0.85) 0%, rgba(250, 246, 236, 0.35) 55%, rgba(228, 213, 182, 0.16) 100%),
    linear-gradient(160deg, #ffffff 0%, #fbf7ee 55%, #f2e9d6 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 0 36px rgba(139, 94, 20, 0.14);
}
/* Marca d'água temática (arcano "O Sol") — praticamente invisível em
   repouso, só se revela de leve quando o mouse encosta no card. */
.portfolio-fan-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/card-watermark-sol.webp");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  filter: grayscale(85%) contrast(0.9);
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 0;
  pointer-events: none;
}
.portfolio-fan-card:hover .portfolio-fan-art::before,
.portfolio-fan-card:focus-visible .portfolio-fan-art::before {
  opacity: 0.06;
}
.portfolio-fan-art img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 78%;
  max-height: 64%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 6px 16px rgba(6, 9, 30, 0.2));
}

/* Legenda com o nome da marca — aparece no hover (desktop) ou quando a
   carta é ativada por toque (mobile), mesmo padrão do botão "Ver". */
.portfolio-fan-brand {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translate(-50%, -6px);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 1024px) {
  .portfolio-fan { height: 400px; }
  .portfolio-fan-card { width: 190px; height: 264px; margin: -142px 0 0 -95px; }
  .portfolio-fan-1 { --fx: -195px; }
  .portfolio-fan-2 { --fx: -117px; }
  .portfolio-fan-3 { --fx: -39px; }
  .portfolio-fan-4 { --fx: 39px; }
  .portfolio-fan-5 { --fx: 117px; }
  .portfolio-fan-6 { --fx: 195px; }
}

/* Botão "Ver" (mobile): some por padrão em qualquer largura — só é exibido
   dentro do breakpoint mobile abaixo, nunca no desktop. */
.portfolio-ver-btn { display: none; }
.portfolio-hint { display: none; }

/* Mobile: mesmo mecanismo de "roda" com arraste contínuo dos Depoimentos
   (ver #depoimentosStack em js/main.js) — controlado via JS, que aplica
   transform inline em cada .portfolio-fan-card. Toque na carta central
   ativa os efeitos (brilho/marca d'água, via JS) e revela o botão "Ver". */
@media (max-width: 640px) {
  .portfolio-fan {
    position: relative;
    height: 340px;
    width: 100%;
    margin: 0 auto;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    padding: 0;
  }
  .portfolio-fan:active { cursor: grabbing; }

  .portfolio-fan-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px;
    height: 290px;
    margin: -145px 0 0 -105px;
    cursor: pointer;
  }

  /* Isola o contexto de composição da carta. */
  .portfolio-fan-inner {
    isolation: isolate;
  }

  /* mix-blend-mode da marca d'água vazava/renderizava errado em iOS/Safari
     em elementos sobrepostos e transformados — troca por composição normal
     no mobile, que nunca "olha" pro que está atrás. */
  .portfolio-fan-art::before {
    mix-blend-mode: normal;
    opacity: 0;
  }
  .portfolio-fan-card.is-activated .portfolio-fan-art::before {
    opacity: 0.14;
  }

  /* Anula o "lift" de hover do desktop (usa --fr do leque desktop, que
     não faz sentido aqui) — no mobile o posicionamento é 100% via JS,
     no .portfolio-fan-card, não no .portfolio-fan-inner. */
  .portfolio-fan-card:hover .portfolio-fan-inner,
  .portfolio-fan-card:focus-visible .portfolio-fan-inner {
    transform: none !important;
  }

  /* Estado ativado por toque — espelha os efeitos de :hover do desktop
     (moldura, brilho e marca d'água), já que mobile não tem hover. */
  .portfolio-fan-card.is-activated .portfolio-fan-inner::before {
    opacity: 0.55;
    filter: brightness(1.35) drop-shadow(0 0 6px rgba(232, 122, 0, 0.4));
  }
  .portfolio-fan-card.is-activated .portfolio-fan-inner::after {
    opacity: 1;
    background-position: 160% 160%;
  }
  /* Botão "Ver": fica abaixo da carta, some/aparece junto do estado ativado. */
  .portfolio-ver-btn {
    display: block;
    position: absolute;
    left: 50%;
    top: calc(100% + 40px);
    transform: translate(-50%, -6px);
    padding: 0.5rem 1.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #0D1A45;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .portfolio-fan-card.is-activated .portfolio-ver-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .portfolio-fan-card.is-activated .portfolio-fan-brand {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-fan-inner { transition: box-shadow 0.2s ease, opacity 0.2s ease !important; }
}

/* ─── Desktop apenas (>640px): badge "Escolha uma carta" sempre visível
   abaixo do leque, com efeito de brilho percorrendo o texto. O botão "Ver"
   foi removido do desktop a pedido — .portfolio-ver-btn segue com
   display:none (regra global), sem override aqui, então só existe no
   mobile. ─── */
@media (min-width: 641px) {
  .portfolio-fan-card:hover .portfolio-fan-brand,
  .portfolio-fan-card:focus-visible .portfolio-fan-brand {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Badge "Escolha uma carta" — mesmo visual em qualquer tela (antes só
   existia no desktop; no mobile substituía por uma dica animada com ícone
   de mão, removida a pedido). */
.portfolio-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  /* .portfolio-fan tem altura fixa maior que a área realmente ocupada
     pelas cartas rotacionadas (sobra espaço no fundo do container) —
     por isso o ajuste negativo, pra ficar logo abaixo da carta, não do
     fim da caixa. */
  top: calc(100% - 65px);
  transform: translateX(-50%);
  pointer-events: auto;
  cursor: default;
  padding: 0.65rem 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  box-shadow: 0 4px 20px rgba(13, 26, 69, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: box-shadow 0.45s ease, border-color 0.45s ease, transform 0.3s ease;
}
.portfolio-hint:hover {
  border-color: rgba(232, 122, 0, 0.55);
  transform: translateX(-50%) translateY(-2px);
  box-shadow:
    0 4px 20px rgba(13, 26, 69, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 18px 2px rgba(196, 90, 0, 0.5),
    0 0 42px 10px rgba(232, 122, 0, 0.35),
    0 0 72px 18px rgba(244, 167, 40, 0.25);
}
.portfolio-hint-icon { display: none; }
.portfolio-hint-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  background-image: linear-gradient(
    100deg,
    #1e3a8a 0%,
    #2563eb 35%,
    #cfe0ff 50%,
    #2563eb 65%,
    #1e3a8a 100%
  );
  background-size: 220% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: portfolioHintShine 3.2s linear infinite;
}
@keyframes portfolioHintShine {
  0% { background-position: 0% 0%; }
  100% { background-position: -220% 0%; }
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-hint-icon { animation: none; }
  .portfolio-hint-text { animation: none; background-position: 0% 0%; }
}
/* O cálculo padrão de .portfolio-hint (top: calc(100% - 65px)) foi
   calibrado pra proporção do leque no desktop — no mobile (fan menor)
   ele sobrepõe a carta, então ajusta só o offset vertical aqui. */
@media (max-width: 640px) {
  .portfolio-hint {
    top: calc(100% - 15px);
  }
}

/* ─── Lightbox do portfólio: abre o post da marca por cima da própria
   página (sem navegar). Suporta mini-galeria com setas/pontos. ─── */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.portfolio-lightbox.is-open { opacity: 1; pointer-events: auto; }
.portfolio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 30, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.portfolio-lightbox-content {
  position: relative;
  max-width: min(90vw, 480px);
  max-height: 82vh;
  display: flex;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.portfolio-lightbox.is-open .portfolio-lightbox-content { transform: scale(1); }
.portfolio-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.portfolio-lightbox-img.is-loading { opacity: 0.15; }
.portfolio-lightbox-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
.portfolio-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 14, 30, 0.55);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-lightbox-prev { left: 10px; }
.portfolio-lightbox-next { right: 10px; }
.portfolio-lightbox-content.is-single .portfolio-lightbox-arrow,
.portfolio-lightbox-content.is-single .portfolio-lightbox-dots {
  display: none;
}
.portfolio-lightbox-dots {
  position: absolute;
  bottom: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.portfolio-lightbox-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease;
}
.portfolio-lightbox-dot.is-active { background: var(--orange); }

/* ─── Quem Somos: carta com flip (Paulo ↔ Caio) — mesma linguagem visual
   do leque do portfólio (moldura de oráculo + papelão texturizado), com
   giro 3D real no clique/toque. Placeholders de foto até termos as fotos
   reais dos fundadores. ─── */
.quemsomos-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
/* Seta indicando a carta logo abaixo — balança suavemente pra baixo. */
/* Seta de "role para baixo" ao fim de cada seção */
.hero-split, #quem-somos, #portfolio, #processo, #precos, #depoimentos {
  position: relative;
}
.section-scroll-arrow {
  position: absolute;
  left: 0;
  right: 0;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  bottom: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--orange);
  overflow: hidden;
  animation:
    quemsomosHintBounce 1.6s ease-in-out infinite,
    scrollArrowGlassGlow 2.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.section-scroll-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% -20%, rgba(255, 255, 255, 0.35), transparent 60%);
  pointer-events: none;
}
/* Hero mantém overflow:hidden (efeitos de fundo), então sua seta não pode
   ficar centralizada na borda como as demais — sem isso, seria cortada. */
.hero-split .section-scroll-arrow {
  bottom: 1.25rem;
}
@keyframes scrollArrowGlassGlow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(6, 9, 30, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 0 8px rgba(232, 122, 0, 0.18);
  }
  50% {
    box-shadow: 0 4px 20px rgba(6, 9, 30, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 18px rgba(244, 167, 40, 0.5);
  }
}
.section-scroll-arrow svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.quemsomos-card {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  width: 260px;
  height: 350px;
  perspective: 1600px;
  cursor: pointer;
  /* Flutua continuamente — animação no botão externo, independente do
     giro/lift do .quemsomos-card-inner (evita os dois transforms brigarem). */
  animation: quemsomosFloat 4.5s ease-in-out infinite;
}
@keyframes quemsomosFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.quemsomos-card:focus-visible .quemsomos-card-inner {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
.quemsomos-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  box-shadow: 0 20px 45px rgba(6, 9, 30, 0.18), 0 4px 12px rgba(6, 9, 30, 0.08);
}
.quemsomos-card:hover .quemsomos-card-inner {
  transform: translateY(-6px);
}
.quemsomos-card.is-flipped .quemsomos-card-inner {
  transform: rotateY(180deg);
}
.quemsomos-card.is-flipped:hover .quemsomos-card-inner {
  transform: rotateY(180deg) translateY(-6px);
}
.quemsomos-card-face {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.quemsomos-card-back {
  transform: rotateY(180deg);
}
.quemsomos-card-frame {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* mesmo papelão texturizado dos cards do portfólio */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='2.2' intercept='-0.1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E"),
    radial-gradient(130% 150% at 50% 0%, rgba(255, 255, 255, 0.85) 0%, rgba(250, 246, 236, 0.35) 55%, rgba(228, 213, 182, 0.16) 100%),
    linear-gradient(160deg, #ffffff 0%, #fbf7ee 55%, #f2e9d6 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 0 36px rgba(139, 94, 20, 0.14);
}
/* mesma moldura de oráculo do portfólio, por cima da textura */
.quemsomos-card-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/card-frame-oraculo.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

/* Avatar placeholder (sem foto real ainda) — círculo com inicial, cores
   diferentes pra cada fundador (laranja/azul), ecoando o título do site. */
.quemsomos-avatar {
  position: relative;
  z-index: 1;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #fff;
}
.quemsomos-avatar--orange {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 10px 26px rgba(232, 122, 0, 0.35);
}
.quemsomos-avatar--blue {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35);
}
/* Foto real (medalhão): anel colorido fazendo as vezes da moldura,
   substitui o fundo sólido + letra do placeholder. Cada fundador tem seu
   próprio enquadramento (object-position), já que as fotos são diferentes. */
.quemsomos-avatar--photo {
  background: none;
  object-fit: cover;
}
.quemsomos-avatar--photo.quemsomos-avatar--orange {
  object-position: 50% 32%;
  box-shadow: 0 0 0 4px #fffdf6, 0 0 0 7px var(--orange), 0 10px 26px rgba(232, 122, 0, 0.35);
}
.quemsomos-avatar--photo.quemsomos-avatar--blue {
  object-position: 50% 20%;
  box-shadow: 0 0 0 4px #fffdf6, 0 0 0 7px #2563eb, 0 10px 26px rgba(37, 99, 235, 0.35);
}

.quemsomos-info {
  max-width: 30rem;
  transition: opacity 0.3s ease;
}
.quemsomos-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0d1b3e;
}
.quemsomos-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-top: 0.15rem;
  margin-bottom: 0.6rem;
}
.quemsomos-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 640px) {
  .quemsomos-card { width: 210px; height: 290px; }
  .quemsomos-avatar { font-size: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .quemsomos-card-inner { transition: none; }
  .quemsomos-card:hover .quemsomos-card-inner { transform: none; }
  .quemsomos-card { animation: none; }
}

/* ─── Animated Background Shapes ─── */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Blobs orgânicos */
.shape {
  position: absolute;
  filter: blur(30px);
  opacity: 0;
  will-change: transform;
  transition: opacity 1.2s ease;
}
body.light .shape { opacity: 1; }

.shape-1 {
  width: 520px; height: 520px;
  top: -160px; left: -120px;
  border-radius: 62% 38% 55% 45% / 45% 58% 42% 55%;
  background: radial-gradient(circle at 40% 40%, rgba(37,99,235,0.2) 0%, rgba(99,102,241,0.07) 55%, transparent 80%);
  animation: blob-1 24s ease-in-out infinite;
}
.shape-2 {
  width: 420px; height: 460px;
  top: 18%; right: -90px;
  border-radius: 44% 56% 62% 38% / 56% 38% 62% 44%;
  background: radial-gradient(circle at 60% 40%, rgba(109,40,217,0.11) 0%, rgba(37,99,235,0.06) 55%, transparent 80%);
  animation: blob-2 30s ease-in-out infinite;
}
.shape-3 {
  width: 480px; height: 420px;
  bottom: -120px; right: 8%;
  border-radius: 56% 44% 38% 62% / 38% 62% 56% 44%;
  background: radial-gradient(circle at 50% 60%, rgba(59,130,246,0.18) 0%, rgba(37,99,235,0.06) 55%, transparent 80%);
  animation: blob-3 27s ease-in-out infinite;
}
.shape-4 {
  width: 320px; height: 320px;
  bottom: 22%; left: 4%;
  border-radius: 38% 62% 56% 44% / 62% 44% 56% 38%;
  background: radial-gradient(circle at 50% 50%, rgba(245,158,11,0.12) 0%, rgba(232,122,0,0.05) 55%, transparent 80%);
  animation: blob-4 21s ease-in-out infinite;
}
.shape-5 {
  width: 360px; height: 360px;
  top: 42%; left: 38%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.09) 0%, transparent 70%);
  animation: blob-5 35s ease-in-out infinite;
}

@keyframes blob-1 {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  33%      { transform: translate(55px,35px) rotate(18deg) scale(1.05); }
  66%      { transform: translate(-25px,65px) rotate(-12deg) scale(0.96); }
}
@keyframes blob-2 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  40%      { transform: translate(-45px,45px) rotate(-15deg) scale(1.07); }
  75%      { transform: translate(25px,-35px) rotate(10deg) scale(0.95); }
}
@keyframes blob-3 {
  0%,100% { transform: translate(0,0) scale(1); }
  35%      { transform: translate(-35px,-45px) scale(1.08); }
  70%      { transform: translate(45px,25px) scale(0.94); }
}
@keyframes blob-4 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(35px,-55px) rotate(22deg) scale(1.09); }
}
@keyframes blob-5 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 1; }
  30%      { transform: translate(70px,-45px) scale(1.12); opacity: 0.7; }
  65%      { transform: translate(-45px,35px) scale(0.88); opacity: 0.9; }
}

/* Geometria sagrada — SVGs */
.geo {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: transform;
}
body.light .geo { opacity: 1; }

/* Círculos concêntricos (radar) — canto superior direito */
.geo-1 {
  width: 380px; height: 380px;
  top: 4%; right: 5%;
  animation: spin-cw 65s linear infinite;
}
/* Triângulo com círculo (símbolo alquímico) — canto inferior esquerdo */
.geo-2 {
  width: 300px; height: 300px;
  bottom: 6%; left: 3%;
  animation: spin-ccw 48s linear infinite;
}
/* Pentágono com círculo (numerologia 5) — lado esquerdo */
.geo-3 {
  width: 240px; height: 240px;
  top: 30%; left: -2%;
  animation: spin-cw 90s linear infinite;
}
/* Semente da Vida (Flower of Life parcial) — canto inferior direito */
.geo-4 {
  width: 280px; height: 280px;
  bottom: 12%; right: 10%;
  animation: spin-ccw 72s linear infinite, geo-pulse 10s ease-in-out infinite;
}

@keyframes spin-cw    { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes spin-ccw   { from { transform: rotate(0deg); }   to { transform: rotate(-360deg); } }
@keyframes geo-pulse  {
  0%,100% { transform: rotate(0deg) scale(1); }
  50%      { transform: rotate(-180deg) scale(1.06); }
}

/* Respeita preferências de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .shape, .geo { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════
   TEMA CLARO
   Para reverter ao tema escuro: remova class="light" do <body>
   ═══════════════════════════════════════════════════════ */

body.light {
  background-color: #faf7f0;
  color: #0d1b3e;
}

/* Fundo mesh cream com orbs azuis suaves */
body.light::before {
  background-color: #faf7f0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Ccircle cx='1' cy='1' r='0.7' fill='%231e3a8a' fill-opacity='0.07'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 65% 50% at 92% 8%,   #2563eb0f 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at -5% 18%,  #6366f10a 0%, transparent 65%),
    radial-gradient(ellipse 55% 48% at 6% 92%,   #0ea5e908 0%, transparent 65%),
    radial-gradient(ellipse 65% 55% at 100% 94%, #3b82f60c 0%, transparent 65%),
    radial-gradient(ellipse 80% 40% at 50% 52%,  #dbeafe18 0%, transparent 60%),
    linear-gradient(155deg, #f0eee8 0%, #faf7f0 38%, #ede9e0 72%, #f7f4ed 100%);
}

/* Headings */
body.light h1, body.light h2, body.light h3 { color: #0d1b3e; }

/* Gradiente de texto — azul no tema claro */
body.light .text-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Textos secundários hardcoded */
body.light [style*="color: #c8b88a"]    { color: #475569 !important; }
body.light [style*="color: #6b7c9e"]    { color: #64748b !important; }
body.light [style*="color: #8899bb"]    { color: #64748b !important; }
body.light [style*="color: var(--gold)"]{ color: #92400e !important; }

/* Strong tags dentro de parágrafos */
body.light strong[style*="color: var(--gold)"] { color: #1e40af !important; }

/* Divisor — linhas azuis */
body.light .sun-divider { color: #2563eb; opacity: 0.6; }
body.light .sun-divider::before,
body.light .sun-divider::after {
  background: linear-gradient(to right, transparent, #2563eb, transparent);
}

/* Cards */
body.light .card-glow {
  border: 1px solid #dbeafe;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(37, 99, 235, 0.06);
}
body.light .card-glow:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}

/* Card destaque (preços) — azul */
body.light .card-featured {
  border-color: #2563eb !important;
  background: rgba(239, 246, 255, 0.85) !important;
  box-shadow: 0 0 48px rgba(37,99,235,0.14), 0 0 0 1px rgba(37,99,235,0.3) !important;
}
body.light .badge-popular {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
}

/* Botões primários — azul */
body.light .btn-primary {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #fff;
}
body.light .btn-primary:hover { box-shadow: 0 8px 32px rgba(37,99,235,0.35); }

/* Botões outline — azul */
body.light .btn-outline {
  border-color: #2563eb;
  color: #1e40af;
}
body.light .btn-outline:hover { background: #2563eb; color: #fff; }

/* Header */
body.light header {
  background: linear-gradient(180deg, rgba(250,247,240,0.96) 0%, transparent 100%) !important;
  border-bottom: 1px solid rgba(37,99,235,0.08);
}
body.light #mobile-menu {
  background: rgba(250, 247, 240, 0.97) !important;
}
body.light nav a       { color: #334155 !important; }
body.light nav a:hover { color: #1e40af !important; }

/* Logo glow — azul no tema claro */
body.light .logo-glow { animation: glow-pulse-light 3.5s ease-in-out infinite; }
@keyframes glow-pulse-light {
  0%, 100% { filter: drop-shadow(0 0 16px #2563eb66); }
  50%       { filter: drop-shadow(0 0 28px #3b82f688); }
}

/* Seção serviços — barra azul suave */
body.light #servicos { background: linear-gradient(180deg, transparent, #dbeafe33, transparent) !important; }

/* Urgência — azul */
body.light .urgency-badge {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1e40af;
}
body.light .urgency-dot {
  background: #2563eb;
  animation: pulse-dot-light 2s ease-in-out infinite;
}
@keyframes pulse-dot-light {
  0%, 100% { box-shadow: 0 0 0 0 #2563eb55; }
  50%       { box-shadow: 0 0 0 6px transparent; }
}

/* Itens do pricing */
body.light .price-card ul li {
  color: #475569;
  border-bottom-color: #e2e8f0;
}
body.light .price-card ul li::before { color: #2563eb; }
body.light .price-period { color: #64748b; }

/* Depoimentos */
body.light .testimonial-quote { color: #2563eb; }
body.light .testimonial-stars { color: #d97706; }
body.light .testimonial-text  { color: #475569; }
body.light .testimonial-author strong { color: #1e3a8a; }
body.light .testimonial-author span   { color: #64748b; }

body.light .depoimento-bubble { box-shadow: 0 8px 20px rgba(13, 30, 60, 0.14); }
body.light .depoimento-avatar { background: rgba(255, 255, 255, 0.6); }

/* Portfólio: roleta 3D — o card já é um creme aveludado por padrão
   (fundo neutro atrás das logos transparentes), sem variação por tema. */

/* Seção contato */
body.light #contato { background: rgba(239, 246, 255, 0.7) !important; }
body.light input,
body.light textarea {
  background: rgba(255,255,255,0.9) !important;
  border-color: #cbd5e1 !important;
  color: #0d1b3e !important;
}
body.light input:focus,
body.light textarea:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
body.light input::placeholder,
body.light textarea::placeholder { color: #94a3b8; }

/* Footer */
body.light footer {
  border-color: rgba(37,99,235,0.15) !important;
  color: #64748b !important;
  background: rgba(250,247,240,0.8);
}


/* ═══════════════════════════════════════════════
   PICPAY-STYLE REDESIGN
   ═══════════════════════════════════════════════ */

/* ─── Sticky Navbar (always solid in light; solid-on-scroll in dark) ─── */
.site-header {
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(6, 9, 30, 0.97) !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 24px rgba(0,0,0,0.4) !important;
}
body.light .site-header {
  background: rgba(250, 247, 240, 0.98) !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 0 rgba(37,99,235,0.08), 0 2px 20px rgba(0,0,0,0.05) !important;
}
body.light #mobile-menu {
  background: rgba(250, 247, 240, 0.99) !important;
}

/* ─── Hero Split Layout ─── */
.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  color: #c8b88a;
}
body.light .hero-sub { color: #475569; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── Hero Visual (right side) ─── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  will-change: transform;
}
.hero-ring-1 {
  inset: 0;
  border-width: 1px;
  border-color: rgba(232, 122, 0, 0.22);
  animation: spin-cw 42s linear infinite;
}
.hero-ring-1::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  top: -4px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--orange);
}
.hero-ring-2 {
  inset: 40px;
  border-width: 1px;
  border-color: rgba(37, 99, 235, 0.18);
  animation: spin-ccw 28s linear infinite;
}
.hero-ring-3 {
  inset: 80px;
  border-width: 1px;
  border-color: rgba(244, 167, 40, 0.28);
  animation: spin-cw 18s linear infinite;
}
.hero-ring-3::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  bottom: -3px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold);
}
.hero-logo-center {
  width: 170px;
  height: 170px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-text { align-items: center; }
  .hero-label::before { display: none; }
  .hero-sub { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-visual-wrap { width: 260px; height: 260px; }
  .hero-logo-center { width: 110px; height: 110px; }
}

/* ─── Section alternating tint (light theme) ─── */
body.light .section-alt {
  background: rgba(239, 246, 255, 0.55);
}

/* ─── Full-width dark CTA section (like PicPay contrast sections) ─── */
.cta-full-dark {
  background: linear-gradient(150deg, #060c25 0%, #0d1b5e 50%, #060c25 100%);
  color: #f0e8d8;
  position: relative;
  overflow: hidden;
}
.cta-full-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 65% at 80% 50%, rgba(37, 99, 235, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 12% 50%, rgba(232, 122, 0, 0.14) 0%, transparent 60%);
  pointer-events: none;
}
.cta-full-dark .text-gradient {
  background: linear-gradient(135deg, #FFD07A 0%, #E87A00 55%, #F4A728 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-full-dark .btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold)) !important;
  color: #060c25 !important;
  font-weight: 700;
}
.cta-full-dark .urgency-badge {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.08);
  color: #86efac;
}
.cta-full-dark .urgency-dot { background: #22c55e; box-shadow: 0 0 8px #22c55e88; }
.cta-full-dark [style*="color: #c8b88a"] { color: #c8d8f8 !important; }

/* ─── Contato split layout ─── */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.contato-info .logo-contato {
  width: 52px; height: 52px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.contato-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.contato-info .contato-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #c8b88a;
  margin-bottom: 2rem;
}
body.light .contato-info .contato-desc { color: #475569; }
.contato-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.contato-social a {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(232,122,0,0.4);
  font-size: 0.8rem;
  color: var(--gold);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.contato-social a:hover {
  background: var(--orange);
  color: #060c25;
  border-color: var(--orange);
}
body.light .contato-social a {
  border-color: rgba(37,99,235,0.35);
  color: #1e40af;
}
body.light .contato-social a:hover {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

@media (max-width: 768px) {
  .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── Light theme: contato section background override ─── */
body.light #contato {
  background: rgba(245, 248, 255, 0.6) !important;
}

/* ─── Light theme: preserve dark colors INSIDE .cta-full-dark ─── */
body.light .cta-full-dark [style*="color: #c8b88a"] { color: #c8d8f8 !important; }
body.light .cta-full-dark .urgency-dot { background: #22c55e !important; box-shadow: 0 0 8px #22c55e88 !important; }
body.light .cta-full-dark .urgency-badge {
  border-color: rgba(34,197,94,0.3) !important;
  background: rgba(34,197,94,0.08) !important;
  color: #86efac !important;
}


/* ═══════════════════════════════════════════════
   HERO: IMAGEM DE FUNDO FULL-BLEED
   ═══════════════════════════════════════════════ */

.hero-split {
  background-image: url('../assets/images/hero-bg.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Overlay gradiente: escuro à esquerda (texto legível), transparente à direita */
.hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    108deg,
    rgba(6, 9, 30, 0.88) 0%,
    rgba(6, 9, 30, 0.64) 35%,
    rgba(6, 9, 30, 0.20) 62%,
    transparent 100%
  );
}

/* Conteúdo acima do overlay, alinhado à esquerda */
.hero-split .hero-inner {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  max-width: 620px;
  margin-left: clamp(1.5rem, 7vw, 9rem);
  margin-right: auto;
}

/* Texto sempre legível sobre imagem escura */
.hero-split .hero-sub { color: rgba(240, 232, 216, 0.88) !important; }

/* Tema claro: overlay mais escuro para garantir legibilidade */
body.light .hero-split::before {
  background: linear-gradient(
    108deg,
    rgba(6, 9, 30, 0.82) 0%,
    rgba(6, 9, 30, 0.55) 38%,
    rgba(6, 9, 30, 0.12) 62%,
    transparent 100%
  );
}
/* Gradiente laranja/ouro no h1 (mais legível sobre fundo escuro) */
body.light .hero-split .hero-h1 {
  background: linear-gradient(135deg, #FFD07A 0%, #E87A00 55%, #F4A728 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.light .hero-split .hero-sub { color: rgba(240, 232, 216, 0.88) !important; }
body.light .hero-split .urgency-badge {
  border-color: rgba(34,197,94,0.35) !important;
  background: rgba(34,197,94,0.1) !important;
  color: #86efac !important;
}
body.light .hero-split .urgency-dot { background: #22c55e !important; }
body.light .hero-split .btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold)) !important;
  color: #06091e !important;
}
body.light .hero-split .btn-outline {
  border-color: rgba(255,255,255,0.6) !important;
  color: rgba(255,255,255,0.9) !important;
}

@media (max-width: 768px) {
  .hero-split .hero-inner {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }
  .hero-split .hero-text { align-items: center; }
  .hero-split .hero-label::before { display: none; }
}


/* ═══════════════════════════════════════════════
   HERO — SISTEMA SOLAR
   ═══════════════════════════════════════════════ */

/* Grid de 2 colunas restaurado */
.hero-split .hero-inner {
  grid-template-columns: 1fr 1fr !important;
  max-width: 1200px !important;
  margin-left: clamp(1.5rem, 5vw, 7rem) !important;
  margin-right: clamp(1.5rem, 5vw, 7rem) !important;
}

/* Container do sistema solar */
.hero-visual-wrap {
  width: 520px;
  height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Corona do sol */
.hero-visual-wrap::before {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(244,167,40,0.32) 0%,
    rgba(232,122,0,0.14) 45%,
    transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Logo = Sol */
.hero-logo-center {
  width: 130px;
  height: 130px;
  object-fit: contain;
  position: relative;
  z-index: 10;
  animation: sun-glow 4s ease-in-out infinite;
}
@keyframes sun-glow {
  0%, 100% {
    filter: drop-shadow(0 0 22px rgba(244,167,40,0.95))
            drop-shadow(0 0 48px rgba(232,122,0,0.55));
  }
  50% {
    filter: drop-shadow(0 0 36px rgba(255,208,122,1))
            drop-shadow(0 0 72px rgba(232,122,0,0.75));
  }
}

/* Base de todas as órbitas */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  will-change: transform;
}

/* Ponto-planeta: posicionado no topo de cada órbita */
.hero-ring-1::before,
.hero-ring-2::before,
.hero-ring-3::before,
.hero-ring-4::before,
.hero-ring-5::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

/* ── Órbita 1 — Mercúrio (mais interna, rápida) ── */
.hero-ring-1 {
  inset: 148px;
  border-color: rgba(244,167,40,0.5);
  animation: spin-cw 6s linear infinite;
}
.hero-ring-1::before {
  width: 10px; height: 10px; top: -5px;
  background: #F4A728;
  box-shadow: 0 0 10px #F4A728, 0 0 20px #F4A72877;
}

/* ── Órbita 2 — Vênus ── */
.hero-ring-2 {
  inset: 100px;
  border-color: rgba(96,165,250,0.32);
  animation: spin-ccw 13s linear infinite;
}
.hero-ring-2::before {
  width: 9px; height: 9px; top: -4.5px;
  background: #60a5fa;
  box-shadow: 0 0 9px #60a5fa, 0 0 18px #3b82f655;
}

/* ── Órbita 3 — Terra (planeta principal) ── */
.hero-ring-3 {
  inset: 48px;
  border-color: rgba(232,122,0,0.3);
  animation: spin-cw 23s linear infinite;
}
.hero-ring-3::before {
  width: 14px; height: 14px; top: -7px;
  background: #E87A00;
  box-shadow: 0 0 14px #E87A00, 0 0 28px #E87A0055;
}

/* ── Órbita 4 — Marte ── */
.hero-ring-4 {
  inset: -4px;
  border-color: rgba(148,163,184,0.18);
  animation: spin-ccw 36s linear infinite;
}
.hero-ring-4::before {
  width: 8px; height: 8px; top: -4px;
  background: #94a3b8;
  box-shadow: 0 0 8px #94a3b877;
}

/* ── Órbita 5 — Júpiter (mais externa, lenta) ── */
.hero-ring-5 {
  inset: -46px;
  border-color: rgba(244,167,40,0.13);
  animation: spin-cw 60s linear infinite;
}
.hero-ring-5::before {
  width: 7px; height: 7px; top: -3.5px;
  background: var(--gold-light);
  box-shadow: 0 0 7px #FFD07A55;
}

/* Mobile: volta para 1 coluna, sistema solar empilhado acima do texto */
@media (max-width: 860px) {
  .hero-split {
    flex-direction: column;
    gap: 1.75rem;
  }
  .hero-split .hero-inner {
    grid-template-columns: 1fr !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    text-align: center;
  }
  .hero-split .hero-text { align-items: center; }
  .hero-split .hero-label::before { display: none; }

  /* Sol + sistema solar: sai do absolute, entra no fluxo, acima do texto */
  .hero-split .hero-visual {
    display: flex !important;
    position: static !important;
    order: -1;
    z-index: 2;
    pointer-events: none;
  }
  .hero-split .hero-visual-wrap {
    width: 190px !important;
    height: 190px !important;
  }
  .hero-split .hero-visual-wrap::before {
    width: 78px !important;
    height: 78px !important;
  }
  .hero-split .hero-logo-center {
    width: 48px !important;
    height: 48px !important;
  }
  .hero-split .hero-ring-1 { inset: 55px !important; }
  .hero-split .hero-ring-2 { inset: 37px !important; }
  .hero-split .hero-ring-3 { inset: 18px !important; }
  .hero-split .hero-ring-4 { inset: -2px !important; }
  .hero-split .hero-ring-5 { inset: -17px !important; }
  .hero-split .hero-ring-1::before,
  .hero-split .hero-ring-2::before,
  .hero-split .hero-ring-3::before,
  .hero-split .hero-ring-4::before,
  .hero-split .hero-ring-5::before {
    transform: translateX(-50%) scale(0.55);
  }
}


/* ═══════════════════════════════════════════════
   SOLAR SYSTEM — posição absoluta (água azul)
   ═══════════════════════════════════════════════ */

/* Texto volta para 1 coluna; visual fica fora do fluxo */
.hero-split .hero-inner {
  grid-template-columns: 1fr !important;
  max-width: 640px !important;
  margin-left: clamp(1.5rem, 7vw, 9rem) !important;
  margin-right: auto !important;
}

/* Sistema solar flutuante na área da água à direita */
.hero-visual {
  position: absolute;
  right: clamp(2rem, 6vw, 8rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}


/* ═══ SOLAR SYSTEM — posição corrigida (água azul, extrema direita) ═══ */
.hero-visual {
  position: absolute !important;
  right: 20px !important;
  top: calc(50% - 260px) !important;   /* centrado sem depender de transform */
  transform: none !important;
  z-index: 2;
  pointer-events: none;
}


/* ═══ SOLAR SYSTEM — posição final (área marcada, água superior direita) ═══ */
.hero-visual {
  position: absolute !important;
  right: 8% !important;
  top: 18% !important;
  transform: none !important;
  z-index: 2 !important;
  pointer-events: none !important;
}


/* ═══ SOLAR SYSTEM — aura e anéis brancos ═══ */
.hero-visual-wrap::before {
  background: radial-gradient(circle,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.08) 45%,
    transparent 70%) !important;
}
.hero-logo-center {
  animation: sun-glow-white 4s ease-in-out infinite !important;
}
@keyframes sun-glow-white {
  0%, 100% {
    filter: drop-shadow(0 0 22px rgba(255,255,255,0.9))
            drop-shadow(0 0 48px rgba(255,255,255,0.4));
  }
  50% {
    filter: drop-shadow(0 0 36px rgba(255,255,255,1))
            drop-shadow(0 0 72px rgba(255,255,255,0.6));
  }
}
.hero-ring-1 { border-color: rgba(255,255,255,0.50) !important; }
.hero-ring-2 { border-color: rgba(255,255,255,0.38) !important; }
.hero-ring-3 { border-color: rgba(255,255,255,0.28) !important; }
.hero-ring-4 { border-color: rgba(255,255,255,0.18) !important; }
.hero-ring-5 { border-color: rgba(255,255,255,0.10) !important; }

.hero-ring-1::before { background: #fff !important; box-shadow: 0 0 10px #fff, 0 0 20px rgba(255,255,255,0.6) !important; }
.hero-ring-2::before { background: #fff !important; box-shadow: 0 0 9px #fff, 0 0 18px rgba(255,255,255,0.5) !important; }
.hero-ring-3::before { background: #fff !important; box-shadow: 0 0 12px #fff, 0 0 24px rgba(255,255,255,0.5) !important; }
.hero-ring-4::before { background: #fff !important; box-shadow: 0 0 8px rgba(255,255,255,0.8) !important; }
.hero-ring-5::before { background: rgba(255,255,255,0.8) !important; box-shadow: 0 0 6px rgba(255,255,255,0.5) !important; }


/* ═══ Urgência — vermelho ═══ */
.urgency-badge {
  border-color: #dc2626 !important;
  background: #ef4444 !important;
  color: #fff !important;
}
.urgency-dot {
  background: #fff !important;
  animation: pulse-dot-red 2s ease-in-out infinite !important;
}
@keyframes pulse-dot-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  50%       { box-shadow: 0 0 0 6px transparent; }
}
/* Sobrescreve overrides do tema claro e da seção CTA */
body.light .urgency-badge {
  border-color: rgba(239,68,68,0.35) !important;
  background: rgba(239,68,68,0.07) !important;
  color: #dc2626 !important;
}
body.light .urgency-dot { background: #ef4444 !important; }
.cta-full-dark .urgency-badge {
  border-color: rgba(239,68,68,0.4) !important;
  background: rgba(239,68,68,0.1) !important;
  color: #fca5a5 !important;
}
.cta-full-dark .urgency-dot { background: #ef4444 !important; box-shadow: 0 0 8px rgba(239,68,68,0.6) !important; }
.hero-split .urgency-badge {
  border-color: rgba(239,68,68,0.45) !important;
  background: rgba(239,68,68,0.1) !important;
  color: #fca5a5 !important;
}


/* ═══ Hero BG — novo arquivo e posição ═══ */
.hero-split {
  background-image: url('../assets/images/hero-bg.jpg') !important;
  background-position: center center !important;
}


/* ═══════════════════════════════════════════════
   SERVIÇOS — estilo PicPay
   ═══════════════════════════════════════════════ */

.servicos-section {
  background: rgba(6, 9, 30, 0.9);
}

/* Cabeçalho dividido: título esquerda / parcela direita */
.servicos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.servicos-parcela {
  font-size: 1rem;
  line-height: 1.55;
  text-align: right;
  color: #c8b88a;
  flex-shrink: 0;
}
.servicos-parcela strong {
  display: block;
  font-size: 1.15rem;
  color: var(--gold);
}

/* Grid de cards */
.servicos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Card individual */
.servico-card {
  background: rgba(13, 26, 69, 0.65);
  border: 1px solid rgba(232, 122, 0, 0.15);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.servico-card:hover {
  border-color: rgba(232, 122, 0, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(232, 122, 0, 0.12);
}

.servico-icon {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.servico-titulo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}
.servico-destaque {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.01em;
}
.servico-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.servico-lista li {
  font-size: 0.83rem;
  color: #c8b88a;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.servico-lista li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.9rem;
}

/* Tema claro */
body.light .servicos-section { background: rgba(239, 246, 255, 0.6); }
body.light .servico-card {
  background: #fff;
  border-color: #dbeafe;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
body.light .servico-card:hover { border-color: #93c5fd; box-shadow: 0 12px 40px rgba(37,99,235,0.1); }
body.light .servico-titulo { color: #1e3a8a; }
body.light .servico-destaque { color: #1e40af; }
body.light .servico-lista li { color: #475569; }
body.light .servicos-parcela { color: #475569; }
body.light .servicos-parcela strong { color: #1e40af; }
body.light .servico-lista { border-top-color: rgba(0,0,0,0.08); }

/* Mobile */
@media (max-width: 768px) {
  .servicos-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .servicos-parcela { text-align: left; }
  .servicos-cards { grid-template-columns: 1fr; }
}


/* ═══ Price cards — hover laranja ═══ */
.price-card:hover {
  background: linear-gradient(135deg, #E87A00, #F4A728) !important;
  border-color: #E87A00 !important;
  box-shadow: 0 16px 48px rgba(232,122,0,0.4) !important;
}
/* Texto legível sobre fundo laranja */
.price-card:hover .price-value,
.price-card:hover .price-period,
.price-card:hover ul li,
.price-card:hover h3 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.price-card:hover ul li::before { color: #fff !important; }
.price-card:hover ul li { border-bottom-color: rgba(255,255,255,0.2) !important; }
/* Badge e destaque do card featured */
.card-featured:hover .badge-popular {
  background: #fff !important;
  color: var(--orange) !important;
}
/* Tema claro */
body.light .price-card:hover { box-shadow: 0 16px 48px rgba(232,122,0,0.35) !important; }


/* ═══ Price cards — hover laranja suave (opacity-based, GPU) ═══ */

/* Remove o hover antigo que animava background */
.price-card:hover {
  background: transparent !important;
}

/* Overlay laranja via ::after — GPU acelera opacity, não background */
.price-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
.price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E87A00 0%, #F4A728 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}
.price-card:hover::after  { opacity: 1; }
.price-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 56px rgba(232,122,0,0.45) !important;
  border-color: #E87A00 !important;
}
.card-featured:hover {
  transform: translateY(-10px) scale(1.05) !important;
}

/* Garante que todo conteúdo fica acima do overlay laranja */
.price-card > * { position: relative; z-index: 1; }

/* Tudo branco no hover — sobrescreve text-gradient e inline styles */
.price-card:hover .text-gradient {
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
}
.price-card:hover .price-period { color: rgba(255,255,255,0.8) !important; opacity: 1 !important; }
.price-card:hover ul li { color: #fff !important; border-bottom-color: rgba(255,255,255,0.2) !important; }
.price-card:hover ul li::before { color: rgba(255,255,255,0.7) !important; }
.price-card:hover h3,
.price-card:hover p { color: #fff !important; -webkit-text-fill-color: #fff !important; }
.price-card:hover [style*="color"] { color: #fff !important; }


/* ═══════════════════════════════════════════════
   PERFORMANCE FIX — FPS
   ═══════════════════════════════════════════════ */

/* 1. Blobs e geos ficam escondidos atrás das seções — desativa as 9 animações */
.bg-shapes { display: none !important; }

/* 2. Remove backdrop-filter dos cards no tema claro */
body.light .card-glow { backdrop-filter: none !important; }

/* 3. Substitui os 2 SVG data URIs (feTurbulence + dot grid) por nada —
      mantém apenas os radial-gradients (GPU-composited) */
body::before {
  background-image:
    radial-gradient(ellipse 65% 50% at 92%  8%,  #2563eb38 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at -5% 18%,  #4338ca28 0%, transparent 65%),
    radial-gradient(ellipse 55% 48% at  6% 92%,  #0284c720 0%, transparent 65%),
    radial-gradient(ellipse 65% 55% at 100% 94%, #1e40af2a 0%, transparent 65%),
    radial-gradient(ellipse 80% 40% at 50% 52%,  #1d4ed812 0%, transparent 60%),
    linear-gradient(155deg, #0d1b5e 0%, #06091e 38%, #08102a 72%, #04071a 100%) !important;
}
body.light::before {
  background-image:
    radial-gradient(ellipse 60% 50% at 88%  5%,  rgba(37,99,235,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at -5% 20%,  rgba(37,99,235,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at  8% 90%,  rgba(99,102,241,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 100% 95%, rgba(37,99,235,0.08) 0%, transparent 65%),
    linear-gradient(155deg, #f5f0e8 0%, #faf7f0 50%, #f0ebe0 100%) !important;
}


/* ═══ Remove aura/glow da logo no hero ═══ */
.hero-logo-center {
  animation: none !important;
  filter: none !important;
}


/* ═══ Aura azul escura, suave, na logo do hero ═══ */
.hero-logo-center {
  filter: drop-shadow(0 0 18px rgba(15, 30, 90, 0.55))
          drop-shadow(0 0 40px rgba(10, 20, 70, 0.3)) !important;
}


/* ═══ Vídeo de fundo no hero ═══ */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 9, 30, 0.78) 0%,
    rgba(6, 9, 30, 0.70) 35%,
    rgba(6, 9, 30, 0.20) 58%,
    transparent 75%
  );
  z-index: 1;
}

.hero-inner  { position: relative; z-index: 2; }
.hero-visual { z-index: 2 !important; }


/* ═══════════════════════════════════════════
   REDESIGN — vibe AbacatePay
   Clean · Minimal · Bold typography
   ═══════════════════════════════════════════ */

/* Fundo: azul muito claro, quase branco nuvem */
body { background-color: #eef1fb !important; color: #0f1629 !important; }
body::before {
  background-image:
    radial-gradient(ellipse 60% 40% at 85% 5%, rgba(99,120,255,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 8% 95%, rgba(99,120,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 2% 2%, rgba(232,122,0,0.38) 0%, transparent 72%),
    radial-gradient(ellipse 70% 55% at 98% 98%, rgba(244,167,40,0.38) 0%, transparent 72%),
    linear-gradient(160deg, #e8edf9 0%, #eef1fb 50%, #f0f3fc 100%) !important;
}
/* Grão/ruído — mesma técnica do site de referência (corrida-das-cheetaras):
   um pseudo-elemento SEPARADO com mix-blend-mode: overlay por cima do
   gradiente, não só mais uma camada de background-image. É o blend mode
   que faz o ruído "morder" o fundo de verdade — antes, empilhado como
   camada normal, ficava imperceptível mesmo com opacidade alta. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Hero: título muito maior e impactante */
.hero-h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem) !important;
  line-height: 1.6 !important;
  padding-top: 0.15em !important;
  padding-bottom: 0.3em !important;
  letter-spacing: -0.02em !important;
}
.hero-sub {
  font-size: 1.1rem !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.58) !important;
  max-width: 420px !important;
}

/* Cards globais: branco com borda azul suave */
.card-glow {
  background: rgba(255,255,255,0.75) !important;
  border: 1px solid rgba(99,120,255,0.14) !important;
  backdrop-filter: none !important;
}
.card-glow:hover {
  background: rgba(255,255,255,0.95) !important;
  border-color: rgba(232,122,0,0.35) !important;
  box-shadow: 0 8px 36px rgba(232,122,0,0.1) !important;
  transform: translateY(-3px) !important;
}

/* Remove os separadores de estrela — dão espaço de respiro */
.sun-divider { display: none !important; }

/* Seções: mais respiro */
#sobre  { padding-top: 8rem !important; padding-bottom: 8rem !important; }
#processo { padding-top: 8rem !important; padding-bottom: 8rem !important; }
#precos { padding-top: 8rem !important; padding-bottom: 8rem !important; }
#portfolio { padding-top: 8rem !important; padding-bottom: 8rem !important; }

/* Títulos de seção: maiores e mais impactantes */
#sobre h2,
#processo h2,
#precos h2,
#portfolio h2,
#depoimentos h2,
#contato h3 {
  font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}
.servicos-section h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}

/* Serviços: cards claros */
.servicos-section { background: rgba(99,120,255,0.04) !important; }
.servico-card {
  background: rgba(255,255,255,0.80) !important;
  border: 1px solid rgba(99,120,255,0.13) !important;
  border-radius: 1.5rem !important;
  padding: 2.5rem 2rem !important;
  gap: 1rem !important;
}
.servico-card:hover {
  background: rgba(255,255,255,1) !important;
  border-color: rgba(232,122,0,0.3) !important;
  box-shadow: 0 16px 48px rgba(232,122,0,0.07) !important;
  transform: translateY(-4px) !important;
}
.servico-titulo {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}
.servicos-cards { gap: 1.5rem !important; }

/* Preços: cards brancos */
.price-card.card-glow {
  background: rgba(255,255,255,0.80) !important;
  border: 1px solid rgba(99,120,255,0.13) !important;
}
.card-featured {
  background: #fff !important;
  border: 1px solid rgba(244,167,40,0.4) !important;
  box-shadow: 0 8px 40px rgba(232,122,0,0.1) !important;
}
.card-featured:hover {
  transform: scale(1.04) translateY(-4px) !important;
}

/* Testimoniais */
.testimonial-card.card-glow {
  background: rgba(255,255,255,0.80) !important;
  border: 1px solid rgba(99,120,255,0.13) !important;
}

/* Texto de corpo: escuro sobre fundo claro */
body { color: #0f1629 !important; }
p, li { color: #3a4060 !important; }
p[style*="color: #c8b88a"], li { color: #3a4060 !important; }

/* Navbar: nuvem volumosa — branca, suave, bordas dissolvendo no azul */
.site-header {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(18px) !important;
  box-shadow:
    0 2px 12px  rgba(220, 230, 255, 0.50),
    0 8px 32px  rgba(200, 218, 255, 0.30),
    0 20px 60px rgba(180, 210, 255, 0.18),
    0 40px 90px rgba(160, 200, 255, 0.08) !important;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow:
    0 2px 12px  rgba(220, 230, 255, 0.55),
    0 8px 32px  rgba(200, 218, 255, 0.35),
    0 20px 60px rgba(180, 210, 255, 0.20),
    0 40px 90px rgba(160, 200, 255, 0.10) !important;
}

/* Links: escuros sobre a barra clara */
.site-nav a { color: #1a2040 !important; font-weight: 500; }
.site-nav a:hover { color: var(--orange) !important; }

/* Inputs e formulário */
input, textarea {
  background: rgba(255,255,255,0.8) !important;
  color: #0f1629 !important;
  border-color: rgba(99,120,255,0.2) !important;
}

/* ═══ Efeito skeleton shimmer em "Cultura Orange" ═══ */
@keyframes skeleton {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.hero-h1 {
  background-image: linear-gradient(
    90deg,
    #E87A00 0%,
    #E87A00 30%,
    #F4A728 40%,
    #fff8d0 46%,
    #ffffff 50%,
    #fff8d0 54%,
    #F4A728 60%,
    #E87A00 70%,
    #E87A00 100%
  ) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: skeleton 7.2s ease-in-out infinite !important;
}

/* ═══ Botões dos cards de preço — branco azulado ═══ */
.price-card .btn-outline,
.price-card .btn-primary {
  background: #eef1fb !important;
  border: 1.5px solid rgba(99,120,255,0.25) !important;
  color: #1a2040 !important;
  font-weight: 600 !important;
  -webkit-text-fill-color: #1a2040 !important;
}
.price-card .btn-outline:hover,
.price-card .btn-primary:hover {
  background: #fff !important;
  border-color: var(--orange) !important;
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ═══ Cards de processo — nuvem aparece no fundo ao hover ═══ */
.processo-card {
  position: relative !important;
  background: rgba(255, 255, 255, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 4px 20px rgba(200, 215, 255, 0.20) !important;
  backdrop-filter: blur(14px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
  overflow: hidden !important;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease !important;
}
.processo-num-circle {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #1d4ed8 100%) !important;
}
.processo-num {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--orange) 60%, #c45a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.processo-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: url('../assets/images/cloud.webp') center / cover no-repeat !important;
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
  z-index: 0 !important;
}
.processo-card:hover::before {
  opacity: 0.9 !important;
}
.processo-card:hover {
  border-color: rgba(255, 255, 255, 0.85) !important;
  box-shadow:
    0 6px 28px rgba(200, 215, 255, 0.38),
    0 16px 50px rgba(185, 208, 255, 0.18) !important;
  transform: translateY(-2px) !important;
}
.processo-card > * {
  position: relative !important;
  z-index: 1 !important;
}


/* ═══════════════════════════════════════════════
   TEXTURA "TAPETE" NO FUNDO GERAL
   Troque data-textura="1|2|3" no <body> (index.html)
   para comparar as variantes. Fica sempre por baixo
   de qualquer seção com fundo próprio (hero, CTA
   escura, serviços), pois usa z-index: -1.
   ═══════════════════════════════════════════════ */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* Opção 1 — Fibra/tecido sutil: ruído orgânico tipo lona.
   Usa "multiply" em vez de "overlay": sobre fundo quase branco
   (#eef1fb), overlay satura pra branco e o ruído nunca aparece —
   multiply escurece de forma visível sobre fundo claro. */
body[data-textura="1"]::after {
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='1.6' intercept='-0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Opção 2 — Padrão geométrico tipo tapete: losangos entrelaçados
   nas cores da marca (Azul Royal + Laranja). stroke-opacity subida
   de 0.06/0.07 pra 0.18/0.20 — no valor anterior era imperceptível. */
body[data-textura="2"]::after {
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96'%3E%3Cg fill='none' stroke='%231B2A6B' stroke-opacity='0.20' stroke-width='1.75'%3E%3Cpath d='M48 0 96 48 48 96 0 48Z'/%3E%3Cpath d='M48 20 76 48 48 76 20 48Z' stroke='%23E87A00' stroke-opacity='0.18'/%3E%3C/g%3E%3C/svg%3E");
}

/* Opção 3 — Textura entrelaçada/weave: trama de fios cruzados. */
body[data-textura="3"]::after {
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cg fill='none' stroke-width='2.25'%3E%3Cpath d='M0 8h64M0 24h64M0 40h64M0 56h64' stroke='%231B2A6B' stroke-opacity='0.32'/%3E%3Cpath d='M8 0v64M24 0v64M40 0v64M56 0v64' stroke='%23E87A00' stroke-opacity='0.30'/%3E%3C/g%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════
   NAVBAR MOBILE — textura "liquid glass" (igual ao
   botão "Saber mais"), substitui o fundo sólido só
   em telas mobile, nos dois temas.
   ═══════════════════════════════════════════════ */
@media (max-width: 767px) {
  body .site-header,
  body.light .site-header,
  body .site-header.scrolled,
  body.light .site-header.scrolled {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(160%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28) !important;
    box-shadow: 0 4px 20px rgba(13, 26, 69, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  }

  body #mobile-menu,
  body.light #mobile-menu {
    background: rgba(6, 9, 30, 0.94) !important;
    backdrop-filter: blur(10px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(160%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  }
}

/* ═══════════════════════════════════════════════
   BOTÃO HAMBÚRGUER → X (mobile)
   ═══════════════════════════════════════════════ */
.hamburger-line {
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.25s ease;
}
#menu-btn.is-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#menu-btn.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#menu-btn.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   HERO MOBILE — centralização final (vence regras
   legadas de desktop que reaplicavam margin-left
   assimétrico no .hero-inner e deslocavam o texto).
   ═══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .hero-split {
    justify-content: center;
  }
  .hero-split .hero-inner {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .hero-split .hero-text {
    width: 100%;
    align-items: center !important;
    text-align: center;
  }
  .hero-split .hero-ctas {
    justify-content: center;
    width: 100%;
  }
  .hero-split .hero-visual {
    width: 100%;
    justify-content: center !important;
  }
}

/* ═══════════════════════════════════════════════
   HERO MOBILE — legibilidade do texto (Ideia 5) ✅ ESCOLHIDA
   Sombra escura radial cobrindo o hero inteiro no mobile
   (mais forte no centro, onde o texto fica), garantindo
   contraste independente do que estiver atrás na foto.
   ═══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .hero-split::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(
      ellipse 140% 90% at 50% 55%,
      rgba(6, 9, 30, 0.60) 0%,
      rgba(6, 9, 30, 0.42) 45%,
      rgba(6, 9, 30, 0.26) 70%,
      rgba(6, 9, 30, 0.16) 100%
    );
    pointer-events: none;
  }
}

/* ═══════════════════════════════════════════════
   HERO MOBILE — pontinhos das órbitas em branco brilhante
   puxado para o azul (TESTE)
   Estado anterior (pontos laranja) salvo na memória do
   projeto — reverter removendo este bloco se necessário.
   ═══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .hero-split .hero-ring-1::before { background: #EAF4FF !important; box-shadow: 0 0 10px #EAF4FF, 0 0 20px rgba(147,197,253,0.6) !important; }
  .hero-split .hero-ring-2::before { background: #EAF4FF !important; box-shadow: 0 0 9px #EAF4FF, 0 0 18px rgba(147,197,253,0.5) !important; }
  .hero-split .hero-ring-3::before { background: #EAF4FF !important; box-shadow: 0 0 12px #EAF4FF, 0 0 24px rgba(147,197,253,0.5) !important; }
  .hero-split .hero-ring-4::before { background: #EAF4FF !important; box-shadow: 0 0 8px rgba(147,197,253,0.8) !important; }
  .hero-split .hero-ring-5::before { background: #EAF4FF !important; box-shadow: 0 0 6px rgba(147,197,253,0.5) !important; }
}

/* ═══════════════════════════════════════════════
   PREÇOS — cards azuis com a mesma textura das cartas
   do portfólio (moldura dourada de oráculo + marca d'água
   "O Sol" em baixa opacidade, sobre gradiente azul royal).
   ═══════════════════════════════════════════════ */
.price-card-blue {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow:
    0 8px 32px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  isolation: isolate;
}
.price-card-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(160deg, rgba(191, 219, 254, 0.35) 0%, rgba(219, 234, 254, 0.30) 55%, rgba(255, 255, 255, 0.45) 100%) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  z-index: -1;
  overflow: hidden;
}
.price-card-blue > p:first-child,
.price-card-blue .price-period,
.price-card-blue ul li {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #1d4ed8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.price-card-blue ul li {
  border-bottom-color: rgba(37, 99, 235, 0.15) !important;
}
.price-card-blue .price-value.text-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #1d4ed8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* Hover: nada de preenchimento sólido — só uma luz diagonal passando
   pela carta (mesmo espírito do brilho do leque do portfólio). */
.price-card-blue::after {
  background: linear-gradient(115deg, transparent 46%, rgba(255, 255, 255, 0.3) 50%, transparent 54%) !important;
  background-size: 320% 320% !important;
  background-position: -100% -100% !important;
  opacity: 0 !important;
  transition: opacity 0.25s ease, background-position 1.1s ease !important;
}
.price-card-blue:hover::after {
  opacity: 1 !important;
  background-position: 100% 100% !important;
}
.price-card-blue:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 44px rgba(37, 99, 235, 0.2) !important;
  border-color: rgba(37, 99, 235, 0.4) !important;
}
.price-card-blue:hover ul li::before {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}
/* Mantém o texto em azul degradê no hover (sobrescreve o branco genérico de .price-card:hover) */
.price-card-blue:hover .text-gradient,
.price-card-blue:hover .price-period,
.price-card-blue:hover ul li,
.price-card-blue:hover > p:first-child {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #1d4ed8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
