/* ============================================================
   sections/bstart.css
   CSS específico da página n-bstart-0001.html (dark-only).

   Efeitos compartilhados (text-glow, glow-card, glow-border,
   hover-lift, hover-glow, hover-float, ambient-light,
   ambient-light--alt, is-floating, is-glowing, is-pulsing-gold,
   reveal via [data-animate], .delay-100..600) vivem em
   styles/animations.css e styles/components.css — não duplicar aqui.

   Este arquivo contém APENAS:
   - Hover effects autorais (tag-hover, logo-hover, button-hover,
     glow-teal, interactive-text, hover-bg-shift)
   - Keyframes locais (glow, pulse, pulseGold, scrollBounce, nodeGlow)
   - Navegação interna (lp-nav)
   - Layout único de seções (hero-grid, hero-badge, scroll-indicator,
     section-label, section-divider, lp-section, section-hdr, grids)
   - Componentes locais (img-placeholder, qualify-row, tactical-grid,
     method timeline completa, deliver-card, metric-card, about-credential,
     form-input + phone-dropdown + tracking-grid, floating-cta)
   - CTAs custom (btn-primary, btn-secondary, btn-mid, btn-submit)
   - Typography legacy local (lp-h1, lp-h2, lp-h3)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

/* ============================================================
   1. Hover effects autorais
   ============================================================ */

/* Glow variants (intensidade superior à .glow-soft do DS) */
.glow-teal {
  box-shadow:
    0 0 20px rgba(var(--brand-500-rgb), 0.3),
    0 0 40px rgba(var(--brand-500-rgb), 0.1);
}
.glow-teal-intense {
  box-shadow:
    0 0 30px rgba(var(--brand-500-rgb), 0.4),
    0 0 60px rgba(var(--brand-500-rgb), 0.2),
    inset 0 1px 0 rgba(var(--text-dark-rgb), 0.1);
  transition: var(--transition-base);
}
.glow-teal-intense:hover {
  box-shadow:
    0 0 40px rgba(var(--brand-500-rgb), 0.6),
    0 0 80px rgba(var(--brand-500-rgb), 0.3),
    inset 0 1px 0 rgba(var(--text-dark-rgb), 0.2);
  transform: translateY(-2px) scale(1.03);
}

/* Hover bg-shift (gradient slide) */
.hover-bg-shift {
  transition: background-position var(--duration-slow) var(--ease-out);
  background-size: 200% 200%;
  background-position: 0% 50%;
}
.hover-bg-shift:hover { background-position: 100% 50%; }

/* Tag hover (chips/keywords) */
.tag-hover {
  transition: var(--transition-color), transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.tag-hover:hover {
  background: linear-gradient(135deg, rgba(var(--brand-500-rgb), 0.2), rgba(var(--brand-600-rgb), 0.1));
  border-color: rgba(var(--brand-500-rgb), 0.6);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(var(--brand-500-rgb), 0.2);
}

/* Logo hover (rotação + pulse interno via keyframe local) */
.logo-hover { transition: transform var(--duration-slow) var(--ease-out); }
.logo-hover:hover { transform: rotate(-5deg) scale(1.1); }
.logo-hover:hover .logo-icon { animation: pulse 0.6s ease-in-out; }

/* Interactive text (heading com clip-text no hover) */
.interactive-text {
  padding: 0.1em 0 0.3em;
  margin: -0.1em 0 -0.3em;
  display: inline-block;
}
.interactive-text:hover {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Button shimmer custom */
.button-hover {
  transition: transform var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.button-hover::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--text-dark-rgb), 0.2), transparent);
  transition: left var(--duration-slow) var(--ease-out);
}
.button-hover:hover::before { left: 100%; }
.button-hover:hover { transform: translateY(-2px) scale(1.03); }

.cursor-glow { cursor: pointer; }
.backdrop-glow {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.bg-gradient-glow {
  background: linear-gradient(135deg, rgba(var(--brand-500-rgb), 0.1), rgba(var(--brand-600-rgb), 0.05));
}

/* ============================================================
   2. Keyframes locais
   ============================================================ */

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(var(--brand-500-rgb), 0.3), 0 0 40px rgba(var(--brand-500-rgb), 0.1); }
  to   { box-shadow: 0 0 30px rgba(var(--brand-500-rgb), 0.5), 0 0 60px rgba(var(--brand-500-rgb), 0.2); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}
