/* ===== VARIABLES & RESET ===== */
:root {
  --blue-deep: #050e1a;
  --blue-dark: #080f20;
  --blue-mid: #0d1f3c;
  --blue-accent: #0f3460;
  --orange: #ff6b00;
  --orange-light: #ff8534;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --text-body: #cbd5e1;
  --font: 'Inter', sans-serif;
  --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
  --radius: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden
}

body {
  font-family: var(--font);
  background: var(--blue-dark);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition)
}

ul {
  list-style: none
}

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

section {
  overflow-x: hidden
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem
}

.section-sub {
  color: var(--gray-400);
  font-size: 1.1rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.7
}

.text-orange {
  color: var(--orange)
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange), #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.text-center {
  text-align: center
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
  opacity: 1;
  transform: none
}

.reveal-delay {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s .3s ease, transform .9s .3s ease
}

.reveal-delay.visible {
  opacity: 1;
  transform: none
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: .9rem 0;
  transition: var(--transition);
  background: rgba(5, 14, 26, .85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.navbar.scrolled {
  background: rgba(5, 14, 26, .98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .5)
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem
}

.logo {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: 1.5rem;
  font-weight: 800
}

.logo-wr {
  color: var(--white)
}

.logo-7 {
  color: var(--orange)
}

.logo-eng {
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-left: .25rem
}

.nav-links {
  display: flex;
  gap: 2rem
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-400)
}

.nav-links a:hover {
  color: var(--white)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--orange), #e55a00);
  color: var(--white);
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 2px 12px rgba(255, 107, 0, .35);
  position: relative;
  overflow: hidden
}

.btn-nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transition: left .4s ease
}

.btn-nav-cta:hover::after {
  left: 100%
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, .5)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition)
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  background: var(--blue-deep)
}

/* Desktop hero background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url('images/wr7_hero_v2.png') center center / cover no-repeat
}

/* Tablet hero background (max 1024px) */
@media(max-width:1024px) {
  .hero-bg {
    background: url('images/wr7_hero_tablet.png') center center / cover no-repeat
  }
}

/* Mobile hero background (max 768px) */
@media(max-width:768px) {
  .hero-bg {
    background: url('images/wr7_hero_mobile.png') center top / cover no-repeat
  }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 52, 96, .15) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 52, 96, .15) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%)
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35
}

.hero-glow-1 {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 14, 26, 0.92) 0%, rgba(5, 14, 26, 0.75) 60%, rgba(5, 14, 26, 0.45) 100%);
  border-radius: 0;
  filter: none;
  opacity: 1;
  top: 0;
  left: 0
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, .25), transparent);
  bottom: -100px;
  right: -50px
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2rem
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 107, 0, .5);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, .5)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0)
  }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -2px
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  line-height: 1.7
}

.br-desktop {
  display: block
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--gray-400);
  padding: .5rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500
}

.hero-badge i {
  color: var(--orange);
  font-size: .9rem
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(135deg, var(--orange) 0%, #e55a00 100%);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 4px 24px rgba(255, 107, 0, .45), 0 1px 0 rgba(255, 255, 255, .1) inset;
  position: relative;
  overflow: hidden;
  transition: var(--transition)
}

.btn-primary-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s ease
}

.btn-primary-hero:hover::after {
  left: 100%
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 107, 0, .6)
}

.btn-primary-hero i {
  font-size: 1.2rem
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition)
}

.btn-ghost-hero:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
  transform: translateY(-3px)
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1
}

.stat-plus {
  color: var(--orange)
}

.stat-label {
  font-size: .8rem;
  color: var(--gray-600);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: 1px
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .1)
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--gray-600);
  font-size: .75rem;
  letter-spacing: 1px
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollDrop 1.5s infinite
}

@keyframes scrollDrop {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom
  }
}

/* ===== IMPACT ===== */
.impact-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  text-align: center
}

.impact-quote {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem
}

.impact-quote em {
  color: var(--orange);
  font-style: normal
}

