/* ==========================================================================
   FEIT - Master Stylesheet (Ultra-Optimized & Modular)
   ========================================================================== */

/* --- 1. Core Variables & Base Reset --- */
:root {
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-nokora: 'Nokora', sans-serif;
  --font-orbitron: 'Orbitron', sans-serif;
  --color-green-brand: #619A31;
  --color-green-vibrant: #72B839;
  --color-green-glow: rgba(97, 154, 49, 0.4);
  --color-title-white: rgba(255, 255, 255, 0.80);
  --color-paragraph-white: rgba(255, 255, 255, 0.60);
  --color-text-white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  width: 100%;
  min-height: 100vh;
  background-color: #030406;
  color: var(--color-text-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Shared Fullscreen Overlays Shorthand */
.hero-bg-fallback, .hero-video, .hero-darken-overlay,
.bg-darken-overlay, .reveal-overlay, .torch-light,
.solutions-bg, .solutions-dark-overlay, .card-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ==========================================================================
   AWWWARDS-LEVEL PRELOADER & TRANSITION
   ========================================================================== */
body.preloader-active {
  overflow: hidden !important;
}

.preloader-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #030406;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 1.1s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.6s ease 0.5s;
}

.preloader-overlay.preloader-done {
  transform: translateY(-100%);
  pointer-events: none;
}

.preloader-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.18) 0%, rgba(97, 154, 49, 0.08) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: preloaderPulseGlow 3s ease-in-out infinite;
}

@keyframes preloaderPulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.preloader-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  max-width: 420px;
  width: 90%;
}

.preloader-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-wizard-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(50, 217, 81, 0.6)) drop-shadow(0 0 50px rgba(97, 154, 49, 0.4));
  animation: preloaderFloat 2.8s ease-in-out infinite;
}

@keyframes preloaderFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}

.preloader-counter {
  font-family: var(--font-orbitron);
  font-weight: 900;
  font-size: 3.2rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(50, 217, 81, 0.5);
  line-height: 1;
}

.counter-percent {
  font-size: 1.8rem;
  color: #32D951;
  margin-left: 2px;
}

.preloader-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(97, 154, 49, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #619A31 0%, #32D951 70%, #00FF66 100%);
  border-radius: 4px;
  position: relative;
  transition: width 0.15s ease-out;
  box-shadow: 0 0 12px #00FF66;
}

.preloader-bar-spark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 15px #00FF66, 0 0 25px #32D951;
}

.preloader-status-text {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  min-height: 1.4em;
  transition: opacity 0.3s ease;
}

/* Hero entrance transition when preloader finishes */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 850px;
  background-color: #030406;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 1.1s cubic-bezier(0.85, 0, 0.15, 1);
}

.hero-bg-fallback {
  background: url('assets/hero_bg.webp') center bottom / cover no-repeat;
  z-index: 1;
}