@keyframes pulseGold {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(8px); opacity: 0.15; }
}
@keyframes nodeGlow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(var(--brand-500-rgb), 0.08), 0 0 20px rgba(var(--brand-500-rgb), 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(var(--brand-500-rgb), 0.15), 0 0 35px rgba(var(--brand-500-rgb), 0.35); }
}

/* ============================================================
   3. Navegação fixa (página interna — sem navbar DS)
   ============================================================ */

.lp-nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: var(--z-sticky, 100);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(var(--bg-base-dark-rgb), 0.85);
  border-bottom: 1px solid rgba(var(--brand-500-rgb), 0.15);
}
.lp-nav a { transition: var(--transition-color); }
.lp-nav a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(var(--brand-500-rgb), 0.5);
}

/* ============================================================
   4. Hero (grid bg, badge animado, scroll indicator)
   ============================================================ */

.hero-grid {
  background-image:
    linear-gradient(rgba(var(--brand-500-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-500-rgb), 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: rgba(var(--brand-500-rgb), 0.08);
  border: 1px solid rgba(var(--brand-500-rgb), 0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-500);
  animation: glow 3s ease-in-out infinite alternate;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
  animation: pulseGold 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.scroll-indicator { animation: scrollBounce 1.8s ease-in-out infinite; }

/* ============================================================
   5. Image placeholders (dev/staging)
   ============================================================ */

.img-placeholder {
  border: 2px dashed rgba(var(--brand-500-rgb), 0.25);
  background: rgba(var(--brand-500-rgb), 0.02);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 12px,
    rgba(var(--brand-500-rgb), 0.015) 12px,
    rgba(var(--brand-500-rgb), 0.015) 13px
  );
}
.img-placeholder-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--brand-500-rgb), 0.45);
}
.img-placeholder-desc {
  font-size: 12px;
  color: rgba(var(--text-dark-rgb), 0.25);
  line-height: 1.5;
}
.img-placeholder-dim {
  font-size: 10px;
  color: rgba(var(--brand-500-rgb), 0.3);
  font-family: monospace;
  letter-spacing: 0.05em;
}

/* ============================================================
   6. Estrutura de seções
   ============================================================ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
}
.section-label::before { background: linear-gradient(90deg, transparent, var(--brand-500)); }
.section-label::after  { background: linear-gradient(90deg, var(--brand-500), transparent); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-500-rgb), 0.12), transparent);
  margin: 0;
}

.lp-section {
  padding: 3.5rem 1.5rem;
}
@media (min-width: 768px) {
  .lp-section { padding: 5rem 1.5rem; }
}

.section-hdr {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-hdr { margin-bottom: 5rem; }
}

/* ============================================================
   7. CTAs custom (BStart-specific)
   ============================================================ */

.btn-primary,
.btn-mid,
.btn-submit {
  color: var(--bg-base);
  background: var(--brand-grad-bright);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 16px;
  font-size: 17px;
}
.btn-mid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 15px;
}
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  border-radius: 16px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  margin-top: 24px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--text-dark-rgb), 0.6);
  border: 1px solid rgba(var(--text-dark-rgb), 0.1);
  text-decoration: none;
  transition: var(--transition-base);
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: rgba(var(--brand-500-rgb), 0.35);
  color: rgba(var(--text-dark-rgb), 0.9);
}

/* ============================================================
   8. Grids
   ============================================================ */

