/* ===== TOKENS LANDING (Oceano Digital) ===== */
html { scroll-behavior: smooth; }

.wbc-landing {
  --wbc-primary: #01579B;
  --wbc-primary-hover: #01437a;
  --wbc-accent: #4FC3F7;
  --wbc-hero-bg: linear-gradient(135deg,#020C1B 0%,#01579B 65%,#0288D1 100%);
  --wbc-sec-bg: #0D1F35;
  --wbc-alt-bg: #071428;
  --wbc-text: #ECEFF1;
  --wbc-muted: rgba(255,255,255,0.55);
  --wbc-foot-bg: #020C1B;
  --wbc-card-bg: rgba(255,255,255,0.05);
  --wbc-card-border: 1px solid rgba(255,255,255,0.1);
  --wbc-inp-bg: rgba(255,255,255,0.07);
  --wbc-inp-bord: rgba(255,255,255,0.18);
  --wbc-nav-solid: rgba(2,12,27,0.95);
  --wbc-whatsapp: #25D366;
  --wbc-shadow: 0 18px 50px rgba(0,0,0,.3);
  
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--wbc-text);
  background: var(--wbc-alt-bg);
  overflow-x: hidden;
  margin: 0;
}

.wbc-landing * { box-sizing: border-box; }
.wbc-landing [x-cloak] { display: none !important; }

/* Animations */
@keyframes logo-draw { from { stroke-dashoffset: 85; } to { stroke-dashoffset: 0; } }
@keyframes wbcSlide { from { transform:translateY(20px); opacity: 0; } to { transform:translateY(0); opacity: 1; } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-14px); } }
@keyframes pulse-wapp { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* Navbar */
.wbc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.3s ease; height: 76px; display: flex; align-items: center;
}
.wbc-nav--scrolled {
  background: var(--wbc-nav-solid); backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2); height: 68px;
}
.wbc-nav__container {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.wbc-nav__links { display: flex; align-items: center; gap: 32px; }
.wbc-nav__link {
  color: #fff; text-decoration: none; font-size: 14.5px; font-weight: 500; opacity: 0.8; transition: all 0.2s;
}
.wbc-nav__link:hover { opacity: 1; color: var(--wbc-accent); }

.wbc-hero { 
  background: var(--wbc-hero-bg); 
  color: var(--wbc-text); 
  position: relative; 
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.wbc-hero__container {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px; align-items: center; width: 100%; z-index: 1;
}

/* Sections */
.wbc-section { padding: 100px 24px; scroll-margin-top: 76px; }
.wbc-section--sec { background: var(--wbc-sec-bg); }
.wbc-section--alt { background: var(--wbc-alt-bg); }

/* Cards */
.wbc-card-step {
  background: var(--wbc-card-bg); border: var(--wbc-card-border);
  padding: 32px; border-radius: 20px; transition: all 0.3s;
}
.wbc-card-step:hover { border-color: var(--wbc-accent); transform: translateY(-5px); }

/* Calculadora UI */
.wbc-calc-container {
  background: var(--wbc-sec-bg); border-radius: 32px; padding: 48px;
  box-shadow: var(--wbc-shadow); border: 1px solid rgba(255,255,255,0.05);
}
.wbc-stepper {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05); border-radius: 12px; padding: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}
.wbc-stepper-btn {
  width: 36px; height: 36px; border-radius: 8px; border: 0;
  background: rgba(255,255,255,0.1); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.wbc-stepper-btn:hover { background: var(--wbc-primary); }
.wbc-stepper-val { flex: 1; text-align: center; font-weight: 700; font-size: 16px; }

.wbc-plan-toggle {
  display: flex; background: rgba(255,255,255,0.05); padding: 4px; border-radius: 12px;
  margin-bottom: 32px;
}
.wbc-plan-toggle__btn {
  flex: 1; border: 0; background: none; padding: 10px; border-radius: 10px;
  color: #fff; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.wbc-plan-toggle__btn.is-active { background: var(--wbc-primary); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* Utils */
.wbc-btn-pri { 
  background: var(--wbc-primary); color: #fff; border: none; padding: 12px 28px; 
  border-radius: 10px; font-weight: 700; cursor: pointer; text-decoration: none; 
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; 
}
.wbc-btn-pri:hover { background: var(--wbc-primary-hover); transform: translateY(-1px); }

.wbc-btn-acc { 
  background: var(--wbc-accent); color: var(--wbc-alt-bg); border: none; padding: 12px 28px; 
  border-radius: 10px; font-weight: 700; cursor: pointer; text-decoration: none; 
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; 
}
.wbc-btn-acc:hover { opacity: 0.9; transform: translateY(-1px); }

.wbc-footer { background: var(--wbc-foot-bg); padding: 80px 24px 40px; border-top: 1px solid rgba(255,255,255,0.05); }

/* Prova Social */
.wbc-hero__social { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.wbc-avatars { display: flex; align-items: center; }
.wbc-avatars img { 
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--wbc-primary);
  margin-left: -10px; background: #fff;
}
.wbc-avatars img:first-child { margin-left: 0; }
.wbc-avatar {
  display: inline-block; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5); margin-left: -10px;
}
.wbc-avatar:first-child { margin-left: 0; }
.wbc-hero__social-txt { font-size: 13px; font-weight: 500; opacity: 0.85; }

.wbc-divider-v { width: 1px; height: 24px; background: rgba(255,255,255,0.15); }

.wbc-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wbc-whatsapp); box-shadow: 0 0 8px var(--wbc-whatsapp); }

