/* ============================================================
   VICTOR BRIDGE — styles.css
   Design System: Luxury Corporate / Editorial Dark
   Fontes: Cormorant Garant (display) + Outfit (body)
   Crédito: Desenvolvido por Lucas Pane (www.lcspane.com)
   ============================================================ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --ink: #08090c;
  --ink-90: #0d0f15;
  --ink-80: #13151d;
  --ink-70: #1a1d28;
  --ink-60: #222535;
  --ink-50: #2d3147;
  --muted: #5c6380;
  --muted-light: #8a95b5;
  --off-white: #eee9e0;
  --white: #f8f7f4;
  --gold: #c4973a;
  --gold-light: #e0b858;
  --gold-faint: rgba(196, 151, 58, 0.08);
  --gold-glow: rgba(196, 151, 58, 0.18);
  --blue-deep: #0b2d52;
  --blue-accent: #1a5fa8;

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --section-py: 120px;
  --section-py-sm: 72px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);
  --shadow-hover: 0 8px 48px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 24px rgba(196, 151, 58, 0.18);

  --trans-fast: all 0.18s ease;
  --trans-medium: all 0.32s ease;
  --trans-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--off-white);
  background-color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ─── TIPOGRAFIA GLOBAL ──────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-tag.centered {
  display: flex;
  justify-content: center;
}
.section-tag.light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title.centered {
  text-align: center;
}
.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted-light);
  max-width: 580px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.7;
}

.body-text {
  font-size: 1.02rem;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

.body-text.light {
  color: rgba(238, 233, 224, 0.65);
}
.body-text strong {
  color: var(--off-white);
  font-weight: 600;
}

.gold-italic {
  font-style: italic;
  color: var(--gold);
}

/* ─── BOTÕES ─────────────────────────────────────────────────── */
.btn-primary-vb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: var(--trans-medium);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary-vb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-110%);
  transition: transform 0.4s ease;
}

.btn-primary-vb:hover {
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary-vb:hover::after {
  transform: translateX(0);
}

.btn-ghost-vb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(238, 233, 224, 0.2);
  transition: var(--trans-medium);
  cursor: pointer;
}

.btn-ghost-vb:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-faint);
  transform: translateY(-2px);
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal-fade,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  transform: translateX(-32px);
}
.reveal-right {
  transform: translateX(32px);
}

.reveal-fade.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
#mainNav {
  padding: 20px 0;
  background: transparent;
  transition: var(--trans-slow);
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 12px 0;
  background: rgba(8, 9, 12, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(196, 151, 58, 0.1);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.brand-accent {
  color: var(--gold);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(238, 233, 224, 0.7) !important;
  padding: 8px 14px !important;
  transition: var(--trans-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.28s ease;
}

.nav-link:hover {
  color: var(--off-white) !important;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--gold) !important;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--ink) !important;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--trans-medium);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.navbar-toggler {
  border: none;
  background: transparent;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toggler-icon {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--off-white);
  transition: var(--trans-fast);
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(13, 15, 21, 0.96);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(196, 151, 58, 0.1);
    padding: 16px 0 24px;
    margin-top: 8px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .nav-link::after {
    display: none;
  }
  .nav-cta {
    margin: 12px 16px 0;
    display: block;
    text-align: center;
  }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink-90);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 70% 50%,
      rgba(11, 45, 82, 0.55) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 80% 80% at 10% 80%,
      rgba(196, 151, 58, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #060709 0%, #0d0f18 50%, #080c14 100%);
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 151, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 151, 58, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(11, 45, 82, 0.5);
  right: -100px;
  top: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(196, 151, 58, 0.08);
  left: -80px;
  bottom: 80px;
  animation: orbFloat2 16s ease-in-out infinite;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(26, 95, 168, 0.12);
  right: 30%;
  top: 20%;
  animation: orbFloat1 20s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 20px) scale(0.95);
  }
}

@keyframes orbFloat2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -20px);
  }
}