.grid-2, .grid-3 { display: grid; gap: 28px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.grid-metrics { display: grid; gap: 20px; margin-bottom: 28px; }
@media (min-width: 768px) {
  .grid-metrics { grid-template-columns: 1fr 1fr 1fr; }
}

.stack-qualify { display: flex; flex-direction: column; gap: 8px; }
.stack-phases  { display: flex; flex-direction: column; gap: 16px; }
.stack-creds   { display: flex; flex-direction: column; margin-bottom: 2rem; }

.about-grid { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.form-grid { display: grid; gap: 0 20px; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   9. Typography legacy local (compat — h1/h2/h3 do DS já cobrem)
   ============================================================ */

.lp-h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.02em;
}
.lp-h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.lp-h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================================
   10. "Para quem" — qualify rows
   ============================================================ */

.qualify-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background var(--duration-fast) var(--ease-out);
}
.qualify-row:hover {
  background: rgba(var(--text-dark-rgb), 0.03);
}
.qualify-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.qualify-icon-wrap.yes {
  background: rgba(var(--brand-500-rgb), 0.15);
  border: 1px solid rgba(var(--brand-500-rgb), 0.35);
  color: var(--brand-500);
}
.qualify-icon-wrap.no {
  background: rgba(var(--text-dark-rgb), 0.05);
  border: 1px solid rgba(var(--text-dark-rgb), 0.1);
  color: rgba(var(--text-dark-rgb), 0.35);
}

.tactical-grid {
  background-image:
    linear-gradient(rgba(var(--brand-500-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-500-rgb), 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ============================================================
   11. Metodologia — timeline alternada
   ============================================================ */

.method-timeline { position: relative; max-width: 860px; margin: 0 auto; }
.method-steps    { position: relative; }

.method-vline {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(var(--brand-500-rgb), 0.07);
  overflow: hidden;
  z-index: 0;
}
.method-vline-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, rgba(var(--brand-500-rgb), 0.9) 0%, rgba(var(--brand-500-rgb), 0.35) 100%);
  transition: height 0.15s ease-out;
}

.method-journey-label {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin: 0 0 2.5rem;
}
.method-journey-label.bottom { margin: 2.5rem 0 0; }
.method-journey-label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
}
.method-journey-label.top span {
  color: rgba(var(--text-dark-rgb), 0.3);
  border: 1px solid rgba(var(--text-dark-rgb), 0.1);
}
.method-journey-label.bottom span {
  color: var(--brand-500);
  border: 1px solid rgba(var(--brand-500-rgb), 0.35);
  background: rgba(var(--brand-500-rgb), 0.06);
  animation: glow 2.5s ease-in-out infinite alternate;
}

.method-item {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 0 28px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.method-last { margin-bottom: 0; }

.method-node-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.method-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid rgba(var(--brand-500-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow) var(--ease-out);
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.method-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(var(--brand-500-rgb), 0);
  transition: background var(--duration-slow) var(--ease-out);
  pointer-events: none;
}
.method-dot span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: rgba(var(--brand-500-rgb), 0.85);
  transition: color var(--duration-slow) var(--ease-out);
  position: relative;
  z-index: 1;
}

.method-item.active .method-dot {
  border-color: var(--brand-500);
  background: var(--bg-base);
  box-shadow:
    0 0 0 6px rgba(var(--brand-500-rgb), 0.07),
    0 0 30px rgba(var(--brand-500-rgb), 0.4);
}
.method-item.active .method-dot::after { background: rgba(var(--brand-500-rgb), 0.08); }
.method-item.active .method-dot span   { color: var(--brand-500); }

.method-dot-final { border-color: rgba(var(--brand-500-rgb), 0.25); }
.method-item.active .method-dot-final {
  box-shadow:
    0 0 0 8px rgba(var(--brand-500-rgb), 0.09),
    0 0 50px rgba(var(--brand-500-rgb), 0.5);
}

.method-card-inner {
  background: rgba(var(--text-dark-rgb), 0.025);
  border: 1px solid rgba(var(--brand-500-rgb), 0.07);
  border-radius: 20px;
  padding: 24px 28px;
  transition: border-color var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow) var(--ease-out), opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
  opacity: 0.3;
  transform: translateX(-14px);
}
.method-right .method-card-inner { transform: translateX(14px); }
.method-align-right { text-align: right; }

.method-item.active .method-card-inner {
  opacity: 1;
  transform: translateX(0) !important;
  border-color: rgba(var(--brand-500-rgb), 0.18);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(var(--brand-500-rgb), 0.04);
}

.method-card-final { border-color: rgba(var(--brand-500-rgb), 0.12) !important; }
.method-item.active .method-card-final {
  border-color: rgba(var(--brand-500-rgb), 0.3) !important;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.25),
    0 0 40px rgba(var(--brand-500-rgb), 0.08) !important;
}

.method-tag {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 10px;
}
.method-desc {
  font-size: 14px;
  color: rgba(var(--text-dark-rgb), 0.5);
  line-height: 1.7;
  margin: 0;
  transition: color var(--duration-base) var(--ease-out);
}
.method-item.active .method-desc { color: rgba(var(--text-dark-rgb), 0.7); }

