/* ==========================================================================
   COLMEIA - EXACT DESIGN SYSTEM & STYLESHEET
   Hero Section: Floating Badges aligned 100% IDENTICAL to the reference image
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700;1,800&display=swap');

:root {
  /* Brand Palette */
  --color-yellow: #FFB800;
  --color-yellow-hover: #E5A600;
  --color-yellow-light: #FFF9E6;
  --color-yellow-border: #FFE082;
  
  --color-dark: #070709;
  --color-dark-surface: #111116;
  --color-dark-border: #22222B;

  --color-bg-light: #FAFAFC;
  --color-card-bg: #FFFFFF;
  --color-border: #E5E7EB;

  --color-text: #0F172A;
  --color-muted: #64748B;
  --color-light-gray: #94A3B8;

  --font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --max-width: 1280px;
  --header-height: 104px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--color-text);
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.text-yellow {
  color: var(--color-yellow);
}

/* Eyebrows & Section Headers */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 12px;
  display: block;
}

.eyebrow-center {
  text-align: center;
}

.eyebrow-tag {
  color: var(--color-yellow);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-title.center {
  text-align: center;
}

.section-title.dark {
  color: #FFFFFF;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-yellow);
  color: #000000;
  box-shadow: 0 4px 18px rgba(255, 184, 0, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-yellow-hover);
  box-shadow: 0 8px 26px rgba(255, 184, 0, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: #FFFFFF;
  color: var(--color-text);
  border: 1px solid #94A3B8;
}

.btn-outline:hover {
  border-color: var(--color-yellow);
  color: #000000;
  background-color: var(--color-yellow-light);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

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

.logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.nav-link.active {
  color: #000000;
  font-weight: 800;
}

.active-bar {
  width: 26px;
  height: 3px;
  background-color: var(--color-yellow);
  border-radius: 99px;
  margin-top: 4px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta-btn {
  background-color: var(--color-yellow);
  color: #000000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 24px 13px 28px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.28);
  transition: all 0.2s ease;
}

.header-cta-btn:hover {
  background-color: var(--color-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255, 184, 0, 0.38);
}

.cta-whatsapp-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 56px;
  background: #FFFFFF;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: center;
}

/* Left Column Text */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 540px;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin-bottom: 16px;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 24px;
  max-width: 510px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-guarantees {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
}

.guarantee-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  font-size: 0.75rem;
  font-weight: 800;
}

/* Right Visual Column */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.hero-hexagon-wrap {
  position: relative;
  width: 100%;
  max-width: 615px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.08));
  overflow: visible;
}

.hero-laptop-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Badges Positioned 100% IDENTICAL to the User's Screenshot */
.floating-badge {
  position: absolute;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 13px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  max-width: 255px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.badge-bottom:hover {
  transform: translateX(-50%) translateY(-2px);
}

/* Badge 1: + Tráfego — Top-left corner of hexagonal frame (No overlap with text) */
.badge-top-left {
  top: 8%;
  left: -2%;
  animation: floatTopLeft 5s ease-in-out infinite alternate;
}

/* Badge 2: + Clientes — Top-right corner of hexagonal frame */
.badge-top-right {
  top: 12%;
  right: -8%;
  animation: floatTopRight 6s ease-in-out 1s infinite alternate;
}

/* Badge 3: + Resultados — Bottom-center of hexagonal frame */
.badge-bottom {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation: floatBottom 5.5s ease-in-out 0.5s infinite alternate;
}

.badge-bottom:hover {
  transform: translateX(-50%) translateY(-6px) scale(1.03);
}

.badge-top-left:hover,
.badge-top-right:hover {
  transform: translateY(-6px) scale(1.03);
}

/* Badge Floating Keyframes */
@keyframes floatTopLeft {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes floatTopRight {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-12px);
  }
}