.hero-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(196, 151, 58, 0.04);
  user-select: none;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.label-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(196, 151, 58, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px transparent;
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.headline-outline {
  -webkit-text-stroke: 1.5px rgba(238, 233, 224, 0.5);
  color: transparent;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(138, 149, 181, 0.9);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(138, 149, 181, 0.8);
  padding: 4px 0;
}

.trust-item i,
.fa-handshake {
  color: var(--gold);
  font-size: 1rem;
}

.trust-sep {
  width: 1px;
  height: 16px;
  background: rgba(196, 151, 58, 0.25);
  margin: 0 16px;
}

/* ─── GLOBO SVG ──────────────────────────────────────────────── */
.hero-globe-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.globe-svg {
  width: 100%;
  height: 100%;
}

.globe-node {
  animation: nodePulse 3s ease-in-out infinite;
}
.globe-node:nth-child(odd) {
  animation-delay: 0.8s;
}
.globe-node:nth-child(even) {
  animation-delay: 1.6s;
}

@keyframes nodePulse {
  0%,
  100% {
    r: 4;
    filter: none;
  }
  50% {
    r: 6;
    filter: drop-shadow(0 0 6px rgba(196, 151, 58, 0.8));
  }
}

.pulse-ring {
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    r: 14;
    opacity: 0.3;
  }
  100% {
    r: 30;
    opacity: 0;
  }
}

/* Stat cards flutuantes redesenhados como proposta de valor */
.float-stat {
  position: absolute;
  background: rgba(13, 15, 21, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 151, 58, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-tr {
  top: 20px;
  right: -20px;
}
.stat-bl {
  bottom: 30px;
  left: -30px;
}

.fs-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.fs-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-light);
  line-height: 1.4;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  30% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  60% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

.scroll-indicator span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── VALUES BAR — substitui a stats bar numérica ────────────── */
.values-bar {
  background: var(--ink-70);
  border-top: 1px solid rgba(196, 151, 58, 0.1);
  border-bottom: 1px solid rgba(196, 151, 58, 0.1);
}

.value-box {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(196, 151, 58, 0.08);
  position: relative;
  transition: var(--trans-medium);
  cursor: default;
}

.value-box:last-child {
  border-right: none;
}

.value-box:hover {
  background: rgba(196, 151, 58, 0.04);
}

.value-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.value-box:hover::before {
  transform: scaleX(1);
}

.vb-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 10px;
  transition: var(--trans-medium);
}

.value-box:hover .vb-icon {
  transform: scale(1.1);
}

.vb-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.vb-sub {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ─── ABOUT SECTION ──────────────────────────────────────────── */
.about-section {
  padding: var(--section-py) 0;
  background: var(--ink);
}

.about-visual-wrap {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(196, 151, 58, 0.12),
    rgba(11, 45, 82, 0.3)
  );
  z-index: 1;
  border-radius: var(--radius-lg);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 0.8s ease;
}

.about-img-frame:hover .about-img {
  transform: scale(1.03);
}

.about-accent-box {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--ink-70);
  border: 1px solid rgba(196, 151, 58, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  max-width: 220px;
}

.about-accent-box i {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}

.about-accent-box strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-white);
}

.about-accent-box p {
  font-size: 0.75rem;
  color: var(--muted-light);
  margin: 0;
  line-height: 1.4;
}

/* Badge de identidade — sem anos falsos */
.about-identity-badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(196, 151, 58, 0.3);
}

.badge-icon {
  font-size: 1.5rem;
  color: var(--ink);
}

.badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(8, 9, 12, 0.7);
  line-height: 1.4;
}

/* Pilares */
.pillars-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(196, 151, 58, 0.04);
  border: 1px solid rgba(196, 151, 58, 0.1);
  border-radius: var(--radius-md);
  transition: var(--trans-medium);
}

.pillar-item:hover {
  background: rgba(196, 151, 58, 0.08);
  border-color: rgba(196, 151, 58, 0.2);
  transform: translateX(4px);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(196, 151, 58, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.pillar-text h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 3px;
}

.pillar-text p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ─── SERVICES SECTION ───────────────────────────────────────── */
.services-section {
  padding: var(--section-py) 0;
  background: var(--ink-90);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(196, 151, 58, 0.2),
    transparent
  );
}

.section-header {
  margin-bottom: 56px;
}