@media (max-width: 767px) {
  .method-steps .method-vline { left: 22px; transform: none; }
  .method-item {
    grid-template-columns: 48px 1fr !important;
    gap: 0 14px !important;
    margin-bottom: 1.75rem;
  }
  .method-empty { display: none !important; }
  .method-left .method-node-col,
  .method-right .method-node-col { order: 1; }
  .method-left .method-card-inner,
  .method-right .method-card-inner {
    order: 2;
    transform: translateX(10px) !important;
    text-align: left !important;
  }
  .method-dot { width: 44px; height: 44px; }
  .method-card-inner { padding: 18px 20px; }
}

/* ============================================================
   12. Entregáveis — deliver cards (3D tilt)
   ============================================================ */

.deliver-card {
  background: var(--bg-base);
  border: 1px solid rgba(var(--text-dark-rgb), 0.06);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow) var(--ease-out), border-color var(--duration-slow) var(--ease-out);
  transform-style: preserve-3d;
}
.deliver-card::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(var(--brand-500-rgb), 0.5), transparent 50%, rgba(var(--brand-500-rgb), 0.2));
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}
.deliver-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(var(--brand-500-rgb), 0.18);
  border-color: rgba(var(--brand-500-rgb), 0.2);
}
.deliver-card:hover::after { opacity: 1; }
.deliver-card .card-content { transform-style: preserve-3d; }
.deliver-card:hover .card-content { transform: translateZ(16px); }

.deliver-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(var(--brand-500-rgb), 0.12);
}
.deliver-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(var(--brand-650-rgb), 0.15);
  border: 1px solid rgba(var(--brand-500-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  transition: background var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.deliver-card:hover .deliver-icon-wrap {
  background: rgba(var(--brand-500-rgb), 0.18);
  border-color: rgba(var(--brand-500-rgb), 0.6);
  box-shadow: 0 0 20px rgba(var(--brand-500-rgb), 0.2);
}

/* ============================================================
   13. Resultados — metric cards
   ============================================================ */

.metric-card {
  background: var(--bg-base);
  border: 1px solid rgba(var(--brand-500-rgb), 0.12);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-base);
}
.metric-card:hover {
  border-color: rgba(var(--brand-500-rgb), 0.35);
  box-shadow: 0 0 40px rgba(var(--brand-500-rgb), 0.1);
  transform: translateY(-4px);
}
.metric-value {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--brand-grad-signature);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 13px;
  color: rgba(var(--text-dark-rgb), 0.45);
  line-height: 1.5;
  font-weight: 500;
}

/* ============================================================
   14. Sobre — credentials
   ============================================================ */

.about-credential {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.about-credential-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(var(--brand-650-rgb), 0.12);
  border: 1px solid rgba(var(--brand-500-rgb), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   15. Form de aplicação
   ============================================================ */

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--text-dark-rgb), 0.5);
  margin-bottom: 8px;
}

.form-input-wrap { position: relative; }
.form-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(var(--brand-500-rgb), 0.4);
  pointer-events: none;
}

.form-input {
  width: 100%;
  background: rgba(var(--text-dark-rgb), 0.03);
  border: 1px solid rgba(var(--brand-500-rgb), 0.18);
  border-radius: 12px;
  padding: 13px 16px 13px 46px;
  color: var(--text-primary);
  font-size: 16px;
  outline: none;
  transition: var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.form-input::placeholder { color: rgba(var(--text-dark-rgb), 0.2); }
.form-input:focus {
  border-color: rgba(var(--brand-500-rgb), 0.55);
  background: rgba(var(--text-dark-rgb), 0.05);
  box-shadow:
    0 0 0 3px rgba(var(--brand-500-rgb), 0.07),
    0 0 20px rgba(var(--brand-500-rgb), 0.08);
}
select.form-input option {
  background: var(--bg-base);
  color: var(--text-primary);
}
.form-input.error {
  border-color: rgba(239, 68, 68, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08) !important;
}
.form-error-msg {
  font-size: 11px;
  color: rgba(239, 68, 68, 0.85);
  margin-top: 5px;
  display: none;
  padding-left: 2px;
}
.form-error-msg.show { display: block; }

/* Phone field (country dropdown) */
.phone-wrap { display: flex; gap: 0; }

.phone-country-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 13px 10px 13px 14px;
  background: rgba(var(--text-dark-rgb), 0.03);
  border: 1px solid rgba(var(--brand-500-rgb), 0.18);
  border-right: none;
  border-radius: 12px 0 0 12px;
  cursor: pointer;
  white-space: nowrap;
  color: var(--text-primary);
  font-size: 13px;
  font-family: inherit;
  transition: background var(--duration-fast) var(--ease-out), border-color var(--duration-base) var(--ease-out);
  flex-shrink: 0;
  user-select: none;
  position: relative;
}
.phone-country-btn:hover { background: rgba(var(--text-dark-rgb), 0.06); }
.phone-country-btn .flag    { font-size: 16px; line-height: 1; }
.phone-country-btn .dial    { font-size: 12px; color: rgba(var(--text-dark-rgb), 0.55); }
.phone-country-btn .chevron { font-size: 9px;  color: rgba(var(--text-dark-rgb), 0.3); margin-left: 1px; }
.phone-country-btn.open {
  border-color: rgba(var(--brand-500-rgb), 0.55);
  background: rgba(var(--text-dark-rgb), 0.05);
}