.hero-video {
  object-fit: cover;
  object-position: center bottom;
  z-index: 2;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-video.video-loaded { opacity: 1; }

.hero-darken-overlay {
  background: radial-gradient(circle at 50% 60%, rgba(0, 0, 0, 0.1) 0%, rgba(3, 4, 6, 0.55) 75%),
              linear-gradient(to bottom, rgba(3, 4, 6, 0.6) 0%, rgba(3, 4, 6, 0.1) 30%, rgba(3, 4, 6, 0.65) 100%);
  z-index: 3;
}

/* Fixed Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  padding: 1.1rem 4rem;
  background: linear-gradient(to bottom, rgba(3, 4, 6, 0.95) 0%, rgba(3, 4, 6, 0.85) 60%, rgba(3, 4, 6, 0) 100%) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.brand-logo,
.brand-logo:link,
.brand-logo:visited,
.brand-logo:hover,
.brand-logo:active {
  font-family: var(--font-orbitron), sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.7rem !important;
  letter-spacing: 0.02em !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  outline: none !important;
}

.nav-center-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-item {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  white-space: nowrap !important;
  transition: color 0.3s ease;
}

.nav-item:hover, .nav-item.active { color: #FFFFFF; }
.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #32D951 !important;
  box-shadow: 0 0 10px #32D951, 0 0 18px rgba(50, 217, 81, 0.7) !important;
  border-radius: 3px;
  display: block !important;
}

.nav-wizard-wrapper { display: flex; align-items: center; justify-content: center; margin: 0 0.2rem; }
.wizard-nav-icon { height: 48px; width: auto; object-fit: contain; opacity: 0.9; }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.25rem;
  border-radius: 30px;
  border: 1.5px solid #32D951;
  background: transparent;
  color: #32D951;
  font-family: var(--font-sans), sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.btn-whatsapp:hover { transform: translateY(-2px); color: #FFF; box-shadow: 0 0 18px rgba(50, 217, 81, 0.35); }

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  z-index: 25;
}
.mobile-menu-toggle .bar { width: 24px; height: 2px; background: #FFF; border-radius: 2px; transition: all 0.3s ease; }
.mobile-wizard-logo { display: none; }

.mobile-dropdown-menu {
  display: none;
  position: fixed;
  top: 4.5rem;
  left: 0;
  width: 100%;
  background: rgba(5, 8, 6, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(97, 154, 49, 0.35);
  padding: 1.8rem 1.5rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.3rem;
  z-index: 99;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
}
.mobile-dropdown-menu.active { display: flex; }

.mobile-nav-item {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  width: 100%;
  transition: color 0.3s ease;
}
.mobile-nav-item:hover, .mobile-nav-item.active { color: #32D951; }
.mobile-wsp { display: inline-flex !important; align-items: center; justify-content: center; margin-top: 0.6rem; }

/* Hero Content & Typing */
.hero-overlay-content {
  position: absolute;
  bottom: 7.2rem;
  left: 0;
  width: 100%;
  z-index: 15;
  padding: 0 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-text-col { width: 42%; max-width: 580px; }

.hero-main-title {
  font-family: var(--font-nokora), sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.hero-main-title .highlight-green { font-family: var(--font-nokora), sans-serif; color: #619A31; }

.typing-cursor {
  display: inline-block;
  font-weight: 400;
  color: #619A31;
  margin-left: 2px;
  animation: blinkCursor 0.8s infinite;
}
@keyframes blinkCursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-subtext {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
}

@property --border-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

.hero-center-col {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  z-index: 16;
  text-decoration: none;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.scroll-label,
.magic-label {
  font-family: var(--font-sans), sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #619A31 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: none !important;
}

.scroll-arrow-icon,
.arrow-down-icon {
  color: #619A31 !important;
  font-size: 0.95rem;
  animation: bounceDown 2s ease-in-out infinite;
  filter: none !important;
}

@keyframes bounceDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Hero CTA Buttons */
.hero-cta-col {
  position: absolute;
  right: 5.2rem;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
  width: 340px;
  z-index: 20;
}

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 2.2rem;
  border-radius: 16px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-sans), sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(97, 154, 49, 0.2);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  border: 2px solid transparent;
  background-image: linear-gradient(rgba(15, 29, 20, 0.85), rgba(12, 23, 16, 0.95)),
                    conic-gradient(from var(--border-angle), #13d236 0deg, #579724 120deg, #579724 240deg, #15d238 360deg);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: bgRotate 3.5s linear infinite;
}
@keyframes bgRotate { to { --border-angle: 360deg; } }

.btn-primary-content { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 0.85rem; }
.btn-hero-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 35px rgba(97, 154, 49, 0.4); }

.magic-fa-icon, .wsp-fa-icon { color: #32D951; font-size: 1.12rem; transition: transform 0.3s ease; }
.btn-hero-primary:hover .magic-fa-icon { transform: scale(1.18) rotate(-10deg); }
.btn-hero-primary .arrow-icon { color: #FFF; transition: transform 0.3s ease; }
.btn-hero-primary:hover .arrow-icon { transform: translateX(6px); }

.btn-hero-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 2.2rem;
  border-radius: 16px;
  background: transparent;
  border: 1.5px solid transparent;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-sans), sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: color 0.35s ease;
  z-index: 1;
}

/* Background fill effect ("completando o botão") on hover */
.btn-hero-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 0%;
  height: 100%;
  background: rgba(12, 22, 15, 0.88);
  border-radius: 14px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

/* Green border outline on hover */
.btn-hero-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1.5px solid #619A31;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.btn-hero-secondary:hover::before { width: 100%; }
.btn-hero-secondary:hover::after { opacity: 1; }
.btn-hero-secondary:hover .btn-underline { opacity: 0; }

.btn-secondary-text {
  color: #FFFFFF;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.secondary-arrow-icon {
  color: #619A31;
  font-size: 1.05rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn-hero-secondary:hover .secondary-arrow-icon {
  transform: translateX(5px);
  color: #32D951;
}

.btn-hero-secondary .btn-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(97, 154, 49, 0.3);
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.btn-hero-secondary .btn-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00FF66, #32D951, transparent);
  box-shadow: 0 0 10px #00FF66;
  animation: lineStreak 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes lineStreak { 0% { left: -60%; } 100% { left: 140%; } }

/* ==========================================================================
   SECTION 2: QUEM SOMOS (CAULDRON & OBSIDIAN STONES)
   ========================================================================== */
.page-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 850px;
  background: url('assets/fundo.webp') center bottom / cover no-repeat;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bg-darken-overlay {
  background: radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.05) 0%, rgba(3, 4, 6, 0.45) 75%),
              linear-gradient(to bottom, rgba(3, 4, 6, 0.2) 0%, rgba(2, 3, 5, 0.4) 100%);
  z-index: 1;
}

.reveal-overlay {
  background: url('assets/fundo_reveal.webp') center bottom / cover no-repeat;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
  -webkit-mask-image: radial-gradient(circle 160px at var(--torch-x, -1000px) var(--torch-y, -1000px), rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 50%, transparent 100%);
  mask-image: radial-gradient(circle 160px at var(--torch-x, -1000px) var(--torch-y, -1000px), rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 50%, transparent 100%);
}

.torch-light {
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(circle 190px at var(--torch-x, -1000px) var(--torch-y, -1000px), rgba(114, 184, 57, 0.22) 0%, rgba(97, 154, 49, 0.08) 50%, transparent 100%);
}

.page-container.torch-active .reveal-overlay,
.page-container.torch-active .torch-light { opacity: 1; }

/* Subtle 55px Bottom Black Gradient Divider for Section 2 */
.page-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: linear-gradient(to bottom, transparent 0%, #030406 100%);
  pointer-events: none;
  z-index: 5;
}

.content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 4rem 2rem 4rem;
}

.left-content {
  width: 44%;
  max-width: 620px;
  z-index: 25;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-green-vibrant);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.main-title {
  font-family: var(--font-nokora);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-title-white);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.main-title .title-nowrap {
  white-space: nowrap;
}

.main-title .highlight {
  font-family: var(--font-orbitron);
  font-weight: 700;
  color: var(--color-green-brand);
  text-shadow: 0 0 20px rgba(97, 154, 49, 0.35);
}

.description-box { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.5rem; }
.description-box p { font-weight: 700; font-size: 0.92rem; line-height: 1.65; color: var(--color-paragraph-white); }

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-title-white);
  text-decoration: none;
  font-family: var(--font-nokora);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  transition: gap 0.3s ease;
}
.cta-link:hover { gap: 1.2rem; color: #FFF; }

.arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background-image: linear-gradient(#030406, #030406), linear-gradient(135deg, var(--color-green-brand), rgba(97, 154, 49, 0.25));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-brand);
  transition: all 0.3s ease;
}
.cta-link:hover .arrow-circle { box-shadow: 0 0 15px var(--color-green-glow); color: #FFF; }

/* Cauldron Component */
.cauldron-component {
  position: absolute;
  bottom: -25px;
  right: 3%;
  width: min(920px, 52vw);
  aspect-ratio: 0.95 / 1; 
  max-height: 100vh;
  height: 100vh;
  background: transparent;
  z-index: 15;
}

.cauldron-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9))
          drop-shadow(0 0 25px rgba(0, 0, 0, 0.95))
          drop-shadow(0 0 60px rgba(0, 0, 0, 0.7));
}