/* Card Flutuante Hero */
.wbc-hero-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 24px;
  padding: 32px; width: 100%; max-width: 400px;
  box-shadow: var(--wbc-shadow); animation: float 5s infinite;
}
.wbc-hero-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.wbc-hero-card__title { font-size: 18px; font-weight: 700; margin: 0; }
.wbc-hero-card__badge { 
  font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 100px;
  background: rgba(37,211,102,0.15); color: var(--wbc-whatsapp);
}
.wbc-hero-card__row {
  background: rgba(255,255,255,0.05); padding: 14px; border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
}
.wbc-hero-card__row:last-child { margin-bottom: 0; }
.wbc-hero-card__label { font-size: 14px; }
.wbc-hero-card__val { font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 4px; }
.wbc-hero-card__val--ok { background: rgba(37,211,102,0.2); color: var(--wbc-whatsapp); }
.wbc-hero-card__val--acc { background: rgba(79,195,247,0.2); color: var(--wbc-accent); }
.wbc-hero-card__float {
  position: absolute; top: -14px; right: -8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 14px;
  padding: 9px 14px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); z-index: 2;
}

/* Mobile Menu */
.wbc-mobile-menu {
  position: fixed; inset: 0; background: var(--wbc-alt-bg); z-index: 2000;
  padding: 80px 24px; display: flex; flex-direction: column; gap: 24px;
}

@media (max-width: 1024px) {
  .wbc-hero__container { grid-template-columns: 1fr !important; text-align: center; }
  .wbc-hero__container > div { display: flex; flex-direction: column; align-items: center; }
  .wbc-nav__links { display: none; }
}

/* fundo escuro dos selects da calculadora + do menu suspenso */
#planos select {
  background-color: #0D1F35 !important;   /* azul-escuro sólido, não translúcido */
  color: #fff;
}
#planos select option {
  background-color: #0D1F35;
  color: #fff;
}

/* traço do "gráfico" sendo desenhado */
@keyframes logo-draw {
  from { stroke-dashoffset: 85; }
  to   { stroke-dashoffset: 0; }
}
/* brilho pulsante do ponto */
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(79,195,247,0.5)); }
  50%      { filter: drop-shadow(0 0 10px rgba(79,195,247,1)); }
}


/* ===== SEÇÃO CTA WHATSAPP ===== */
.wbc-cta-whats {
  /* fundo verde WhatsApp em gradiente */
  background: linear-gradient(135deg, #128C7E, #25D366);
  padding: 88px 24px;
}
.wbc-cta-whats__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ① o círculo translúcido com o ícone */
.wbc-cta-whats__icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;   /* centraliza e dá respiro abaixo */
}

.wbc-cta-whats__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.1;
  text-wrap: balance;
}
.wbc-cta-whats__text {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 36px;
  line-height: 1.65;
}

/* botão branco com texto verde */
.wbc-cta-whats__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: #fff;
  color: #128C7E;
  font-size: 17px;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wbc-cta-whats__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.wbc-cta-whats__note {
  font-size: 13px;
  color: rgba(255,255,255,1);
  margin-top: 14px;
}