.phone-number-input {
  width: 100%;
  background: rgba(var(--text-dark-rgb), 0.03);
  border: 1px solid rgba(var(--brand-500-rgb), 0.18);
  border-left: none;
  border-radius: 0 12px 12px 0;
  padding: 13px 16px;
  color: var(--text-primary);
  font-size: 16px;
  outline: none;
  transition: var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.phone-number-input::placeholder { color: rgba(var(--text-dark-rgb), 0.2); }

.phone-number-input:focus,
.phone-wrap:focus-within .phone-country-btn,
.phone-wrap:focus-within .phone-number-input {
  border-color: rgba(var(--brand-500-rgb), 0.55);
  background: rgba(var(--text-dark-rgb), 0.05);
}
.phone-wrap:focus-within .phone-number-input {
  box-shadow:
    0 0 0 3px rgba(var(--brand-500-rgb), 0.07),
    0 0 20px rgba(var(--brand-500-rgb), 0.08);
}
.phone-number-input.error { border-color: rgba(239, 68, 68, 0.6) !important; }
.phone-wrap:has(.phone-number-input.error) .phone-country-btn {
  border-color: rgba(239, 68, 68, 0.6) !important;
}

.phone-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 200;
  background: var(--bg-base);
  border: 1px solid rgba(var(--brand-500-rgb), 0.25);
  border-radius: 12px;
  min-width: 240px;
  max-height: 280px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(var(--brand-500-rgb), 0.05);
}
.phone-dropdown.open { display: flex; }

.phone-dropdown-search {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(var(--text-dark-rgb), 0.06);
  flex-shrink: 0;
}
.phone-dropdown-search input {
  width: 100%;
  background: rgba(var(--text-dark-rgb), 0.04);
  border: 1px solid rgba(var(--brand-500-rgb), 0.15);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--text-primary);
  font-size: 12px;
  outline: none;
  font-family: inherit;
}
.phone-dropdown-search input::placeholder { color: rgba(var(--text-dark-rgb), 0.25); }

.phone-dropdown-list {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--brand-500-rgb), 0.2) transparent;
}
.phone-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 13px;
  transition: background var(--duration-fast) var(--ease-out);
  color: rgba(var(--text-dark-rgb), 0.75);
}
.phone-dropdown-item:hover {
  background: rgba(var(--brand-500-rgb), 0.07);
  color: var(--text-primary);
}
.phone-dropdown-item.selected {
  background: rgba(var(--brand-500-rgb), 0.1);
  color: var(--brand-500);
}
.phone-dropdown-item .item-flag { font-size: 16px; line-height: 1; flex-shrink: 0; }
.phone-dropdown-item .item-name { flex: 1; }
.phone-dropdown-item .item-code {
  font-size: 11px;
  color: rgba(var(--text-dark-rgb), 0.35);
  flex-shrink: 0;
}

/* Tracking hidden block (form attribution) */
.tracking-section {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--text-dark-rgb), 0.06);
}
.tracking-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(var(--text-dark-rgb), 0.2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tracking-label::before,
.tracking-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(var(--text-dark-rgb), 0.06);
}
.tracking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
@media (min-width: 640px) {
  .tracking-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.tracking-field label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--text-dark-rgb), 0.2);
  margin-bottom: 4px;
}
.tracking-input {
  width: 100%;
  background: rgba(var(--text-dark-rgb), 0.02);
  border: 1px solid rgba(var(--text-dark-rgb), 0.06);
  border-radius: 8px;
  padding: 7px 10px;
  color: rgba(var(--text-dark-rgb), 0.35);
  font-size: 11px;
  font-family: monospace;
  outline: none;
}
.tracking-input:not(:placeholder-shown) {
  color: rgba(var(--brand-500-rgb), 0.6);
  border-color: rgba(var(--brand-500-rgb), 0.15);
}

