/* ==========================================================================
   BUIA MEDIA - PRODUTORA DE PERFORMANCE
   Minimalist + Glassmorphism Design System (Mobile Otimizado & Responsivo)
   Colors: Black (#000000), White (#FFFFFF), Blue (#0071CE), Navy (#002856)
   Fonts: Space Grotesk & Syne
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@700;800&display=swap');

:root {
  --color-black: #000000;
  --color-dark-obsidian: #05070A;
  --color-navy: #002856;
  --color-navy-light: #003775;
  --color-blue-primary: #0071CE;
  --color-blue-glow: rgba(0, 113, 206, 0.4);
  --color-white: #FFFFFF;
  --color-gray-100: #F3F4F6;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  
  --font-headline: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================================================
   POLARYS REVOPS DESIGN SYSTEM (FLOATING CAPSULE GLASS & PILL BUTTONS)
   ========================================================================== */
.polarys-header-wrapper {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 94%;
  max-width: 1200px;
  pointer-events: none;
}

.polarys-navbar-capsule {
  pointer-events: auto;
  background: rgba(10, 15, 26, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 10px 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.polarys-logo-img {
  height: 34px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}
.polarys-logo-img:hover { transform: scale(1.04); }

.polarys-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.polarys-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}
.polarys-link:hover { color: #38BDF8; }

.polarys-nav-actions {
  display: flex;
  align-items: center;
}

.btn-polarys-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #ffffff !important;
  color: #000000 !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 9999px !important;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-polarys-white:hover {
  background: #f1f5f9 !important;
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.5);
}

.btn-polarys-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 9999px !important;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-polarys-glass:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: scale(1.03);
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-stat-desc {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.polarys-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38BDF8;
  box-shadow: 0 0 12px #38BDF8;
  animation: polarysPulse 2s infinite ease-in-out;
}

@keyframes polarysPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

@media (max-width: 868px) {
  .polarys-nav-links { display: none; }
  .polarys-navbar-capsule { padding: 10px 18px; }
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Glassmorphism Reusable Utility Class */
.glass-panel {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass-panel {
    background: rgba(10, 16, 28, 0.92) !important;
  }
}

/* FLOATING CURSOR / TOUCH GLOW */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 206, 0.38) 0%, rgba(0, 113, 206, 0.1) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
  will-change: transform, left, top;
}