.stone-icon {
  width: clamp(70px, 7vw, 130px);
  height: clamp(70px, 7vw, 130px);
  background: transparent !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
  margin: 0 -12px;
}

.stone-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.7));
  transition: filter 0.3s ease;
}

@media (min-width: 661px) {
  .stone-icon img { animation: floatStone 3s ease-in-out infinite; }
  .step-1 .stone-icon img { animation-delay: 0s; }
  .step-2 .stone-icon img { animation-delay: 0.8s; }
  .step-3 .stone-icon img { animation-delay: 0.3s; }
  .step-4 .stone-icon img { animation-delay: 0.55s; }
  .step-5 .stone-icon img { animation-delay: 1s; }
}
@keyframes floatStone { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

.step-node { position: absolute; display: flex; align-items: center; z-index: 20; transition: transform 0.3s ease; }
.step-node:hover { transform: scale(1.06); }
.step-node:hover .stone-icon img { filter: drop-shadow(0 0 15px rgba(97, 154, 49, 0.75)) drop-shadow(0 8px 16px rgba(0,0,0,0.65)); }

.line-connector {
  height: 2px;
  background: var(--color-green-brand);
  box-shadow: 0 0 8px rgba(97, 154, 49, 0.4);
  width: clamp(20px, 2vw, 40px);
  flex-shrink: 0;
}

.step-text { display: flex; flex-direction: column; gap: 0.25rem; width: 210px; }
.text-to-right { text-align: left; padding-left: 0.6rem; }
.text-to-left { text-align: right; padding-right: 0.6rem; }

.step-title {
  font-family: var(--font-nokora);
  font-weight: 700;
  color: var(--color-green-brand);
  font-size: clamp(0.85rem, 1.05vw, 1.1rem);
  text-shadow: 0 0 8px rgba(97, 154, 49, 0.3);
}

.step-desc {
  font-weight: 700;
  color: var(--color-paragraph-white);
  font-size: clamp(0.68rem, 0.72vw, 0.76rem);
  line-height: 1.4;
}

.step-1 { top: 9%; left: 47%; }
.step-2 { top: 25%; right: 57%; }
.step-3 { top: 31%; left: 56%; }
.step-4 { top: 46%; right: 64%; }
.step-5 { top: 50%; left: 61.5%; }

/* ==========================================================================
   SECTION 3: SOLUÇÕES (SOLUTIONS SECTION)
   ========================================================================== */
.solutions-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #030406;
  padding: 5.8rem 2rem 3rem 2rem;
  overflow: hidden;
  z-index: 10;
}

.solutions-bg {
  background: url('assets/bg2.webp') center / cover no-repeat;
  opacity: 0.65;
  z-index: 1;
}

.solutions-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
}

.solutions-grid-system {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  width: 100%;
}
.solution-card {
  position: relative;
  background: linear-gradient(rgba(6, 10, 8, 0.88), rgba(6, 10, 8, 0.88)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(210, 210, 210, 0.5), rgba(255, 255, 255, 0.22)) border-box;
  border: 1.5px solid transparent;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 365px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.75);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(97, 154, 49, 0.28), 0 0 25px rgba(50, 217, 81, 0.18);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.solution-card:hover .card-img { transform: scale(1.04); }