#form-success { display: none; }

/* ============================================================
   16. Floating CTA
   ============================================================ */

.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================================
   17. Reduced-motion fallback (cobre só animações locais)
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .badge-dot,
  .scroll-indicator,
  .method-journey-label.bottom span {
    animation: none !important;
  }

  .glow-teal-intense:hover,
  .deliver-card:hover,
  .deliver-card:hover .card-content,
  .metric-card:hover,
  .tag-hover:hover,
  .logo-hover:hover,
  .button-hover:hover {
    transform: none !important;
  }
  .logo-hover:hover .logo-icon { animation: none !important; }

  .button-hover::before,
  .button-hover:hover::before {
    transition: none !important;
    left: -100% !important;
  }

  .method-card-inner,
  .method-item.active .method-card-inner,
  .method-right .method-card-inner {
    transition: none !important;
    transform: none !important;
  }
}

/* ============================================================
   18. Tailwind compat layer (migração v4 → DS v4)
   Cobre classes Tailwind remanescentes no markup desta página.
   Escopo local — não vaza para outras seções.
   ============================================================ */

/* Floating stats badge hover (sobre placeholder) — stub para evitar órfã.
   Animação real vem de .is-floating (DS) e .hover-lift (DS). */
.floating-stats-hover { transition: var(--transition-base); }
.floating-stats-hover:hover { transform: translateY(-2px); }

/* ── Reset utilities ── */
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }

/* ── Display ── */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.shrink-0 { flex-shrink: 0; }

/* ── Z-index ── */
.z-10 { z-index: 10; }
.z-\[9999\] { z-index: 9999; }