@keyframes floatBottom {
  0% {
    transform: translateX(-50%) translateY(0px);
  }
  100% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background-color: #FFF9E6;
  border: 1.5px solid var(--color-yellow-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-badge:hover .badge-icon {
  transform: scale(1.15) rotate(6deg);
}

/* Ambient Background Hexagons Rotation / Breathing Micro-Animation */
.hero-ambient-hexagons,
.stats-hex-bg,
.cta-hex-left,
.cta-hex-right {
  animation: ambientFloat 12s ease-in-out infinite alternate;
}

@keyframes ambientFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1.5deg);
  }
  100% {
    transform: translateY(4px) rotate(-1deg);
  }
}

/* Service Card Icon Micro-Animation */
.service-icon-box {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
}

.service-card:hover .service-icon-box {
  transform: scale(1.15) rotate(-6deg);
  background-color: #FFB800;
  color: #000000;
}

.service-card:hover .service-icon-box svg {
  stroke: #000000;
}

/* Process Card Icon Micro-Animation */
.process-icon-hex {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, border-color 0.3s ease;
}

.process-card:hover .process-icon-hex {
  transform: scale(1.18) rotate(8deg);
  background-color: var(--color-yellow);
  color: #000000;
}

.process-card:hover .process-num-badge {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Guarantee Checkmark Micro-Pulse */
.guarantee-check {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.guarantee-item:hover .guarantee-check {
  transform: scale(1.25) rotate(12deg);
  background-color: var(--color-yellow);
  color: #000000;
}

/* Button Micro-Glow & Shimmer Animation */
.btn-primary, .header-cta-btn {
  position: relative;
  overflow: hidden;
}

.btn-primary::after, .header-cta-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: none;
  animation: shineShimmer 4s infinite;
  pointer-events: none;
}

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

/* WhatsApp Icon Pulse */
.cta-whatsapp-circle {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  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.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background-color: #FFF9E6;
  border: 1.5px solid var(--color-yellow-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 2px;
}

.badge-text span {
  font-size: 0.74rem;
  color: #64748B;
  line-height: 1.35;
  display: block;
}

/* Ambient Background Hexagons Right Side */
.hero-ambient-hexagons {
  position: absolute;
  right: -5%;
  top: 4%;
  width: 580px;
  height: 580px;
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   CLIENTS SECTION ("EMPRESAS QUE CONFIAM NO NOSSO TRABALHO")
   ========================================================================== */
.clients-section {
  padding: 38px 0 32px 0;
  background: #FAFAFC;
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  position: relative;
}

.clients-title {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.clients-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1020px;
  margin: 0 auto 26px auto;
  padding: 0 16px;
}

.client-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748B;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  opacity: 0.85;
  transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.client-logo-item:hover {
  opacity: 1;
  color: #0F172A;
  transform: translateY(-2px);
}

.client-logo-item svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Centered Scroll Hint Button ("Ver Nossas Soluções") */
.scroll-down-hint {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.scroll-hint-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FFF9E6;
  color: #000000;
  border: 1.5px solid var(--color-yellow-border);
  padding: 11px 26px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 800;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.18);
}

.scroll-hint-btn svg {
  animation: bounceArrow 2s infinite;
  color: var(--color-yellow-hover);
}

.scroll-hint-btn:hover {
  background-color: var(--color-yellow);
  color: #000000;
  border-color: var(--color-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.4);
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(4px);
  }
  60% {
    transform: translateY(2px);
  }
}

/* ==========================================================================
   SERVICES SECTION ("NOSSOS SERVIÇOS")
   ========================================================================== */
.services-section {
  padding: 40px 0 80px 0;
  background-color: #FAFAFC;
}

.services-header {
  text-align: center;
  margin-bottom: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  border-color: var(--color-yellow-border);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: #FFF9E6;
  border: 1px solid var(--color-yellow-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.services-action {
  text-align: center;
}

/* ==========================================================================
   STATS BANNER (DARK SECTION)
   ========================================================================== */
.stats-banner {
  background-color: var(--color-dark);
  color: #FFFFFF;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.stats-hex-bg {
  position: absolute;
  top: 0;
  right: -5%;
  width: 50%;
  height: 100%;
  opacity: 0.15;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.stats-left {
  display: flex;
  flex-direction: column;
}

.stats-counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  margin-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.stat-icon {
  width: 28px;
  height: 28px;
  color: var(--color-yellow);
}

.stat-number {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.875rem;
  color: #94A3B8;
  font-weight: 500;
}

.stats-right-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 32px;
}

/* ==========================================================================
   PROCESS SECTION ("NOSSO PROCESSO")
   ========================================================================== */
.process-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed #E2E8F0;
  z-index: 1;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-icon-hex {
  width: 54px;
  height: 54px;
  background-color: #FFFFFF;
  border: 2px solid var(--color-yellow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.15);
}

.process-num-badge {
  background-color: var(--color-yellow);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.process-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ==========================================================================
   CASES DE SUCESSO
   ========================================================================== */
.cases-section {
  padding: 90px 0;
  background-color: #FAFAFC;
}

.cases-header {
  text-align: center;
  margin-bottom: 54px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.case-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.case-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.6s ease;
}

.case-card:hover .case-bg-img {
  transform: scale(1.08);
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.95) 85%);
  z-index: 2;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.case-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-yellow);
  font-size: 0.8125rem;
  font-weight: 800;
}

.case-bottom {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
}

.case-metric {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 6px;
}

.case-detail {
  font-size: 0.8125rem;
  color: #CBD5E1;
  margin-bottom: 18px;
}

.case-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 9999px;
  color: #FFFFFF;
}