.card-content {
  position: relative;
  z-index: 3;
  padding: 1.6rem 1.8rem 1.8rem 1.8rem;
  background: linear-gradient(to top, rgba(3, 4, 6, 0.98) 0%, rgba(3, 4, 6, 0.85) 60%, rgba(3, 4, 6, 0) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-title {
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.card-desc {
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

/* Subtle Elegant Green Gradient Border for Featured Card */
.card-featured {
  background: linear-gradient(rgba(6, 10, 8, 0.88), rgba(6, 10, 8, 0.88)) padding-box,
              linear-gradient(135deg, rgba(97, 154, 49, 0.95), rgba(50, 217, 81, 0.65), rgba(30, 85, 40, 0.45)) border-box;
  border: 1.5px solid transparent;
}

.featured-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(12, 28, 16, 0.88);
  border: 1.5px solid #32D951;
  border-radius: 30px;
  color: #32D951;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 18px rgba(50, 217, 81, 0.4), inset 0 0 8px rgba(50, 217, 81, 0.2);
  animation: badgeGlowPulse 3s infinite ease-in-out;
}
@keyframes badgeGlowPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(50, 217, 81, 0.35); border-color: #32D951; }
  50% { box-shadow: 0 0 22px rgba(50, 217, 81, 0.65), 0 0 35px rgba(97, 154, 49, 0.3); border-color: #00FF66; }
}
.badge-star { font-size: 0.78rem; color: #00FF66; }

.card-automation { grid-column: 1; grid-row: 2; width: 100%; height: 365px; align-self: end; }

.tech-cta-wrapper {
  grid-column: 2 / span 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
}

.tech-grid-header {
  font-weight: 700;
  font-size: 0.95rem;
  color: #619A31;
  letter-spacing: 0.02em;
}

.tech-cta-card {
  position: relative;
  background: linear-gradient(rgba(6, 10, 8, 0.88), rgba(6, 10, 8, 0.88)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(210, 210, 210, 0.5), rgba(255, 255, 255, 0.22)) border-box;
  border: 1.5px solid transparent;
  border-radius: 22px;
  padding: 1.6rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  height: 365px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.75);
}

.tech-icons-grid-viewport {
  width: 62.5%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.tech-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.4rem;
  width: 100%;
}

.tech-item { display: flex; align-items: center; gap: 0.7rem; min-width: max-content; }

.tech-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.tech-item:hover .tech-icon-box {
  transform: translateY(-2px);
  border-color: rgba(97, 154, 49, 0.6);
  background: rgba(97, 154, 49, 0.15);
}

.tech-fa-icon { font-size: 1.3rem; }
.tech-svg-icon { width: 22px; height: 22px; }

.tech-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: #FFFFFF;
  line-height: 1.2;
  white-space: nowrap !important;
  word-break: normal !important;
}

.mobile-only-br { display: none; }

.tech-divider { width: 1px; height: 82%; background: rgba(255, 255, 255, 0.12); flex-shrink: 0; }

.tech-cta-content { display: flex; flex-direction: column; gap: 0.75rem; width: 37.5%; }

.tech-cta-title {
  font-family: var(--font-nokora), sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #FFFFFF;
}

.highlight-feit-orbitron {
  font-family: var(--font-orbitron), sans-serif;
  font-weight: 900;
  color: #619A31;
  letter-spacing: 0.04em;
}

.tech-cta-desc {
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.tech-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 0.65rem;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-orbitron);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-top: 0.3rem;
  padding: 0 0 6px 0;
  background: transparent;
  border: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.tech-cta-btn:hover { color: #32D951; gap: 0.95rem; }

.cta-btn-arrow {
  color: #FFFFFF;
  font-size: 0.92rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.tech-cta-btn:hover .cta-btn-arrow { color: #32D951; transform: translateX(4px); }

.tech-btn-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(97, 154, 49, 0.3);
  border-radius: 2px;
  overflow: hidden;
}
.tech-btn-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(50, 217, 81, 0.4) 25%, #00FF66 50%, rgba(50, 217, 81, 0.4) 75%, transparent 100%);
  filter: drop-shadow(0 0 6px #00FF66);
  animation: techLineStreak 2.6s linear infinite;
}
@keyframes techLineStreak { 0% { left: -70%; } 100% { left: 130%; } }

/* ==========================================================================
   MOBILE & TOUCH PERFORMANCE FIXES (GLOBAL)
   ========================================================================== */
.mobile-carousel-header { display: none; }
.solutions-cards-wrapper { display: contents; }

.solutions-cards-wrapper,
.solution-card,
.card-automation,
.card-image-wrapper {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  outline: none !important;
  touch-action: pan-x pan-y !important;
  overscroll-behavior-x: contain !important;
}

.card-img,
.card-image-wrapper img {
  pointer-events: none !important;
  -webkit-user-drag: none !important;
  -webkit-touch-callout: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

/* ==========================================================================
   CONSOLIDATED MEDIA QUERIES (RESPONSIVENESS SYSTEM)
   ========================================================================== */
@media (max-height: 900px) {
  .cauldron-component { width: 680px; height: 680px; bottom: -35px; right: 4%; }
}

@media (max-width: 1400px) {
  .navbar { padding: 1.5rem 3rem; }
  .nav-center-menu { gap: 1.6rem; }
  .wizard-nav-icon { height: 44px; }
  .main-title { font-size: 2.7rem; }
  .cauldron-component { width: 650px; height: 650px; bottom: -30px; right: 2%; }
  .stone-icon { width: 78px; height: 78px; }
  .step-text { width: 180px; }
  .step-title { font-size: 0.92rem; }
  .step-desc { font-size: 0.74rem; }
}

@media (max-width: 1200px) {
  .navbar { padding: 1.2rem 2rem; }
  .nav-center-menu { gap: 1.1rem; }
  .nav-item { font-size: 0.82rem; }
  .wizard-nav-icon { height: 38px; }
  .btn-whatsapp { padding: 0.5rem 0.95rem; font-size: 0.78rem; }
  .tech-cta-card { flex-direction: column; align-items: flex-start; gap: 1.8rem; padding: 2rem; height: auto; }
  .tech-icons-grid-viewport { width: 100%; }
  .tech-icons-grid { width: 100%; grid-template-columns: repeat(3, 1fr); }
  .tech-divider { display: none; }
  .tech-cta-content { width: 100%; }
  .tech-cta-btn { align-self: flex-start; }
}

@media (max-width: 1100px) {
  .page-container { height: auto; min-height: 100vh; overflow-y: auto; overflow-x: hidden; }
  .content-wrapper { flex-direction: column; height: auto; min-height: 100vh; padding: 5.5rem 1.5rem 3rem 1.5rem; align-items: center; gap: 2rem; }
  .left-content { width: 100%; max-width: 650px; align-items: center; text-align: center; margin-bottom: 1rem; }
  .cauldron-component { position: relative; bottom: 0; right: auto; width: 100%; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 1024px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.8rem 1.5rem; }
  .nav-center-menu { gap: 0.75rem; }
  .nav-item { font-size: 0.78rem; }
  .wizard-nav-icon { height: 32px; }
  .btn-whatsapp { padding: 0.45rem 0.8rem; font-size: 0.74rem; }
  .hero-overlay-content { padding: 0 2rem; bottom: 6.5rem; }
  .hero-main-title { font-size: 2.5rem; }
  .hero-text-col { width: 48%; }
  .hero-cta-col { right: 2rem; width: 280px; }

  .solutions-section { padding: 4rem 1.8rem 3rem 1.8rem; }
  .solutions-grid-system {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.8rem !important;
  }
}
@media (max-width: 660px) {
  html, body { overflow-x: hidden; height: auto; min-height: 100vh; }
  .hero-section {
    height: 100vh;
    min-height: 100vh;
    padding-top: 4.2rem;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .hero-bg-fallback { background-image: url('assets/hero_bg_celular.webp'); background-size: cover !important; background-position: center 45% !important; }
  .hero-video { object-fit: cover !important; object-position: center 45% !important; }

  .navbar { padding: 0.9rem 1.2rem; position: fixed; width: 100%; top: 0; left: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; }
  .navbar.scrolled { padding: 0.7rem 1.2rem; }

  .brand-logo,
  .brand-logo:link,
  .brand-logo:visited,
  .brand-logo:hover,
  .brand-logo:active {
    font-family: var(--font-orbitron), sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.5rem !important;
    letter-spacing: 0.02em !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
  }

  .nav-center-menu, .nav-right .btn-whatsapp { display: none !important; }

  .mobile-wizard-logo { display: flex; position: absolute; left: 50%; transform: translateX(-50%); align-items: center; justify-content: center; z-index: 101; }
  .mobile-wizard-logo .wizard-nav-icon { height: 42px; width: auto; object-fit: contain; opacity: 0.9; }

  .mobile-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0.4rem !important;
    z-index: 105 !important;
    color: #FFFFFF !important;
  }

  .mobile-menu-toggle .menu-bars-icon {
    font-size: 1.45rem !important;
    color: #FFFFFF !important;
  }

  .mobile-dropdown-menu {
    top: 3.8rem !important;
  }

  .mobile-dropdown-menu .mobile-nav-item {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
  }

  .mobile-dropdown-menu .mobile-btn-wsp,
  .mobile-dropdown-menu .mobile-btn-wsp:visited {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem !important;
    padding: 0.65rem 1.4rem !important;
    border-radius: 30px !important;
    border: 1.5px solid #32D951 !important;
    background: transparent !important;
    color: #32D951 !important;
    font-family: var(--font-sans), sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    margin-top: 0.5rem !important;
    box-shadow: 0 0 12px rgba(50, 217, 81, 0.25) !important;
  }

  .hero-overlay-content {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    padding: 2.8rem 1.2rem 3.2rem 1.2rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
    gap: 0.8rem !important;
    margin-top: 0 !important;
    z-index: 15 !important;
  }

  .hero-text-col {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-top: -0.4rem !important;
    padding-top: 0 !important;
  }

  .hero-main-title {
    font-size: clamp(1.95rem, 7.5vw, 2.45rem) !important;
    text-align: center !important;
    margin-bottom: 0.4rem !important;
    line-height: 1.2 !important;
  }

  .hero-subtext {
    font-size: 0.82rem !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
    line-height: 1.45 !important;
  }

  .hero-cta-col {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 320px !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin: 0 auto !important;
  }

  .btn-hero-primary, .btn-hero-secondary {
    width: 100% !important;
    padding: 0.95rem 1.4rem !important;
    font-size: 0.9rem !important;
    justify-content: space-between !important;
  }

  .hero-center-col {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 0.6rem !important;
    margin: 0 !important;
    z-index: 20 !important;
  }

  .page-container { height: auto; min-height: 100vh; overflow-y: auto; overflow-x: hidden; background-position: center top; }
  .content-wrapper { flex-direction: column; height: auto; min-height: 100vh; padding: 2rem 1rem 3rem 1rem; align-items: center; gap: 1.8rem; }
  .left-content { width: 100%; max-width: 100%; align-items: center; text-align: center; margin-bottom: 0; }
  .badge { font-size: 0.75rem; letter-spacing: 0.12em; margin-bottom: 0.8rem; background: rgba(97, 154, 49, 0.12); padding: 0.35rem 0.85rem; border-radius: 20px; border: 1px solid rgba(97, 154, 49, 0.25); }
  .main-title { font-size: clamp(1.75rem, 6.5vw, 2.2rem); line-height: 1.2; margin-bottom: 1.2rem; }
  .description-box { gap: 1rem; margin-bottom: 1.8rem; }
  .description-box p { font-size: 0.88rem; line-height: 1.6; }
  .cta-link { font-size: 0.82rem; letter-spacing: 0.08em; padding: 0.6rem 1.2rem; background: rgba(97, 154, 49, 0.08); border: 1px solid rgba(97, 154, 49, 0.3); border-radius: 30px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

  .cauldron-component {
    position: relative !important; top: 0 !important; bottom: 0 !important; left: 0 !important; right: 0 !important;
    width: 100% !important; max-width: 520px !important; height: auto !important; max-height: none !important; aspect-ratio: auto !important;
    margin: 0 auto !important; display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 1.1rem 0.85rem !important; padding: 1rem 0 !important;
  }
  .cauldron-img {
    position: absolute !important; top: 50% !important; left: 50% !important; bottom: auto !important; transform: translate(-50%, -50%) !important;
    width: min(520px, 130vw) !important; height: auto !important; max-height: 110% !important; object-fit: contain !important; margin: 0 !important;
    display: block !important; opacity: 0.45 !important; filter: blur(2.5px) drop-shadow(0 0 55px rgba(97, 154, 49, 0.65)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8)) !important;
    pointer-events: none !important; z-index: 1 !important; animation: cauldronBgPulse 5s ease-in-out infinite;
  }
  @keyframes cauldronBgPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.42; filter: blur(2.5px) drop-shadow(0 0 50px rgba(97, 154, 49, 0.6)); }
    50% { transform: translate(-50%, -50%) scale(1.04); opacity: 0.55; filter: blur(2px) drop-shadow(0 0 70px rgba(114, 184, 57, 0.8)); }
  }

  .step-1 { grid-column: 1 !important; grid-row: 1 !important; }
  .step-2 { grid-column: 2 !important; grid-row: 1 !important; }
  .step-3 { grid-column: 1 / -1 !important; grid-row: 2 !important; justify-self: center !important; width: min(100%, 340px) !important; }
  .step-4 { grid-column: 1 !important; grid-row: 3 !important; }
  .step-5 { grid-column: 2 !important; grid-row: 3 !important; }

  .step-node {
    position: relative !important; z-index: 10 !important; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important;
    width: 100% !important; display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important;
    padding: 1.15rem 0.85rem !important; margin-bottom: 0 !important; background: rgba(6, 10, 8, 0.85) !important; border: 1px solid rgba(97, 154, 49, 0.28) !important;
    border-radius: 16px !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease !important;
  }
  .step-node:hover, .step-node:active {
    transform: translateY(-4px) scale(1.02) !important; background: rgba(12, 18, 14, 0.92) !important; border-color: rgba(114, 184, 57, 0.65) !important;
    box-shadow: 0 12px 30px rgba(97, 154, 49, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  }

  .stone-icon { order: 1 !important; width: 52px !important; height: 52px !important; min-width: 52px !important; margin: 0 0 0.5rem 0 !important; flex-shrink: 0 !important; }
  .stone-icon img { filter: drop-shadow(0 4px 12px rgba(97, 154, 49, 0.45)); }
  .line-connector { display: none !important; }
  .step-text { order: 2 !important; width: 100% !important; text-align: center !important; padding: 0 !important; }
  .step-title { font-family: var(--font-orbitron); font-size: 0.85rem !important; font-weight: 700 !important; color: var(--color-green-vibrant) !important; margin-bottom: 0.35rem !important; text-align: center !important; letter-spacing: 0.03em !important; text-shadow: 0 0 10px rgba(97, 154, 49, 0.35) !important; }
  .step-desc { font-family: var(--font-sans); font-size: 0.72rem !important; line-height: 1.38 !important; color: rgba(255, 255, 255, 0.75) !important; text-align: center !important; font-weight: 600 !important; }

  .reveal-overlay { background-position: center top; -webkit-mask-image: radial-gradient(circle 125px at var(--torch-x, -1000px) var(--torch-y, -1000px), rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 50%, transparent 100%); mask-image: radial-gradient(circle 125px at var(--torch-x, -1000px) var(--torch-y, -1000px), rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 50%, transparent 100%); }
  .torch-light { background: radial-gradient(circle 150px at var(--torch-x, -1000px) var(--torch-y, -1000px), rgba(114, 184, 57, 0.25) 0%, rgba(97, 154, 49, 0.08) 50%, transparent 100%); }

  /* Section 3 Mobile Solution Cards Carousel & Continuous Tech Glide */
  .solutions-section { padding: 3.5rem 1.2rem; }

  .mobile-carousel-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-bottom: 0.9rem !important;
    padding: 0 0.2rem !important;
  }

  .mobile-carousel-title {
    font-family: var(--font-orbitron);
    font-weight: 800;
    font-size: 1.15rem;
    color: #FFFFFF;
    letter-spacing: 0.03em;
  }

  .carousel-nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .carousel-arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(12, 22, 15, 0.85);
    border: 1.5px solid rgba(97, 154, 49, 0.5);
    color: #32D951;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 0 8px rgba(50, 217, 81, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }

  .carousel-arrow-btn:active {
    transform: scale(0.92);
    border-color: #00FF66;
    background: rgba(30, 70, 35, 0.95);
  }

  .solutions-grid-system {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.8rem !important;
    width: 100% !important;
  }

  .solutions-cards-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 1rem !important;
    width: 100% !important;
    padding-bottom: 0.5rem !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .solutions-cards-wrapper::-webkit-scrollbar { display: none; }

  .solution-card,
  .card-automation {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 380px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
  }

  .tech-cta-wrapper {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .solution-card:hover,
  .solution-card:active,
  .card-featured:hover,
  .card-featured:active {
    transform: none !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.75) !important;
  }

  .tech-cta-card { padding: 1.5rem 1.1rem !important; overflow: hidden !important; width: 100% !important; box-sizing: border-box !important; }

  .tech-icons-grid-viewport {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    padding: 0.2rem 0 !important;
  }

  .tech-icons-grid {
    display: grid !important;
    grid-template-rows: repeat(3, auto) !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc(50% - 0.4rem) !important;
    gap: 0.85rem 0.8rem !important;
    width: 152% !important;
    max-width: 152% !important;
    animation: techSlideAlternate 8s ease-in-out infinite alternate !important;
    animation-play-state: running !important;
    will-change: transform;
    pointer-events: none !important;
  }

  .mobile-only-br { display: block !important; }

  .tech-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 40px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .tech-icon-box {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 9px !important;
    flex-shrink: 0 !important;
  }

  .tech-fa-icon { font-size: 1.2rem !important; }
  .tech-svg-icon { width: 19px !important; height: 19px !important; }

  .tech-label {
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.15 !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
  }

  .tech-item:nth-child(9) {
    grid-column: auto !important;
    justify-self: auto !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .card-title { font-size: 1.55rem; }
}

@keyframes techSlideAlternate {
  0%, 18% {
    transform: translateX(0);
  }
  82%, 100% {
    transform: translateX(-34.5%);
  }
}

/* Distinct Awwwards Entrance Transitions */

/* Style A: Slide & Gaussian Blur in from Left */
.reveal-blur-left {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(8px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-blur-left.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Style B: 3D Tilt & Lift for Solution Cards */
.reveal-lift-card {
  opacity: 0;
  transform: translateY(45px) rotateX(6deg) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom center;
}
.reveal-lift-card.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg) scale(1);
}

/* Style C: Pop Scale & Fade for Cauldron Steps & Tech CTA */
.reveal-pop-scale {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-pop-scale.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@media (max-width: 520px) {
  .hero-section { position: relative; height: 100vh; height: 100dvh; min-height: 100vh; min-height: 100dvh; padding-top: 4.5rem; padding-bottom: 1.8rem; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
  .hero-overlay-content { position: relative; height: calc(100% - 2.4rem); display: flex; flex-direction: column; justify-content: space-between; align-items: center; text-align: center; padding: 0.4rem 1.2rem 0 1.2rem; margin: 0; gap: 0; width: 100%; }
  .hero-text-col { margin-top: 0.2rem; margin-bottom: 0; width: 100%; max-width: 100%; text-align: center; }
  .hero-main-title { font-size: clamp(1.7rem, 6.2vw, 2.15rem); margin-bottom: 0.35rem; line-height: 1.2; }
  .hero-subtext { font-size: 0.85rem; line-height: 1.5; max-width: 350px; margin: 0 auto; }
  .hero-cta-col { position: relative; right: auto; bottom: auto; margin-top: auto; margin-bottom: 0.15rem; width: 100%; max-width: 320px; align-items: center; gap: 0.75rem; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; padding: 0.92rem 1.4rem; font-size: 0.92rem; justify-content: space-between; }
  .hero-center-col { position: absolute; left: 50%; transform: translateX(-50%); bottom: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.45rem; z-index: 16; }
}

@media (max-width: 400px) {
  .content-wrapper { padding: 1.8rem 0.75rem 2.5rem 0.75rem; }
  .cauldron-component { gap: 0.9rem 0.6rem !important; padding: 0.5rem 0 !important; }
  .step-node { padding: 0.95rem 0.65rem !important; border-radius: 14px !important; }
  .stone-icon { width: 44px !important; height: 44px !important; min-width: 44px !important; margin-bottom: 0.35rem !important; }
  .step-title { font-size: 0.8rem !important; }
  .step-desc { font-size: 0.68rem !important; line-height: 1.35 !important; }
}

/* ==========================================================================
   SECTION 4: CONTATOS & FORMULÁRIO DE ORÇAMENTO
   ========================================================================== */
.contact-section {
  position: relative;
  width: 100%;
  padding: 9rem 4rem 4.5rem 4rem;
  background-color: #030406;
  z-index: 10;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg2.webp') center / cover no-repeat;
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.8rem;
}

/* Left Column */
.contact-left-col {
  width: 44%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.category-tag-contact {
  font-family: var(--font-orbitron), sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: rgba(97, 154, 49, 0.8);
}

.category-tag-line-fade {
  height: 2px;
  width: 180px;
  background: linear-gradient(90deg, rgba(97, 154, 49, 0.8) 0%, rgba(97, 154, 49, 0) 100%);
  border-radius: 2px;
}

.contact-main-title {
  font-family: var(--font-nokora), sans-serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.015em;
}

.highlight-realidade {
  color: #619A31 !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

.contact-subtitle {
  font-family: 'Manrope', var(--font-sans), sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
}

/* Contact Info List Items (Full Card Links with Aligned Right Arrows) */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.2rem;
  width: 100%;
}

.contact-info-card-link,
.contact-schedule-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.contact-info-card-link:hover {
  background: rgba(97, 154, 49, 0.12);
  border-color: rgba(97, 154, 49, 0.4);
  transform: translateX(4px);
}

.info-card-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.info-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.info-icon-circle i {
  font-size: 1.55rem;
  color: #060B08;
}

.contact-info-card-link:hover .info-icon-circle {
  background: #32D951;
}

.contact-info-card-link:hover .info-icon-circle i {
  color: #FFFFFF;
}

.schedule-circle {
  background: rgba(97, 154, 49, 0.2);
  border: 1px solid rgba(97, 154, 49, 0.5);
}
.schedule-circle i {
  color: #32D951;
}

.info-text-group {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.25rem !important;
}

.info-label-nokora {
  display: block !important;
  font-family: var(--font-nokora), sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

.info-sub-nokora {
  display: block !important;
  font-family: var(--font-nokora), sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(97, 154, 49, 0.8);
  line-height: 1.35;
}

.info-arrow-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.contact-info-card-link:hover .info-arrow-right {
  color: #32D951;
  transform: translateX(6px);
}

/* Right Column: Form Card */
.contact-right-col {
  width: 53%;
}

.contact-form-card {
  position: relative;
  background: linear-gradient(rgba(24, 28, 26, 0.94), rgba(24, 28, 26, 0.94)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(180, 180, 180, 0.15), rgba(255, 255, 255, 0.08)) border-box;
  border: 1.5px solid transparent;
  border-radius: 24px;
  padding: 2.4rem 2.6rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
}

/* Card Header */
.form-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-avatar-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.form-avatar-circle i {
  font-size: 1.5rem;
  color: #060B08;
}

.form-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-card-title-nokora {
  font-family: var(--font-nokora), sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

.form-card-subtitle-nokora {
  font-family: var(--font-nokora), sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  color: rgba(97, 154, 49, 0.8);
  line-height: 1.4;
}

/* Alert Notification Box */
.form-alert-box {
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  line-height: 1.4;
}
.form-alert-box.success {
  background: rgba(50, 217, 81, 0.15);
  border: 1.5px solid #32D951;
  color: #32D951;
}
.form-alert-box.error {
  background: rgba(255, 77, 77, 0.15);
  border: 1.5px solid #FF4D4D;
  color: #FF4D4D;
}

/* Form Controls */
.budget-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1.2rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  position: relative;
}

.form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.req-star {
  color: #32D951;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: #FFFFFF;
  font-family: var(--font-sans), sans-serif;
  font-size: 0.9rem;
  padding: 0.78rem 1.1rem;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #32D951;
  background: rgba(50, 217, 81, 0.06);
  box-shadow: 0 0 14px rgba(50, 217, 81, 0.25);
}

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #FF4D4D !important;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.3) !important;
}

.form-error-msg {
  display: none;
  font-size: 0.75rem;
  color: #FF4D4D;
  margin-top: 0.1rem;
  font-weight: 500;
}
.form-group.has-error .form-error-msg {
  display: block;
}

/* Custom Select Dropdown Styling */
.select-wrapper {
  position: relative;
  width: 100%;
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 2.4rem;
}
.form-select option {
  background: #080E0A;
  color: #FFFFFF;
  padding: 0.6rem;
}
.select-arrow {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form Actions Row (Equal Sized Buttons) */
.form-actions-row-equal {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.6rem;
  width: 100%;
}

.btn-equal-wsp,
.btn-equal-submit {
  flex: 1;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 30px;
  font-family: var(--font-sans), sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.btn-equal-wsp {
  border: 1.5px solid transparent;
  background: linear-gradient(#181C1A, #181C1A) padding-box,
              linear-gradient(135deg, rgba(97, 154, 49, 0.8) 0%, rgba(200, 200, 200, 0.6) 100%) border-box;
  color: #FFFFFF;
}
.btn-equal-wsp:hover {
  background: linear-gradient(#222724, #222724) padding-box,
              linear-gradient(135deg, #32D951 0%, #FFFFFF 100%) border-box;
  color: #32D951;
  transform: translateY(-2px);
}

.btn-equal-submit {
  background: #619A31;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(97, 154, 49, 0.4);
}
.btn-equal-submit:hover:not(:disabled) {
  background: #32D951;
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(50, 217, 81, 0.6);
}
.btn-equal-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* Spinner for loading */
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: submitSpin 0.8s linear infinite;
}
@keyframes submitSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Security Footer Note */
.form-security-footer {
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.security-text {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.security-lock-icon {
  color: #619A31;
}

/* Responsive Media Queries for Section 4 */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 3.5rem;
  }
  .contact-left-col,
  .contact-right-col {
    width: 100%;
  }
}

@media (max-width: 660px) {
  .contact-section {
    padding: 6.5rem 1.2rem 3.5rem 1.2rem;
  }
  .contact-form-card {
    padding: 1.8rem 1.3rem;
  }
  .form-row {
    flex-direction: column;
    gap: 1.2rem;
  }
  .form-actions-row-equal {
    flex-direction: column;
    gap: 1rem;
    width: 100% !important;
  }
  .btn-equal-wsp,
  .btn-equal-submit {
    width: 100% !important;
    height: 56px !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    padding: 0.95rem 1.4rem !important;
    border-radius: 35px !important;
  }
}

/* ==========================================================================
   FOOTER SECTION (SITE FOOTER & FAQ ACCORDION)
   ========================================================================== */
.site-footer {
  position: relative;
  width: 100% !important;
  background: #030406 !important;
  padding: 3.2rem 4rem 1rem 4rem;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Top Footer Grid (3 Columns) */
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.6fr;
  gap: 3.5rem;
  align-items: flex-start;
}

/* Column 1: Brand */
.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-self: center;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

.footer-brand-titles {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}

.brand-feit-text {
  font-family: var(--font-orbitron), sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  line-height: 0.85;
}

.brand-agency-text {
  font-family: var(--font-orbitron), sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  text-transform: none;
  margin-top: 2px;
}

.footer-slogan {
  font-family: var(--font-orbitron), sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
  max-width: 270px;
}

/* Column 2: Navigation */
.footer-col-nav {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-col-title {
  font-family: var(--font-nokora), sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  font-family: var(--font-nokora), sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-nav-link:hover {
  color: #619A31;
  transform: translateX(4px);
}

/* Column 3: FAQ Accordion */
.footer-col-faq {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.55rem;
  transition: border-color 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-nokora), sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-question-btn:hover {
  color: #619A31;
}

.faq-arrow {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.35s ease, color 0.35s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: #32D951;
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0.5rem 0 0.7rem 0;
  font-family: 'Manrope', var(--font-sans), sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* Middle Contact Info Bar */
.footer-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0 0.5rem 0;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-nokora), sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.info-bar-link {
  transition: color 0.3s ease, transform 0.3s ease;
}

.info-bar-link:hover {
  color: #32D951;
  transform: translateY(-2px);
}

.info-bar-icon {
  font-size: 1.25rem;
  color: rgba(97, 154, 49, 0.8);
}

/* Bottom Copyright Bar with Green/Gray Gradient Line */
.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer-separator-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, #619A31 50%, rgba(255, 255, 255, 0.15) 100%);
  margin-bottom: 1.2rem;
  border: none;
}

.copyright-text {
  font-family: var(--font-orbitron), sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  text-align: center;
}

/* Footer Responsive Queries */
@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-info-bar {
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: center;
  }
}

@media (max-width: 660px) {
  .site-footer {
    padding: 3.2rem 1.2rem 1.8rem 1.2rem;
  }
  .footer-col-brand,
  .footer-col-nav,
  .footer-col-faq {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-col-brand {
    order: 1 !important;
    padding-bottom: 1.8rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
  }
  .footer-col-faq {
    order: 2 !important;
    padding-bottom: 1.8rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
  }
  .footer-col-nav {
    order: 3 !important;
    width: 100% !important;
    padding-bottom: 1.8rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  .footer-brand-header {
    justify-content: center !important;
    width: 100% !important;
  }
  .footer-slogan {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-nav-list {
    display: grid !important;
    grid-template-columns: repeat(2, auto) !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.8rem 2.8rem !important;
    width: 100% !important;
  }
  .footer-nav-list li {
    text-align: center !important;
  }
  .faq-question-btn {
    justify-content: center !important;
    text-align: center !important;
  }
  .faq-answer-content {
    text-align: center !important;
  }
  .footer-info-bar {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.1rem !important;
    text-align: center !important;
  }
  .info-bar-item {
    font-size: 0.95rem;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   FLOATING FIXED WHATSAPP BUTTON (BOTTOM RIGHT CORNER)
   ========================================================================== */
.floating-wsp-button {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #32D951 0%, #17ad34 60%, #0e7d24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.75), 0 0 18px rgba(50, 217, 81, 0.45);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.wsp-floating-icon {
  font-size: 1.95rem;
  color: #FFFFFF;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.wsp-glow-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(50, 217, 81, 0.55);
  pointer-events: none;
  animation: wspPulseRing 2.6s ease-out infinite;
}

@keyframes wspPulseRing {
  0% { transform: scale(0.92); opacity: 0.95; }
  60%, 100% { transform: scale(1.45); opacity: 0; }
}

.wsp-floating-tooltip {
  position: absolute;
  right: 4.5rem;
  background: rgba(6, 11, 8, 0.92);
  border: 1px solid rgba(50, 217, 81, 0.45);
  color: #FFFFFF;
  font-family: var(--font-sans), sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-wsp-button:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(50, 217, 81, 0.65), 0 0 25px rgba(0, 255, 102, 0.4);
}

.floating-wsp-button:hover .wsp-floating-icon {
  transform: scale(1.08) rotate(-8deg);
}

.floating-wsp-button:hover .wsp-floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 660px) {
  .floating-wsp-button {
    bottom: 1.3rem !important;
    right: 1.2rem !important;
    left: auto !important;
    width: 52px !important;
    height: 52px !important;
  }
  .wsp-floating-icon {
    font-size: 1.7rem !important;
  }
  .wsp-floating-tooltip {
    display: none !important;
  }
}