/* ── Inset / Position ── */
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.left-1\/2 { left: 50%; }
.-bottom-5 { bottom: -1.25rem; }
.-bottom-8 { bottom: -2rem; }
.-bottom-12 { bottom: -3rem; }
.-right-5 { right: -1.25rem; }
.-left-8 { left: -2rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* ── Sizing ── */
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.w-px { width: 1px; }
.w-3\/4 { width: 75%; }
.w-6 { width: 1.5rem; }
.w-9 { width: 2.25rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-48 { width: 12rem; }
.w-96 { width: 24rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-48 { height: 12rem; }
.h-96 { height: 24rem; }

/* ── max-w extras (utilities.css cobre sm/md/lg/xl) ── */
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }

/* ── Aspect ratio ── */
.aspect-\[3\/4\] { aspect-ratio: 3 / 4; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }

/* ── Border radius ── */
.rounded-lg  { border-radius: 0.5rem; }
.rounded-xl  { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* ── Border base + sides ── */
.border    { border-width: 1px; border-style: solid; }
.border-t  { border-top-width: 1px; border-top-style: solid; }
.border-b  { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }

/* ── Border colors (arbitrary) ── */
.border-\[\#EDB852\]\/15 { border-color: rgba(237,184,82,0.15); }
.border-\[\#EDB852\]\/20 { border-color: rgba(237,184,82,0.20); }
.border-\[\#EDB852\]\/30 { border-color: rgba(237,184,82,0.30); }
.border-\[\#EDB852\]\/40 { border-color: rgba(237,184,82,0.40); }
.border-\[\#F2CA7E\]\/50 { border-color: rgba(242,202,126,0.50); }
.border-white\/5         { border-color: rgba(255,255,255,0.05); }

/* ── Backgrounds (arbitrary) ── */
.bg-\[\#010E22\]      { background-color: #010E22; }
.bg-\[\#010E22\]\/95  { background-color: rgba(1,14,34,0.95); }
.bg-\[\#C29B42\]\/20  { background-color: rgba(194,155,66,0.20); }
.bg-\[\#C29B42\]\/30  { background-color: rgba(194,155,66,0.30); }
.bg-white\/10         { background-color: rgba(255,255,255,0.10); }
.bg-neutral-50\/10    { background-color: rgba(250,250,250,0.10); }

/* ── Gradient bg (compat — não há `to-...` em tw runtime, então emulamos) ── */
.bg-gradient-to-br {
  background-image: linear-gradient(135deg, var(--tw-from, transparent), var(--tw-to, transparent));
}
.from-\[\#EDB852\]\/80 { --tw-from: rgba(237,184,82,0.80); }
.from-\[\#EDB852\]\/90 { --tw-from: rgba(237,184,82,0.90); }
.to-\[\#D89830\]\/80   { --tw-to: rgba(216,152,48,0.80); }
.to-\[\#D89830\]\/90   { --tw-to: rgba(216,152,48,0.90); }

/* ── Text color (arbitrary) ── */
.text-\[\#010E22\]      { color: #010E22; }
.text-\[\#EDB852\]      { color: #EDB852; }
.text-\[\#F6F6F6\]      { color: #F6F6F6; }
.text-\[\#F6F6F6\]\/20  { color: rgba(246,246,246,0.20); }
.text-\[\#F6F6F6\]\/30  { color: rgba(246,246,246,0.30); }
.text-\[\#F6F6F6\]\/35  { color: rgba(246,246,246,0.35); }
.text-\[\#F6F6F6\]\/40  { color: rgba(246,246,246,0.40); }
.text-\[\#F6F6F6\]\/45  { color: rgba(246,246,246,0.45); }
.text-\[\#F6F6F6\]\/50  { color: rgba(246,246,246,0.50); }
.text-\[\#F6F6F6\]\/55  { color: rgba(246,246,246,0.55); }
.text-\[\#F6F6F6\]\/60  { color: rgba(246,246,246,0.60); }
.text-\[\#F6F6F6\]\/65  { color: rgba(246,246,246,0.65); }
.text-\[\#F6F6F6\]\/70  { color: rgba(246,246,246,0.70); }
.text-\[\#F6F6F6\]\/75  { color: rgba(246,246,246,0.75); }
.text-\[\#F6F6F6\]\/80  { color: rgba(246,246,246,0.80); }

/* ── Font sizes / weights ── */
.text-xs   { font-size: 0.75rem;  line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem;     line-height: 1.5rem; }
.text-xl   { font-size: 1.25rem;  line-height: 1.75rem; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 900; }

/* ── Tracking ── */
.tracking-tight   { letter-spacing: -0.025em; }
.tracking-wide    { letter-spacing: 0.025em; }
.tracking-widest  { letter-spacing: 0.1em; }

/* ── Leading ── */
.leading-none    { line-height: 1; }
.leading-relaxed { line-height: 1.625; }

/* ── Margin extras (utilities.css cobre 0..8) ── */
.mb-0\.5 { margin-bottom: 0.125rem; }

/* ── Padding extras ── */
.p-1   { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2   { padding: 0.5rem; }
.px-7  { padding-left: 1.75rem;  padding-right: 1.75rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.pl-5  { padding-left: 1.25rem; }
.pb-5  { padding-bottom: 1.25rem; }
.pt-4  { padding-top: 1rem; }
.pt-6  { padding-top: 1.5rem; }
.pt-20 { padding-top: 5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.mt-1  { margin-top: 0.25rem; }

/* ── flex-wrap / col already in DS via utilities; reforço local ── */
.flex-col  { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

/* ── space-y / space-x (Tailwind > * + * pattern) ── */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }

/* ── Order ── */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* ── Opacity ── */
.opacity-70 { opacity: 0.7; }

/* ── transition-all ── */
.transition-all { transition-property: all; transition-duration: 200ms; transition-timing-function: var(--ease-out, cubic-bezier(0,0,.2,1)); }
.duration-300  { transition-duration: 300ms; }

/* ── focus utility ── */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }

/* ── Responsive breakpoints ── */

/* sm (>=640px) — form-grid 2-col already exists; expose col-span-2 */
@media (min-width: 640px) {
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
}

/* md (>=768px) */
@media (min-width: 768px) {
  .md\:block       { display: block; }
  .md\:hidden      { display: none; }
  .md\:flex        { display: flex; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row    { flex-direction: row; }
  .md\:items-center{ align-items: center; }
  .md\:text-base   { font-size: 1rem;     line-height: 1.5rem; }
  .md\:text-lg     { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:p-10        { padding: 2.5rem; }
}

/* lg (>=1024px) */
@media (min-width: 1024px) {
  .lg\:order-1  { order: 1; }
  .lg\:order-2  { order: 2; }
  .lg\:mx-0     { margin-left: 0; margin-right: 0; }
  .lg\:ml-auto  { margin-left: auto; }
}