.cases-action {
  text-align: center;
}

/* ==========================================================================
   TESTIMONIALS SECTION ("O QUE NOSSOS CLIENTES DIZEM")
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 54px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
  color: var(--color-yellow);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 24px;
}

.testimonial-quote strong {
  color: #000000;
  font-weight: 800;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-text);
}

.user-info span {
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ==========================================================================
   CALL TO ACTION BANNER (BOTTOM)
   ========================================================================== */
.cta-section {
  background-color: var(--color-dark);
  color: #FFFFFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta-text {
  font-size: 1.05rem;
  color: #94A3B8;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.whatsapp-note {
  font-size: 0.85rem;
  color: #94A3B8;
}

.whatsapp-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* Ambient Hexagons for CTA */
.cta-hex-left {
  position: absolute;
  left: -5%;
  top: -20%;
  width: 300px;
  height: 300px;
  opacity: 0.12;
  pointer-events: none;
}

.cta-hex-right {
  position: absolute;
  right: -5%;
  bottom: -20%;
  width: 300px;
  height: 300px;
  opacity: 0.12;
  pointer-events: none;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: #050507;
  color: #94A3B8;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 300px;
}

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

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.2s;
}

.social-icon:hover {
  background-color: var(--color-yellow);
  color: #000000;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: #94A3B8;
  transition: color 0.2s;
}

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

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 28px;
  text-align: center;
  font-size: 0.8rem;
  color: #475569;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (MOBILE & TABLET BEST PRACTICES)
   ========================================================================== */