.impact-sub {
  color: var(--gray-400);
  font-size: 1.1rem
}

/* ===== PROBLEM ===== */
.problem-section {
  padding: 6rem 0;
  background: var(--blue-dark)
}

.problem-section .section-label,
.problem-section .section-title {
  text-align: center
}

.problem-section .section-title {
  margin-bottom: 3rem
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem
}

.problem-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column
}

.problem-card:hover {
  background: rgba(255, 107, 0, .05);
  border-color: rgba(255, 107, 0, .2);
  transform: translateY(-6px)
}

.problem-card-img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden
}

.problem-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  filter: brightness(.8) saturate(1.1)
}

.problem-card:hover .problem-card-img img {
  transform: scale(1.06)
}

.problem-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8, 15, 32, 1) 100%)
}

.problem-card-body {
  padding: 1.5rem 2rem 2rem
}

.problem-icon {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 1rem
}

.problem-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .6rem
}

.problem-card p {
  font-size: .875rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin: 0
}


/* ===== SOLUTION ===== */
.solution-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: var(--blue-deep)
}

.solution-bg {
  position: absolute;
  inset: 0
}

.solution-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(15, 52, 96, .5), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.solution-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.solution-text .section-title {
  margin-bottom: 0
}

.section-title.white {
  color: var(--white)
}

.solution-big-text {
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.5rem
}

.solution-big-text strong {
  color: var(--orange)
}

.solution-desc p {
  color: var(--gray-400);
  margin-bottom: 2rem
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: linear-gradient(135deg, var(--orange) 0%, #e55a00 100%);
  color: var(--white);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 4px 20px rgba(255, 107, 0, .4), 0 1px 0 rgba(255, 255, 255, .1) inset;
  position: relative;
  overflow: hidden;
  transition: var(--transition)
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transition: left .45s ease
}

.btn-primary:hover::after {
  left: 100%
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 107, 0, .55)
}

.solution-section .section-label.light {
  color: var(--orange)
}

/* ===== SERVICES ===== */
.services-section {
  padding: 6rem 0;
  background: var(--blue-dark)
}

.services-section .section-label,
.services-section .section-title {
  text-align: center
}

.services-section .section-title {
  margin-bottom: 3rem
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem
}

.service-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column
}

.service-card:hover {
  border-color: rgba(255, 107, 0, .3);
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.service-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.75) saturate(1.1)
}

.service-card:hover .service-card-img img {
  transform: scale(1.07)
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(8, 15, 32, 1) 100%)
}

.service-card-inner {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem
}

.service-icon-wrap.orange {
  background: rgba(255, 107, 0, .15);
  color: var(--orange)
}

.service-icon-wrap.blue {
  background: rgba(15, 52, 96, .5);
  color: #60a5fa
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .75rem
}

.service-card p {
  font-size: .9rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.7
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem
}

.service-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--gray-400)
}

.service-list i {
  color: var(--orange);
  font-size: .75rem
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), #e55a00);
  padding: .6rem 1.4rem;
  border-radius: 50px;
  margin-top: auto;
  width: fit-content;
  box-shadow: 0 3px 12px rgba(255, 107, 0, .3);
  position: relative;
  overflow: hidden;
  transition: var(--transition)
}

.service-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transition: left .4s ease
}

.service-cta:hover::after {
  left: 100%
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 107, 0, .5);
  gap: .75rem
}

/* ===== DIFFERENTIAL ===== */
.differential-section {
  padding: 6rem 0;
  background: var(--blue-deep)
}

.diff-header {
  text-align: center;
  margin-bottom: 4rem
}

.diff-header .section-title {
  margin-bottom: 0
}

.differential-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start
}

/* Image side */
.differential-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 540px
}

.differential-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(1.1)
}

.diff-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 14, 26, .8) 0%, transparent 60%)
}

.diff-float-stat {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 107, 0, .15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 107, 0, .3);
  border-radius: 12px;
  padding: 1rem 1.5rem
}

.diff-float-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1
}

.diff-float-number span {
  color: var(--orange)
}