.service-card {
  background: var(--ink-70);
  border: 1px solid rgba(196, 151, 58, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--trans-slow);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--blue-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(196, 151, 58, 0.06),
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.service-card:hover {
  background: var(--ink-60);
  border-color: rgba(196, 151, 58, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover::after {
  opacity: 1;
}

.sc-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(196, 151, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--trans-medium);
}

.service-card:hover .sc-icon-wrap {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.05);
}

.sc-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.sc-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.sc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(196, 151, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: var(--trans-medium);
}

.service-card:hover .sc-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(45deg);
}

/* ─── DIFFERENTIALS SECTION ──────────────────────────────────── */
.differentials-section {
  padding: var(--section-py) 0;
  background: var(--ink-80);
  position: relative;
  overflow: hidden;
}

.diff-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(196, 151, 58, 0.06) 1.5px,
    transparent 1.5px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

.diff-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 100% at 0% 50%,
    rgba(8, 9, 12, 0.8),
    transparent
  );
}

.diff-card {
  background: rgba(13, 15, 21, 0.6);
  border: 1px solid rgba(196, 151, 58, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--trans-medium);
}

.diff-card:hover {
  border-color: rgba(196, 151, 58, 0.25);
  background: rgba(13, 15, 21, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.diff-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(196, 151, 58, 0.15);
  line-height: 1;
  margin-bottom: 12px;
  transition: var(--trans-medium);
}

.diff-card:hover .diff-num {
  color: rgba(196, 151, 58, 0.4);
}

.diff-card h5 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.diff-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── PROCESS SECTION ────────────────────────────────────────── */
.process-section {
  padding: var(--section-py) 0;
  background: var(--ink);
  position: relative;
}

.process-timeline {
  position: relative;
  margin-top: 8px;
}

.process-connector {
  position: absolute;
  top: 56px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(196, 151, 58, 0.2) 20%,
    rgba(196, 151, 58, 0.2) 80%,
    transparent
  );
  z-index: 0;
}

@media (max-width: 991px) {
  .process-connector {
    display: none;
  }
}

.process-steps-row {
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
  padding: 8px 4px;
}

.ps-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.ps-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--ink-70);
  border: 1px solid rgba(196, 151, 58, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 16px;
  transition: var(--trans-medium);
}

.process-step:hover .ps-icon-wrap,
.ps-final .ps-icon-wrap {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.08);
}

.ps-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.ps-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ─── CTA / CONTACT SECTION ──────────────────────────────────── */
.cta-section {
  padding: var(--section-py) 0;
  background: var(--ink-80);
  position: relative;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 0% 50%,
      rgba(11, 45, 82, 0.4),
      transparent
    ),
    radial-gradient(
      ellipse 50% 60% at 100% 100%,
      rgba(196, 151, 58, 0.06),
      transparent
    );
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 24px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(196, 151, 58, 0.12);
  border-radius: var(--radius-md);
  background: rgba(13, 15, 21, 0.4);
  transition: var(--trans-medium);
  color: inherit;
}

.channel-item:hover {
  border-color: rgba(196, 151, 58, 0.3);
  background: rgba(196, 151, 58, 0.06);
  transform: translateX(4px);
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.channel-wa .channel-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}
.channel-email .channel-icon {
  background: rgba(26, 95, 168, 0.2);
  color: #7eb3e8;
}

.channel-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.channel-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.channel-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--off-white);
}

.channel-arrow {
  color: var(--muted);
  font-size: 0.85rem;
  transition: var(--trans-fast);
}
.channel-item:hover .channel-arrow {
  color: var(--gold);
  transform: translate(2px, -2px);
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(196, 151, 58, 0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted-light);
}

.response-badge i {
  color: var(--gold);
}
.response-badge strong {
  color: var(--gold);
}

/* ─── FORMULÁRIO ─────────────────────────────────────────────── */
#contactForm button:disabled {
  background: #2424246b;
  border: 1px solid #363636;
}

#contactForm button:disabled:hover {
  box-shadow: none;
}