/* Tablet & Smaller Desktops (<= 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3.1rem);
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons, .hero-guarantees {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .badge-top-left {
    top: 4%;
    left: -2%;
  }

  .badge-top-right {
    top: 8%;
    right: -2%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .stats-counters {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .process-steps::before {
    display: none;
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .cta-text {
    max-width: 100%;
  }

  .cta-actions {
    align-items: center;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .container {
    padding: 0 18px;
  }

  .site-header {
    height: var(--header-height);
  }

  .logo-img {
    height: 56px;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  .header-cta-btn {
    padding: 9px 16px;
    font-size: 0.825rem;
    height: 38px;
    box-shadow: 0 2px 10px rgba(255, 184, 0, 0.2);
  }

  /* Mobile Toggle Button (Min 44x44px Touch Target) */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.04);
    color: #0F172A;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
  }

  .mobile-toggle:active, .mobile-toggle.is-active {
    background: var(--color-yellow-light);
    color: var(--color-yellow-hover);
  }

  /* Mobile Navigation Drawer */
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    padding: 16px 20px 24px 20px;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 10px;
    align-items: flex-start;
    width: 100%;
  }

  .nav-link:hover, .nav-link.active {
    background-color: #FFF9E6;
  }

  .active-bar {
    display: none;
  }

  /* Hero Section Mobile Adaptations */
  .hero-section {
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.5rem);
    line-height: 1.16;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.95rem;
  }

  .hero-guarantees {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Hero Hexagon Visual & Badges on Mobile */
  .hero-hexagon-wrap {
    max-width: 100%;
    padding: 0;
  }

  .floating-badge {
    position: absolute;
    padding: 9px 14px;
    border-radius: 14px;
    max-width: 195px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .badge-icon svg {
    width: 18px;
    height: 18px;
  }

  .badge-text strong {
    font-size: 0.8rem;
  }

  .badge-text span {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .badge-top-left {
    top: 4%;
    left: -2%;
    animation: floatTopLeft 4s ease-in-out infinite alternate;
  }

  .badge-top-right {
    top: 6%;
    right: -2%;
    animation: floatTopRight 4.5s ease-in-out 0.5s infinite alternate;
  }

  .badge-bottom {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatBottom 5s ease-in-out 1s infinite alternate;
  }

  /* Clients Section Mobile */
  .clients-section {
    padding: 28px 0 20px 0;
  }

  .clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
    margin-bottom: 20px;
  }

  .client-logo-item {
    justify-content: center;
    font-size: 0.88rem;
  }

  /* Services Grid Mobile */
  .services-section {
    padding: 44px 0 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px 20px;
  }

  /* Stats Banner Mobile (2x2 Grid) */
  .stats-banner {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .stats-counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
  }

  .stat-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
  }

  .stat-icon {
    width: 20px;
    height: 20px;
    color: var(--color-yellow);
  }

  .stat-number {
    font-size: 1.85rem;
    font-weight: 800;
    color: #FFFFFF;
  }

  .stat-label {
    font-size: 0.78rem;
    color: #94A3B8;
    text-align: center;
  }

  .stats-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stats-right-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .stats-right .btn {
    width: 100%;
    min-height: 48px;
  }

  /* Process Vertical Timeline Mobile */
  .process-section {
    padding: 50px 0;
  }

  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    padding-left: 0;
  }

  .process-steps::before {
    display: none;
  }

  .process-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 18px 16px;
    text-align: left;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  }

  .process-icon-hex {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 0;
    flex-shrink: 0;
    box-shadow: none;
  }

  .process-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .process-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
  }

  .process-num-badge {
    margin-bottom: 0;
    font-size: 0.72rem;
    padding: 2px 8px;
  }

  .process-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--color-text);
  }

  .process-desc {
    font-size: 0.84rem;
    color: var(--color-muted);
    line-height: 1.45;
  }

  /* Cases Grid Mobile */
  .cases-section {
    padding: 60px 0;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-card {
    height: 320px;
    padding: 20px;
  }

  /* Testimonials Mobile */
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 1.85rem;
  }

  .cta-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  /* Footer Mobile */
  .site-footer {
    padding-top: 50px;
    padding-bottom: 90px; /* Extra padding for bottom floating bar */
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-logo {
    align-self: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-links, .footer-contact-list {
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  /* ==========================================================================
     MOBILE APP-LIKE ENHANCEMENTS
     ========================================================================== */

  /* Reserve space inside footer for mobile bottom bar */
  body {
    padding-bottom: 0;
  }

  .site-footer {
    padding-bottom: 84px !important;
  }

  /* Curved Entrances & Exits for All Dark Sections (Mobile Only) */
  .stats-banner {
    border-radius: 28px;
    margin-left: 12px;
    margin-right: 12px;
    margin-top: 24px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 184, 0, 0.12);
  }

  .process-section {
    padding-top: 50px;
    position: relative;
    z-index: 1;
  }

  .cta-section {
    border-radius: 28px;
    margin-left: 12px;
    margin-right: 12px;
    margin-top: 24px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 184, 0, 0.12);
  }

  .site-footer {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 84px !important;
    box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.25);
  }

  /* Sticky Floating Bottom Bar */
  .mobile-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    height: 58px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 184, 0, 0.35);
    border-radius: 999px;
    padding: 5px 8px;
    z-index: 9999;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 16px rgba(255, 184, 0, 0.18);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }

  .mobile-bottom-bar.is-hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
  }

  .mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 0.65rem;
    font-weight: 700;
    gap: 2px;
    padding: 6px 10px;
    border-radius: 99px;
    transition: color 0.2s ease, background-color 0.2s ease;
  }

  .mobile-bottom-item:active {
    color: var(--color-yellow);
    background-color: rgba(255, 255, 255, 0.08);
  }

  .mobile-bottom-primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #FFB800 0%, #E5A600 100%);
    color: #000000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 9px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(255, 184, 0, 0.35);
    transition: transform 0.15s ease;
    flex: 1;
    margin: 0 4px;
    white-space: nowrap;
  }

  .mobile-bottom-primary-btn:active {
    transform: scale(0.96);
  }

  /* Mobile Swipe Hint Badge */
  .mobile-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--color-yellow);
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.22);
    padding: 5px 14px;
    border-radius: 99px;
    letter-spacing: 0.02em;
    animation: pulseSwipeHint 2s infinite;
  }

  @keyframes pulseSwipeHint {
    0%, 100% { transform: translateX(0); opacity: 0.9; }
    50% { transform: translateX(4px); opacity: 1; }
  }

  /* Perfectly Centered Touch Horizontal Scroll Snap Carousels for Services and Cases */
  .services-grid, .cases-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: calc(50vw - 155px);
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    padding-left: calc(50vw - 155px);
    padding-right: calc(50vw - 155px);
    margin-left: -18px;
    margin-right: -18px;
    gap: 16px;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar, .cases-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 310px;
    width: 310px;
    max-width: 82vw;
    scroll-snap-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.85);
    touch-action: pan-x pan-y;
    transition: transform 0.2s ease, border-color 0.2s ease;
  }

  .service-card:active {
    transform: scale(0.98);
    border-color: var(--color-yellow);
  }

  .case-card {
    flex: 0 0 310px;
    width: 310px;
    max-width: 82vw;
    scroll-snap-align: center;
    height: 330px;
    touch-action: pan-x pan-y;
    overflow: hidden;
    transition: transform 0.2s ease;
  }

  .case-card:active {
    transform: scale(0.98);
  }
}