.diff-float-label {
  display: block;
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: .25rem
}

/* Cards side */
.differential-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem
}

.diff-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition)
}

.diff-card:hover {
  background: rgba(255, 107, 0, .05);
  border-color: rgba(255, 107, 0, .25);
  transform: translateY(-4px)
}

.diff-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem
}

.diff-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 0, .12);
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0
}

.diff-card-metric {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  text-align: right;
  line-height: 1
}

.diff-card-metric span {
  font-size: .75rem;
  color: var(--orange);
  font-weight: 600
}

.diff-card h4 {
  font-size: .95rem;
  color: var(--white);
  margin-bottom: .5rem;
  font-weight: 700
}

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

.diff-cta {
  grid-column: span 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: .5rem
}

@media(max-width:992px) {
  .differential-inner {
    grid-template-columns: 1fr
  }

  .differential-img {
    min-height: 320px
  }

  .differential-cards {
    grid-template-columns: 1fr 1fr
  }

  .diff-cta {
    grid-column: span 2
  }
}

@media(max-width:600px) {
  .differential-cards {
    grid-template-columns: 1fr
  }

  .diff-cta {
    grid-column: span 1
  }
}


/* ===== CLIENTS ===== */
.clients-section {
  padding: 6rem 0 4rem;
  background: var(--blue-dark);
  overflow: hidden;
  max-width: 100vw
}

.clients-header {
  text-align: center;
  margin-bottom: 3rem
}

.clients-header .section-title {
  margin-bottom: 1rem
}

.clients-sub {
  color: var(--gray-400);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto
}

/* Numbers bar — 4 colunas, divisória via border */
.clients-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 2rem 1rem;
  margin-bottom: 4rem;
  box-sizing: border-box;
  overflow: hidden;
}

.clients-num-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.clients-num-item:last-child {
  border-right: none
}

.clients-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1
}

.clients-num-plus {
  color: var(--orange)
}

.clients-num-label {
  font-size: .7rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center
}

.clients-num-divider {
  display: none
}

/* Marquee */
.clients-marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  margin-bottom: 3rem;
  max-width: 100%;
  width: 100%
}

.clients-marquee-fade-left,
.clients-marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none
}

.clients-marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--blue-dark) 0%, transparent 100%)
}

.clients-marquee-fade-right {
  right: 0;
  background: linear-gradient(-90deg, var(--blue-dark) 0%, transparent 100%)
}

.clients-marquee {
  display: flex;
  gap: 1.5rem;
  animation: marqueeScroll 28s linear infinite;
  width: max-content
}

.clients-marquee:hover {
  animation-play-state: paused
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.client-logo-slide {
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 100px;
  flex-shrink: 0;
  transition: var(--transition);
  border: 2px solid transparent
}

.client-logo-slide:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(255, 107, 0, .2)
}

.client-logo-slide img {
  max-height: 60px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(15%);
  transition: var(--transition)
}

.client-logo-slide:hover img {
  filter: grayscale(0%) drop-shadow(0 2px 8px rgba(0, 0, 0, .15))
}

/* Quote */
.clients-quote {
  margin-top: 1rem
}

.clients-quote-inner {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 2.5rem 3rem;
  max-width: 860px;
  margin: 0 auto
}

.clients-quote-icon {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: .5
}

.clients-quote-inner p {
  font-size: 1.1rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem
}

.clients-quote-author {
  display: flex;
  align-items: center;
  gap: .75rem
}

.clients-quote-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0
}

.clients-quote-author span {
  font-size: .875rem;
  color: var(--gray-400);
  font-weight: 500
}

/* Tablet */
@media(max-width:768px) {
  .clients-numbers {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem 1rem;
  }

  .clients-num-item:nth-child(2) {
    border-right: none
  }

  .clients-num-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .08)
  }

  .clients-num-item:nth-child(2),
  .clients-num-item:nth-child(4) {
    border-right: none
  }

  .clients-num-item:nth-child(1),
  .clients-num-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .clients-num-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .clients-num {
    font-size: 2rem
  }

  .clients-num-item {
    padding: .75rem .5rem
  }

  .clients-quote-inner {
    padding: 2rem 1.5rem
  }

  .client-logo-slide {
    min-width: 140px;
    height: 80px;
    padding: 1rem 1.5rem
  }

  .clients-marquee-fade-left,
  .clients-marquee-fade-right {
    width: 60px
  }
}