/* CINEMATIC 3-PHASE POP-UP & LOADING REVEAL OVERLAY */
.netflix-intro-overlay {
  position: fixed;
  inset: 0;
  background-color: #05080f;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  perspective: 1000px;
  backface-visibility: hidden;
  will-change: opacity, transform;
  transform: translate3d(0, 0, 0);
  animation: netflixOverlayFadeOut 3.0s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.intro-content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.buia-pop-logo-img {
  width: 70vw;
  max-width: 440px;
  height: auto;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  animation: buiaLogoPopAndExpand 3.0s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

/* CINEMATIC WHITE PROGRESS LINE UNDERNEATH LOGO */
.buia-progress-track {
  width: 54vw;
  max-width: 290px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-top: -6px;
  animation: progressTrackFadeOut 3.0s forwards;
}

.buia-progress-fill {
  height: 100%;
  width: 0%;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.85);
  animation: lineFillLeftToRight 3.0s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lineFillLeftToRight {
  0%, 12% {
    width: 0%;
  }
  65% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

@keyframes progressTrackFadeOut {
  0%, 62% {
    opacity: 1;
    transform: scale(1);
  }
  68%, 100% {
    opacity: 0;
    transform: scale(0.9);
    display: none !important;
  }
}

/* 3-PHASE LOGO POP & CLEAN 3D ZOOM KEYFRAMES:
   0s - 0.4s: Pop-up entry (0 -> 1)
   0.4s - 2.0s: Holds steady while line fills left to right
   2.0s - 3.0s: Expands in clean 3D zoom (1 -> 40)
*/
@keyframes buiaLogoPopAndExpand {
  0% {
    transform: translate3d(0, 0, 0) scale(0);
    opacity: 0;
  }
  12% {
    transform: translate3d(0, 0, 0) scale(1.08);
    opacity: 1;
  }
  18% {
    transform: translate3d(0, 0, 0) scale(1.0);
    opacity: 1;
  }
  65% {
    transform: translate3d(0, 0, 0) scale(1.0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(40);
    opacity: 1;
  }
}

@keyframes netflixOverlayFadeOut {
  0%, 90% {
    background-color: #05080f;
    opacity: 1;
    visibility: visible;
  }
  100% {
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    display: none !important;
  }
}

/* CUSTOM INTERACTIVE ROTATING TEXT & BLUE GLOW CURSOR FOLLOWER */
.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  margin-left: -70px;
  margin-top: -70px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.05s ease-out;
  will-change: transform, opacity;
  transform: translate3d(-500px, -500px, 0);
}

.custom-cursor-follower.visible {
  opacity: 1 !important;
}

.cursor-blue-glow {
  position: absolute;
  inset: 15px;
  background: radial-gradient(circle, rgba(0, 113, 206, 0.85) 0%, rgba(0, 113, 206, 0.4) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(16px);
}

.cursor-text-ring {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinCursorText 8s linear infinite;
  transform-origin: center center;
}

.cursor-text-ring svg text {
  font-family: var(--font-syne), sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  fill: #0099FF;
  text-shadow: 0 0 12px #0071CE, 0 0 20px rgba(0, 113, 206, 0.9);
}

@keyframes spinCursorText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* GARANTIA ABSOLUTA DE TOQUE E CLIQUE EM DISPOSITIVOS MÓVEIS */
.faq-question-minimal,
.tab-btn,
.btn-toggle-more,
.portfolio-card,
.testimonial-card,
[data-video-url],
.btn {
  position: relative;
  z-index: 100 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 113, 206, 0.2);
}

/* ELEGANT & SMOOTH SCROLL REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* HERO E SEÇÕES PRINCIPAIS SEMPRE VISÍVEIS POR SEGURANÇA */
.hero .reveal-on-scroll,
section .reveal-on-scroll {
  opacity: 1 !important;
  transform: none !important;
}

/* MOBILE TOUCH RIPPLE ANIMATION */
.touch-ripple {
  position: fixed;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.65) 0%, rgba(0, 113, 206, 0.3) 60%, transparent 80%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 999999;
  animation: touchRippleAnim 0.45s ease-out forwards;
}

@keyframes touchRippleAnim {
  0% {
    transform: scale(0.3);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-stretch: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

p {
  color: var(--color-gray-300);
}

a {
  color: inherit;
  text-decoration: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  z-index: 3;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-blue-primary) !important;
  color: var(--color-white) !important;
  box-shadow: 0 4px 20px var(--color-blue-glow);
  opacity: 1 !important;
}

.btn-primary:hover {
  background: #0082ea !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 113, 206, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--color-blue-primary);
  color: var(--color-blue-primary);
  background: rgba(0, 113, 206, 0.1);
}

/* HEADER & FLOATING SCROLL STATE */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1160px;
  padding: 12px 28px;
  border-radius: 20px;
  background: rgba(0, 40, 86, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 113, 206, 0.35);
  box-shadow: 0 10px 40px rgba(0, 113, 206, 0.35), 0 4px 20px rgba(0, 0, 0, 0.6);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-300);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-blue-primary);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 70% 30%, rgba(0, 40, 86, 0.8) 0%, var(--color-black) 75%);
  overflow: hidden;
  z-index: 2;
}

.hero-brand-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg stroke='%230071CE' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='40' y1='15' x2='40' y2='65'/%3E%3Cline x1='18.35' y1='27.5' x2='61.65' y2='52.5'/%3E%3Cline x1='18.35' y1='52.5' x2='61.65' y2='27.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 113, 206, 0.15);
  border: 1px solid var(--color-blue-primary);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-blue-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 20px;
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-title span {
  color: var(--color-blue-primary);
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* HERO VERTICAL REEL FRAME */
.hero-reel-card {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--color-blue-primary);
  box-shadow: 0 15px 45px rgba(0, 113, 206, 0.45);
  background: #000;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  line-height: 0;
  font-size: 0;
}