/* Small Smartphone Screen Adjustments (<= 480px) */
@media (max-width: 480px) {
  .logo-img {
    height: 48px;
  }

  .header-cta-btn {
    padding: 8px 12px;
    font-size: 0.78rem;
    gap: 6px;
  }

  .cta-whatsapp-circle {
    display: none;
  }

  .floating-badge {
    padding: 7px 10px;
    max-width: 160px;
  }

  .badge-text span {
    display: none;
  }

  .badge-text strong {
    font-size: 0.75rem;
    margin-bottom: 0;
  }
}

/* ==========================================================================
   FUNIL DE QUALIFICAÇÃO INTERATIVO (MODAL STYLES)
   ========================================================================== */
.funnel-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 16px;
}

.funnel-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.funnel-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1;
}

.funnel-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  background: #0F172A;
  border: 1px solid rgba(255, 184, 0, 0.28);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 184, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: funnelModalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes funnelModalPop {
  0% { transform: scale(0.92) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Header */
.funnel-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

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

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

.funnel-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.funnel-step-indicator {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-yellow);
}

.funnel-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #94A3B8;
  font-size: 1.6rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.funnel-close-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

/* Progress Track */
.funnel-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.funnel-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFB800, #FFD000);
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.6);
  transition: width 0.35s ease;
}

/* Body & Steps */
.funnel-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.funnel-step {
  display: none;
  animation: funnelStepFade 0.3s ease;
}

.funnel-step.active {
  display: block;
}

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