/* Mobile pequeno */
@media(max-width:480px) {
  .clients-numbers {
    padding: 1rem .75rem
  }

  .clients-num {
    font-size: 1.6rem
  }

  .clients-num-label {
    font-size: .62rem;
    letter-spacing: .5px
  }

  .clients-num-item {
    padding: .6rem .25rem
  }
}



/* ===== CTA STRIP ===== */
.cta-strip {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--orange), #d45500)
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap
}

.cta-strip-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: .5rem
}

.cta-strip-text p {
  color: rgba(255, 255, 255, .85);
  font-size: 1rem
}

.btn-cta-mega {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  color: var(--orange);
  padding: 1.1rem 2.75rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 6px 30px rgba(0, 0, 0, .3);
  position: relative;
  overflow: hidden;
  transition: var(--transition)
}

.btn-cta-mega::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, .08), transparent);
  transition: left .45s ease
}

.btn-cta-mega:hover::after {
  left: 100%
}

.btn-cta-mega:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .4)
}

.btn-cta-mega i {
  font-size: 1.3rem;
  color: #25d366
}

/* ===== FAQ ===== */
.faq-section {
  padding: 6rem 0;
  background: var(--blue-dark)
}

.faq-section .section-label,
.faq-section .section-title {
  text-align: center
}

.faq-section .section-title {
  margin-bottom: 3rem
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.faq-item {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  overflow: hidden
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  transition: var(--transition)
}

.faq-btn:hover {
  color: var(--orange)
}

.faq-icon {
  color: var(--orange);
  font-size: .85rem;
  flex-shrink: 0;
  transition: transform .3s ease
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

.faq-answer {
  padding: 0 1.75rem 1.5rem;
  color: var(--gray-400);
  font-size: .9rem;
  line-height: 1.8;
  display: none
}

.faq-item.open .faq-answer {
  display: block
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-deep)
}

.footer-top {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem
}

.footer-brand p {
  color: var(--gray-400);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem
}

.footer-social {
  display: flex;
  gap: 1rem
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: var(--transition)
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white)
}

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.footer-col a {
  color: var(--gray-400);
  font-size: .875rem
}

.footer-col a:hover {
  color: var(--orange)
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--gray-400)
}

.footer-contact-list i {
  color: var(--orange);
  margin-top: .2rem;
  width: 16px;
  flex-shrink: 0
}

.footer-contact-list a {
  color: var(--gray-400)
}

.footer-contact-list a:hover {
  color: var(--orange)
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.8
}

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: var(--transition)
}

.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .6)
}

.float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--blue-dark);
  padding: .4rem .9rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2)
}

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

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {

  .solution-inner,
  .differential-inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-brand {
    grid-column: span 2
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-title {
    letter-spacing: -1px
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem
  }

  .stat-divider {
    display: none
  }

  .cta-strip-inner {
    flex-direction: column;
    text-align: center
  }

  .btn-cta-mega {
    width: 100%;
    justify-content: center
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-brand {
    grid-column: auto
  }

  .br-desktop {
    display: none
  }

  /* Mobile hero overlay — escuro por cima para texto legível */
  .hero-glow-1 {
    background: linear-gradient(to bottom, rgba(5, 14, 26, 0.88) 0%, rgba(5, 14, 26, 0.70) 60%, rgba(5, 14, 26, 0.85) 100%)
  }

  .hero-content {
    text-align: center
  }

  .hero-eyebrow {
    justify-content: center
  }

  .hero-badges {
    justify-content: center
  }

  .hero-cta-group {
    justify-content: center
  }

  .hero-stats {
    justify-content: center
  }
}