.hero-reel-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 113, 206, 0.65);
}

.hero-reel-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  background: #000;
}

.hero-reel-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
}

.hero-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  z-index: 5;
  line-height: 1.4;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(70, 70, 70, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  z-index: 3;
}

.hero-reel-card:hover .play-btn-circle,
.testimonial-video-box:hover .play-btn-circle {
  transform: translate(-50%, -50%) scale(1.12);
  background: rgba(0, 113, 206, 0.88);
  border-color: rgba(255, 255, 255, 0.8);
}

.play-btn-circle svg,
.play-icon {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
  color: var(--color-white);
  margin-left: 3px;
  font-size: 1.3rem;
  line-height: 1;
}

/* MARQUEE / TICKER FAIXA DE SERVIÇOS */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  background: rgba(0, 40, 86, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 113, 206, 0.25);
  border-bottom: 1px solid rgba(0, 113, 206, 0.25);
  padding: 16px 0;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.marquee-star {
  color: var(--color-blue-primary);
  font-size: 1.2rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Client Logos Bar */
.clients-bar {
  padding: 50px 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.clients-grid {
  display: flex;
  align-items: center;
  justify-content: center !important;
  text-align: center !important;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.client-name-tag {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  text-align: center !important;
}

.client-name-tag:hover {
  color: var(--color-white);
  transform: scale(1.05);
}

.extra-client {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.extra-client.visible {
  display: inline-block !important;
  opacity: 1 !important;
  animation: fadeInClient 0.4s ease forwards;
}

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

.clients-bar-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn-toggle-more {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.btn-toggle-more:hover {
  background: rgba(0, 113, 206, 0.25);
  border-color: var(--color-blue-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 113, 206, 0.3);
}

/* Performance Section */
.performance-section {
  padding: 90px 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.performance-card-box {
  background: rgba(0, 40, 86, 0.35);
  border: 1px solid var(--color-blue-primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.performance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.performance-chart-title {
  font-size: 2rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.performance-chart-title span {
  color: var(--color-blue-primary);
}

.performance-summary-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-100);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Portfolio Section */
.section {
  padding: 90px 0;
  position: relative;
  z-index: 2;
  background: transparent;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  color: var(--color-blue-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-gray-300);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--color-blue-primary);
  color: var(--color-white);
  border-color: var(--color-blue-primary);
  box-shadow: 0 4px 20px var(--color-blue-glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* EMBEDSOCIAL WIDGET INTEGRATION (100% Clean Dark Mode) */
.embedsocial-container-box {
  grid-column: 1 / -1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 113, 206, 0.35);
  background: rgba(0, 40, 86, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px;
}

.embedsocial-hashtag .es-widget-branding,
.embedsocial-hashtag .feed-powered-by-es {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* PORTFOLIO CARD & THUMB WRAPPERS */
.portfolio-card {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  border: none !important;
  box-shadow: none;
  transition: var(--transition-normal);
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border: none !important;
  box-shadow: 0 16px 40px rgba(0, 113, 206, 0.25);
}

.portfolio-thumb-wrapper.ratio-vertical,
.hero-reel-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.portfolio-card-img,
.hero-reel-thumb-img,
.direct-mp4-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  background: #000;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  z-index: 2;
  border-radius: 20px;
}

.play-btn-circle-sm {
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 52px;
  height: 52px;
  background: var(--color-blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--color-blue-glow);
  transition: transform 0.3s ease;
}

.portfolio-card:hover .play-btn-circle-sm {
  transform: scale(1.15);
}

.play-btn-circle-sm svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
  margin-left: 2px;
}

.portfolio-card-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-blue-primary);
  text-transform: lowercase;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 113, 206, 0.3);
}

.portfolio-thumb-wrapper.ratio-horizontal {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px 20px 0 0;
  background: #000;
}

.portfolio-thumb-wrapper.ratio-horizontal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.portfolio-info {
  padding: 16px;
}

.portfolio-client {
  color: var(--color-blue-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.portfolio-title {
  font-size: 1rem;
  line-height: 1.3;
}

/* Marketing Investment Calculator */
.calculator-section {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-box {
  background: rgba(0, 40, 86, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-blue-primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.slider-label {
  font-weight: 600;
  font-size: 1rem;
}

.slider-value {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-blue-primary);
}

.range-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-blue-primary);
  cursor: pointer;
  box-shadow: 0 0 15px var(--color-blue-glow);
}

.calc-results {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.benchmark-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 113, 206, 0.15);
  border: 1px solid var(--color-blue-primary);
  border-radius: var(--radius-pill);
  color: var(--color-blue-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* CLIENT TESTIMONIALS SECTION (DEPOIMENTOS) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.testimonial-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 113, 206, 0.3);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-blue-primary);
  box-shadow: 0 16px 48px rgba(0, 113, 206, 0.35);
}

.testimonial-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.testimonial-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30% !important;
  transition: transform 0.4s ease;
}

.testimonial-card-1 .testimonial-thumb {
  object-position: center 25% !important;
}

.testimonial-card-2 .testimonial-thumb {
  object-position: center 30% !important;
}

.testimonial-card-3 .testimonial-thumb {
  object-position: center 25% !important;
}

.testimonial-video-box:hover .testimonial-thumb {
  transform: scale(1.06);
}

.testimonial-duration-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-client-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--color-white);
}

.testimonial-quote {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-gray-300);
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071CE 0%, #003B73 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-white);
  border: 2px solid rgba(0, 113, 206, 0.5);
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
}

.author-role {
  font-size: 0.78rem;
  color: var(--color-blue-primary);
  font-weight: 600;
}

/* "Sua jornada conosco" Methodology Section */
.methodology-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.method-title-item {
  background: rgba(0, 40, 86, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--color-blue-primary);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.method-title-item:hover {
  transform: translateX(6px);
  background: rgba(0, 113, 206, 0.25);
  border-color: var(--color-blue-primary);
}

/* MINIMALIST FAQ ACCORDION */
.faq-list-minimal {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item-minimal {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition-fast);
}

.faq-item-minimal:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question-minimal {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question-minimal:hover {
  color: var(--color-blue-primary);
}

.faq-icon-minimal {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-gray-400);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item-minimal.active .faq-icon-minimal {
  transform: rotate(45deg);
  color: var(--color-blue-primary);
}

.faq-answer-minimal {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--color-gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item-minimal.active .faq-answer-minimal {
  max-height: 500px !important;
  padding-bottom: 24px;
}

/* Contact / Lead Form */
.contact-section {
  padding: 90px 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.form-box {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(0, 40, 86, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 113, 206, 0.35);
  border-radius: var(--radius-lg);
  padding: 48px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-gray-300);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-blue-primary);
  box-shadow: 0 0 15px var(--color-blue-glow);
}

/* ULTRA MINIMALIST FOOTER */
.simple-footer-minimal {
  background: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-content-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
}

.footer-subtitle-minimal {
  font-family: 'Asgard', 'Outfit', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-blue-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contacts-minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--color-gray-300);
  margin-top: 8px;
}

.footer-contacts-minimal a {
  transition: var(--transition-fast);
}

.footer-contacts-minimal a:hover {
  color: var(--color-blue-primary);
}

/* YOUTUBE VIEWS BADGE OVERLAY */
.yt-views-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Modal Player (Pop-up Frameless Video) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 420px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.modal-video-box {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 82vh;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 113, 206, 0.5);
  box-shadow: 0 20px 60px rgba(0, 113, 206, 0.4), 0 0 100px rgba(0, 113, 206, 0.2);
}

.modal-video-box iframe {
  width: 100%;
  height: 100%;
  border: 0 !important;
  display: block;
}

/* Prefers Reduced Motion Safety */
@media (prefers-reduced-motion: reduce) {
  .loading-screen {
    display: none !important;
  }
  .cursor-glow {
    display: none !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .marquee-track {
    animation: none !important;
  }
  .header.scrolled {
    transition: none !important;
  }
}

/* MOBILE RESPONSIVENESS & OVERFLOW FIXES */
@media (max-width: 992px) {
  .hero-grid, .calc-box {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-reel-card {
    max-width: 280px;
  }
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 14px;
  }
  .nav-links {
    display: none;
  }
  .header {
    padding: 12px 0;
  }
  .header.scrolled {
    width: calc(100% - 20px);
    padding: 8px 14px;
    top: 8px;
  }
  .logo-link img {
    height: 28px;
  }
  .header .nav-cta .btn {
    font-size: 0.72rem !important;
    padding: 8px 14px !important;
    white-space: nowrap !important;
    letter-spacing: 0.02em !important;
  }
  .hero {
    padding-top: 90px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .hero-title {
    font-size: 1.65rem !important;
    line-height: 1.22 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 16px;
  }
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .badge-tag {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 16px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    font-size: 0.82rem;
  }
  .hero-reel-card {
    max-width: 240px;
    margin-top: 12px;
  }
  .performance-card-box {
    padding: 24px 16px;
  }
  .performance-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .performance-chart-title {
    font-size: 1.4rem;
  }
  .performance-header span {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
    white-space: nowrap !important;
  }
  .form-box, .calc-box {
    padding: 20px 14px;
  }
  .calc-box {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .slider-label {
    font-size: 0.9rem;
  }
  .slider-value {
    font-size: 1.6rem !important;
  }
  .calc-results {
    padding: 20px 14px;
  }
  .calc-results .btn {
    width: 100%;
    font-size: 0.78rem !important;
    padding: 12px 10px !important;
    white-space: nowrap !important;
  }
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    gap: 14px;
  }
  .portfolio-card[data-category="horizontal"] {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }
  .portfolio-info {
    padding: 10px;
  }
  .portfolio-title {
    font-size: 0.85rem;
  }
  .tab-btn {
    padding: 8px 14px;
    font-size: 0.72rem;
  }
  .cursor-glow {
    width: 240px;
    height: 240px;
  }
}

/* ==========================================================================
   MODO CLARO (LIGHT MODE) PARA O SITE PRINCIPAL (INDEX.HTML)
   ========================================================================== */
body.light-mode {
  background-color: #F8FAFC !important;
  color: #0F172A !important;
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6 {
  color: #0F172A !important;
}

body.light-mode .header {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom-color: #E2E8F0 !important;
}

body.light-mode .nav-link {
  color: #334155 !important;
}

body.light-mode .nav-link:hover {
  color: #0071CE !important;
}

body.light-mode .hero-description {
  color: #334155 !important;
}

body.light-mode .glass-panel,
body.light-mode .card,
body.light-mode .step-card,
body.light-mode .faq-item,
body.light-mode .calculator-container {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  color: #0F172A !important;
}

body.light-mode .step-title,
body.light-mode .faq-question,
body.light-mode .card-title {
  color: #0F172A !important;
}

body.light-mode .step-desc,
body.light-mode .faq-answer,
body.light-mode .card-text {
  color: #334155 !important;
}

body.light-mode .marquee-wrapper {
  background: #F1F5F9 !important;
  border-color: #E2E8F0 !important;
}

body.light-mode .marquee-item {
  color: #0F172A !important;
}

body.light-mode .clients-bar {
  background: #F8FAFC !important;
}

body.light-mode .client-name-tag {
  background: #FFFFFF !important;
  border-color: #CBD5E1 !important;
  color: #0F172A !important;
}

body.light-mode .performance-section {
  background: #F1F5F9 !important;
}

body.light-mode .form-label {
  color: #334155 !important;
}

body.light-mode .form-input,
body.light-mode .form-select,
body.light-mode .form-textarea {
  background: #FFFFFF !important;
  color: #0F172A !important;
  border-color: #CBD5E1 !important;
}

body.light-mode .simple-footer-minimal {
  background: #FFFFFF !important;
  border-top-color: #E2E8F0 !important;
}

body.light-mode .footer-subtitle-minimal {
  color: #64748B !important;
}

body.light-mode .footer-contacts-minimal a {
  color: #0071CE !important;
}

body.light-mode .btn-secondary {
  background: #F1F5F9 !important;
  color: #0F172A !important;
  border-color: #CBD5E1 !important;
}

body.light-mode .btn-secondary:hover {
  background: #E2E8F0 !important;
}