.funnel-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-yellow);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.funnel-step-question {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 4px;
}

.funnel-step-subtext {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 20px;
}

/* Options Grid */
.funnel-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.funnel-option-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: #FFFFFF;
}

.funnel-option-card:hover {
  background: rgba(255, 184, 0, 0.1);
  border-color: var(--color-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.15);
}

.funnel-option-card.selected {
  background: rgba(255, 184, 0, 0.18);
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 2px var(--color-yellow);
}

.option-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.option-content strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
}

.option-content span {
  font-size: 0.78rem;
  color: #94A3B8;
}

.option-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.funnel-option-card:hover .option-check {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
}

.funnel-option-card.selected .option-check {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: #000000;
  font-weight: 900;
}

/* Form in Step 5 */
.funnel-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.funnel-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.funnel-contact-form label {
  font-size: 0.825rem;
  font-weight: 700;
  color: #E2E8F0;
}

.funnel-contact-form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.92rem;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.funnel-contact-form input::placeholder {
  color: #64748B;
}

.funnel-contact-form input:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.funnel-submit-btn {
  width: 100%;
  margin-top: 6px;
  font-size: 0.95rem;
  padding: 14px 20px;
}

/* Footer */
.funnel-footer {
  padding: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  justify-content: flex-start;
}

.funnel-back-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 0.825rem;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.funnel-back-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile Adjustments for Funnel Modal */
@media (max-width: 640px) {
  .funnel-container {
    max-height: 94vh;
    border-radius: 20px;
  }

  .funnel-header {
    padding: 14px 18px;
  }

  .funnel-body {
    padding: 18px 16px;
  }

  .funnel-step-question {
    font-size: 1.1rem;
  }

  .funnel-option-card {
    padding: 12px 14px;
    gap: 10px;
  }

  .option-icon {
    width: 34px;
    height: 34px;
    font-size: 1.15rem;
  }

  .option-content strong {
    font-size: 0.85rem;
  }

  .option-content span {
    font-size: 0.74rem;
  }
}

/* Summary Recap Box in Step 5 */
.funnel-summary-recap {
  background: rgba(255, 184, 0, 0.06);
  border: 1px dashed rgba(255, 184, 0, 0.35);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
  text-align: left;
}

.recap-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.recap-icon {
  font-size: 0.9rem;
}

.recap-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.recap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.recap-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  line-height: 1.3;
}

/* Trust Badge in Step 5 */
.funnel-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.76rem;
  color: #94A3B8;
  text-align: center;
}

/* ==========================================================================
   INLINE FUNNEL SECTION ("AGENDE SUA REUNIÃO COM NOSSOS ESPECIALISTAS")
   ========================================================================== */
.inline-funnel-section {
  padding: 85px 0 95px 0;
  background: #0A0F1D;
  position: relative;
  overflow: hidden;
}

.inline-funnel-header {
  text-align: center;
  margin-bottom: 40px;
}

.inline-funnel-header .section-subtext {
  color: #94A3B8;
  max-width: 580px;
  margin: 10px auto 0 auto;
  font-size: 1rem;
}

.inline-funnel-card {
  max-width: 720px;
  margin: 0 auto;
  background: #0F172A;
  border: 1px solid rgba(255, 184, 0, 0.28);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 184, 0, 0.08);
  overflow: hidden;
}

.inline-funnel-top {
  padding: 16px 28px 0 28px;
  display: flex;
  justify-content: flex-end;
}

.inline-funnel-body {
  padding: 24px 28px 32px 28px;
}

.inline-step {
  display: none;
  animation: funnelStepFade 0.3s ease;
}

.inline-step.active {
  display: block;
}

.inline-funnel-footer {
  padding: 14px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}

@media (max-width: 640px) {
  .inline-funnel-section {
    padding: 55px 0 65px 0;
  }

  .inline-funnel-top {
    padding: 14px 18px 0 18px;
  }

  .inline-funnel-body {
    padding: 18px 18px 24px 18px;
  }

  .inline-funnel-footer {
    padding: 12px 18px;
  }
}