.contact-form-card {
  background: var(--ink-70);
  border: 1px solid rgba(196, 151, 58, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.field-group label span {
  color: var(--gold);
}

.field-input {
  background: rgba(8, 9, 12, 0.5);
  border: 1px solid rgba(196, 151, 58, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 100%;
  transition: var(--trans-fast);
  outline: none;
  appearance: none;
}

.field-input:focus {
  border-color: var(--gold);
  background: rgba(8, 9, 12, 0.8);
  box-shadow: 0 0 0 3px rgba(196, 151, 58, 0.1);
}

.field-input::placeholder {
  color: rgba(138, 149, 181, 0.4);
}
.field-textarea {
  resize: vertical;
  min-height: 110px;
}

.field-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A95B5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field-select option {
  background: var(--ink-70);
  color: var(--off-white);
}

.btn-submit-vb {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--trans-medium);
  position: relative;
  overflow: hidden;
}

.btn-submit-vb:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 151, 58, 0.35);
}

.btn-submit-vb:active {
  transform: translateY(0);
}

.form-success-msg {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-md);
  margin-top: 16px;
}

.form-success-msg i {
  font-size: 1.5rem;
  color: #25d366;
  flex-shrink: 0;
}
.form-success-msg strong {
  display: block;
  font-size: 0.92rem;
  color: var(--off-white);
  margin-bottom: 2px;
}
.form-success-msg p {
  font-size: 0.82rem;
  color: var(--muted-light);
  margin: 0;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.main-footer {
  background: var(--ink-90);
  border-top: 1px solid rgba(196, 151, 58, 0.1);
}

.footer-body {
  padding: 72px 0 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.fs-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 151, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--muted);
  transition: var(--trans-fast);
}

.fs-link:hover {
  background: rgba(196, 151, 58, 0.08);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-links a::before {
  content: '—';
  font-size: 0.6rem;
  color: rgba(196, 151, 58, 0.3);
  flex-shrink: 0;
  transition: var(--trans-fast);
}

.footer-links a:hover::before {
  color: var(--gold);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.footer-contact i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(196, 151, 58, 0.06);
  padding: 20px 0;
}

.footer-copy,
.footer-slogan {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.footer-slogan {
  font-style: italic;
  color: rgba(196, 151, 58, 0.5);
}

/* ─── FLOATING ELEMENTS ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--trans-medium);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  color: white;
}

.wf-tooltip {
  position: absolute;
  right: 68px;
  background: var(--ink-70);
  color: var(--off-white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  border: 1px solid rgba(196, 151, 58, 0.15);
}

.whatsapp-float:hover .wf-tooltip {
  opacity: 1;
}

.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--ink-60);
  border: 1px solid rgba(196, 151, 58, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: var(--trans-medium);
  box-shadow: var(--shadow-card);
}

.back-to-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top-btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}

/* ─── DETALHES FINAIS ────────────────────────────────────────── */
::selection {
  background: rgba(196, 151, 58, 0.25);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: rgba(196, 151, 58, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ─── RESPONSIVIDADE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-globe-wrap {
    width: 360px;
    height: 360px;
  }
  .globe-svg {
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 991px) {
  :root {
    --section-py: var(--section-py-sm);
  }
  .hero-headline {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
  .hero-watermark {
    font-size: 5rem;
    opacity: 0.03;
  }
  .about-img {
    height: 360px;
  }
  .about-accent-box {
    right: 12px;
  }
  .about-identity-badge {
    left: 12px;
  }
}

@media (max-width: 767px) {
  .hero-ctas {
    gap: 10px;
  }
  .btn-primary-vb,
  .btn-ghost-vb {
    padding: 12px 22px;
    font-size: 0.85rem;
  }
  .trust-sep {
    display: none;
  }
  .hero-trust {
    gap: 12px;
  }
  .trust-item {
    font-size: 0.78rem;
  }
  .value-box {
    padding: 22px 14px;
  }
  .float-stat {
    display: none;
  }
  .about-accent-box {
    position: static;
    margin-top: 16px;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .about-identity-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }
  .about-visual-wrap {
    display: flex;
    flex-direction: column;
  }
  .footer-body {
    padding: 48px 0 32px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .hero-headline {
    font-size: 2.4rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .service-card {
    padding: 24px 20px;
  }
  .contact-form-card {
    padding: 24px 18px;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .back-to-top-btn {
    display: none;
  }
}

/* ─── FORM ERROR MESSAGE ─────────────────────────────────────── */
.form-error-msg {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(220, 80, 80, 0.08);
  border: 1px solid rgba(220, 80, 80, 0.3);
  border-radius: var(--radius-md);
  margin-top: 16px;
  color: rgba(220, 80, 80, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-error-msg i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}
