/* ============================================================
   AVIOLOG TRANSPORTES — Global Stylesheet
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:       #042e68;
  --primary-dark:  #021e47;
  --primary-light: #0a4a9e;
  --accent:        #ea6f25;
  --accent-dark:   #c85c18;
  --accent-light:  #f5894a;
  --bg:            #f7f9fa;
  --white:         #ffffff;
  --text:          #1a1a2e;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;
  --border:        #e2e8f0;
  --shadow-sm:     0 1px 3px rgba(4,46,104,.08), 0 1px 2px rgba(4,46,104,.04);
  --shadow-md:     0 4px 16px rgba(4,46,104,.10), 0 2px 6px rgba(4,46,104,.06);
  --shadow-lg:     0 12px 40px rgba(4,46,104,.14), 0 4px 12px rgba(4,46,104,.08);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    .25s cubic-bezier(.4,0,.2,1);
  --font:          'Inter', system-ui, sans-serif;
  --max-width:     1200px;
  --nav-height:    72px;
  --topbar-height: 36px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* --- Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-header.centered .section-subtitle { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .9375rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(234,111,37,.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(4,46,104,.07);
  transition: var(--transition);
  overflow: visible;
}
.navbar.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(4,46,104,.12);
}
.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo tab shape */
.navbar__logo-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-right: 36px;
  z-index: 2;
}
.navbar__logo-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 22px 100%);
  transition: background var(--transition);
}
.navbar.scrolled .navbar__logo-wrap::after {
  background: rgba(255,255,255,.85);
}
.navbar__logo img {
  height: 58px;
  width: auto;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar__nav a {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.navbar__nav a:hover {
  color: var(--primary);
  background: rgba(4,46,104,.06);
}
.navbar__nav a.active {
  background: var(--accent);
  color: var(--white);
}
.navbar__cta { margin-left: 4px; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.navbar__mobile a:hover { background: var(--bg); color: var(--primary); }
.navbar__mobile .btn { margin-top: 8px; justify-content: center; }

/* ============================================================
   HERO — FULL-BLEED (REDESIGN)
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + var(--topbar-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero::before { display: none; }

/* Imagem de fundo full-bleed */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

/* Overlay gradiente — escuro à esquerda, transparente à direita */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(2,30,71,.82) 0%,
      rgba(2,30,71,.72)  35%,
      rgba(4,46,104,.48) 58%,
      rgba(4,46,104,.12)  80%,
      transparent       100%
    );
}

/* Marca d'água — lado direito, atrás da imagem */
.hero__watermark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 26%;
  max-width: 280px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 2;
  filter: brightness(10) saturate(0);
  user-select: none;
}

/* Inner — single column, conteúdo à esquerda */
.hero__inner {
  display: block;
  position: relative;
  z-index: 3;
  padding: 100px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__content {
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234,111,37,.22);
  color: #ff8533;
  border: 1px solid rgba(255,133,51,.6);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8125rem;
  font-weight: 700;
  margin-bottom: 20px;
  cursor: default;
  transition: background .25s ease, box-shadow .25s ease, transform .2s ease, color .2s ease;
  text-shadow: 0 0 16px rgba(255,133,51,.4);
}
.hero__badge:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(234,111,37,.55);
  transform: scale(1.04);
  text-shadow: none;
}
.hero__badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero__eyebrow {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero__title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -.025em;
}
.hero__title span { color: var(--accent); }

.hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Botão outline no fundo escuro */
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* Badges de confiança em linha abaixo do CTA */
.hero__floats {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.hero__badge-float {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.hero__badge-float:hover {
  border-color: rgba(234,111,37,.5);
  background: rgba(234,111,37,.12);
  transform: translateX(6px);
}
.hero__badge-float:hover .icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(234,111,37,.3) !important;
}
.hero__badge-float .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.hero__badge-float-1 .icon { background: rgba(234,111,37,.2); color: var(--accent); }
.hero__badge-float-2 .icon { background: rgba(255,255,255,.12); color: var(--white); }

.hero__float-label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.hero__float-value {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
}

/* Stats */
.hero__stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.hero__stats-bar {
  border-color: rgba(255,255,255,.12);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary);
  padding: 0;
}
.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-bar__item {
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item:hover { background: rgba(255,255,255,.05); }
.trust-bar__icon {
  width: 44px;
  height: 44px;
  background: rgba(234,111,37,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-bar__text strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.trust-bar__text span {
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   SERVICES PREVIEW (Home)
   ============================================================ */
.services-preview {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(4,46,104,.2);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(4,46,104,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.service-card__link:hover { gap: 10px; }

/* ============================================================
   WHY US / DIFFERENTIALS
   ============================================================ */
.why-us {
  background: var(--white);
}
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.why-us__visual {
  position: relative;
  display: flex;
  flex-direction: column;
}
.why-us__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
  flex: 1;
}
.why-us__image-grid img {
  border-radius: var(--radius-md);
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 160px;
}
.why-us__image-grid img:first-child {
  grid-column: 1 / -1;
  min-height: 220px;
}
.why-us__badge {
  position: absolute;
  bottom: 16px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-us__badge-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.why-us__badge-text {
  font-size: .75rem;
  font-weight: 600;
  opacity: .9;
  margin-top: 4px;
  max-width: 80px;
}
.differentials-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.differential-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--bg);
}
.differential-item:hover {
  border-color: rgba(234,111,37,.3);
  background: rgba(234,111,37,.04);
}
.differential-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(234,111,37,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.differential-item__title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.differential-item__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 500px;
  height: 500px;
  background: rgba(234,111,37,.06);
  border-radius: 50%;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  max-width: 540px;
}
.cta-banner__title span { color: var(--accent-light); }
.cta-banner__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin-top: 10px;
}
.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.footer__col-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: .9rem;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--accent-light); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  margin-bottom: 10px;
}
.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom-full {
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: calc(var(--nav-height) + var(--topbar-height) + 64px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='50' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
  opacity: .5;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ============================================================
   SOBRE NÓS PAGE
   ============================================================ */
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}
.about-intro__image {
  position: relative;
  display: flex;
  flex-direction: column;
}
.about-intro__image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  flex: 1;
}
.about-intro__accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 140px;
  height: 140px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-intro__tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}
.about-intro p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(4,46,104,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 20px;
}
.value-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.credentials {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
}
.credentials__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.credentials__subtitle {
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
}
.credentials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.credential-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.credential-item:hover { background: rgba(255,255,255,.12); }
.credential-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(234,111,37,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}
.credential-item__title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.credential-item__desc {
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* ============================================================
   SERVIÇOS PAGE
   ============================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-full-card:hover {
  border-color: rgba(4,46,104,.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-full-card__header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-full-card__header-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.service-full-card__header-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}
.service-full-card__header-tag {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
}
.service-full-card__body {
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-full-card__desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--text);
}
.service-feature-item svg {
  color: var(--accent);
  flex-shrink: 0;
}
.process-section { background: var(--bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 16px);
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.process-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.process-step__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.segments-section { background: var(--white); }
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.segment-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  font-weight: 600;
  color: var(--primary);
  font-size: .9375rem;
}
.segment-card:hover {
  background: rgba(4,46,104,.04);
  border-color: rgba(4,46,104,.2);
  transform: translateX(4px);
}
.segment-card svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   CONTATO PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: stretch;
}
.contact-info__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-info__desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(234,111,37,.3);
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(4,46,104,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-card__label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-card__value {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--primary);
}
.contact-card__value a {
  color: var(--primary);
  transition: var(--transition);
}
.contact-card__value a:hover { color: var(--accent); }
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(4,46,104,.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-submit { width: 100%; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { padding-top: 64px; padding-bottom: 64px; }
  .hero__overlay {
    background: linear-gradient(
      100deg,
      rgba(2,30,71,.82) 0%,
      rgba(2,30,71,.78) 50%,
      rgba(4,46,104,.58) 80%,
      rgba(4,46,104,.28)  100%
    );
  }
  .hero__watermark { display: none; }

  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { grid-template-columns: 1fr; }
  .why-us__visual { display: none; }
  .about-intro__inner { grid-template-columns: 1fr; }
  .about-intro__image { display: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .contact-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar__nav { display: none; }
  .navbar__cta.desktop-only { display: none; }
  .navbar__hamburger { display: flex; }

  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-bar__item:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .segments-grid { grid-template-columns: 1fr; }
  .credentials__grid { grid-template-columns: 1fr; }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px; }

  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .hero__floats { flex-direction: column; }
  .hero__stats { gap: 20px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   HOME — ABOUT PREVIEW
   ============================================================ */
.home-about {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.home-about::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
  pointer-events: none;
}
.home-about::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(234,111,37,.06);
  border-radius: 50%;
  pointer-events: none;
}
.home-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.home-about__images {
  position: relative;
  display: flex;
  flex-direction: column;
}
.home-about__image-stack {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-about__image-main {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  flex: 1;
}
.home-about__image-thumb {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 44%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-lg);
}
.home-about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.home-about__stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: var(--transition);
}
.home-about__stat:hover { background: rgba(255,255,255,.12); }
.home-about__stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 4px;
}
.home-about__stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}
.home-about__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(234,111,37,.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}
.testimonial-card__quote {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  position: relative;
  padding-top: 8px;
}
.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  left: -4px;
  font-size: 3rem;
  color: var(--accent);
  opacity: .25;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9375rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--primary);
  line-height: 1.3;
}
.testimonial-card__role {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.testimonials__cta {
  margin-top: 48px;
  text-align: center;
}

/* ============================================================
   HOME — FAQ MINI
   ============================================================ */
.faq-home { background: var(--white); }
.faq-home__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.faq-home__left .section-subtitle { margin-bottom: 28px; }
.faq-home__left .btn { margin-top: 8px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(4,46,104,.2); }
.faq-item[open] { border-color: rgba(4,46,104,.2); background: var(--white); }
.faq-item summary {
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
  font-size: .9375rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item[open] summary .faq-icon { transform: rotate(180deg); }
.faq-item__answer {
  padding: 0 20px 18px;
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .home-about__inner { grid-template-columns: 1fr; gap: 48px; }
  .home-about__images { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .faq-home__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .home-about__stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   ANIMATIONS — KEYFRAMES
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes float-alt {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%  { transform: scale(1.08); box-shadow: 0 6px 32px rgba(37,211,102,.65); }
  100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37,211,102,.45); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes draw-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ============================================================
   HERO — ANIMATED ENTRANCE
   ============================================================ */
.hero__content {
  animation: slide-in-left .8s cubic-bezier(.4,0,.2,1) both;
}
.hero__bg {
  animation: fade-up .6s ease both;
}
/* badge floats — sem animação contínua, hover controla o movimento */

/* ============================================================
   TRUST BAR — MARQUEE TICKER (desktop)
   ============================================================ */
.trust-bar {
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.trust-bar__inner:hover {
  animation-play-state: paused;
}
.trust-bar__item {
  flex-shrink: 0;
  min-width: 260px;
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 28px 32px;
}
@media (max-width: 768px) {
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    animation: none;
  }
  .trust-bar__item {
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
}

/* ============================================================
   SERVICE CARDS — ENHANCED HOVER
   ============================================================ */
.service-card {
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stat-counter {
  display: inline-block;
}
.home-about__stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  transition: color .3s ease;
}
.home-about__stat:hover .home-about__stat-value {
  color: var(--white);
}

/* ============================================================
   SECTION LABEL — ANIMATED LINE
   ============================================================ */
.section-label::before {
  animation: draw-line .6s ease both;
  transform-origin: left;
}

/* ============================================================
   PAGE HERO — MORE DYNAMIC
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
}
.page-hero__title {
  animation: fade-up .7s ease both;
}
.page-hero__subtitle {
  animation: fade-up .7s .15s ease both;
}

/* ============================================================
   FLOATING WHATSAPP — PULSE
   ============================================================ */
.whatsapp-float {
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  animation: none;
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: pulse-ring 2.5s .5s ease-in-out infinite;
}

/* ============================================================
   DIFFERENTIAL ITEMS — ANIMATED ICON
   ============================================================ */
.differential-item {
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.differential-item:hover {
  transform: translateX(6px);
}
.differential-item:hover .differential-item__icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(234,111,37,.2);
}
.differential-item__icon {
  transition: transform .3s ease, background .3s ease;
}

/* ============================================================
   PROCESS STEPS — ANIMATED NUMBERS
   ============================================================ */
.process-step__number {
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.process-step:hover .process-step__number {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: scale(1.1);
}

/* ============================================================
   CTA BANNER — ANIMATED GRADIENT
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
}

/* ============================================================
   IMAGE OVERLAY SHIMMER ON HOVER
   ============================================================ */
.hero__image-main,
.home-about__image-main,
.about-intro__image img {
  transition: transform .6s ease, box-shadow .4s ease;
}
.hero__image-main:hover img,
.home-about__image-stack:hover .home-about__image-main {
  transform: scale(1.02);
}

/* ============================================================
   SEGMENT CARDS — EXTRA MOTION
   ============================================================ */
.segment-card {
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.segment-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}
.segment-card svg {
  transition: transform .3s ease;
}
.segment-card:hover svg {
  transform: scale(1.2) rotate(-8deg);
}

/* ============================================================
   VALUE CARDS — ICON ANIMATION
   ============================================================ */
.value-card__icon {
  transition: transform .3s ease, background .3s ease;
}
.value-card:hover .value-card__icon {
  transform: scale(1.12) rotate(5deg);
  background: rgba(234,111,37,.12);
  color: var(--accent);
}

/* ============================================================
   HERO STATS BAR
   ============================================================ */
.hero__stats-bar {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero__stat-item {
  flex: 1;
  padding-right: 24px;
}
.hero__stat-item + .hero__stat-item {
  padding-left: 24px;
  border-left: 1px solid var(--border);
}
.hero__stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero__stat-label {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   RESPONSIVE — MARQUEE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1024px) {
  .trust-bar__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    animation: none;
  }
  .trust-bar__item {
    min-width: 0;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .trust-bar__item:nth-child(2n) { border-right: none; }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 9999;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ============================================================
   RIPPLE EFFECT
   ============================================================ */
.btn {
  position: relative;
  overflow: hidden;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-expand .55s linear;
  background: rgba(255,255,255,.35);
  pointer-events: none;
}
@keyframes ripple-expand {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   SWIPER — SERVICES CAROUSEL
   ============================================================ */
.services-swiper {
  padding-bottom: 48px !important;
  overflow: visible;
}
.services-swiper .swiper-wrapper {
  align-items: stretch;
}
.services-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.services-swiper .swiper-slide .service-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.services-swiper .swiper-slide .service-card__desc {
  flex: 1;
}
.services-swiper .swiper-pagination-bullet {
  background: var(--primary);
  opacity: .3;
}
.services-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}
.services-swiper .swiper-button-prev,
.services-swiper .swiper-button-next {
  color: var(--primary);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  top: auto;
  bottom: 4px;
}
.services-swiper .swiper-button-prev::after,
.services-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 800;
}
.services-swiper .swiper-button-prev { right: 52px; left: auto; }
.services-swiper .swiper-button-next { right: 4px; }

/* ============================================================
   SWIPER — TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials-swiper {
  padding-bottom: 48px !important;
}
.testimonials-swiper .swiper-pagination-bullet {
  background: var(--primary);
  opacity: .3;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}
.testimonials-swiper .swiper-slide {
  height: auto;
}

/* ============================================================
   TYPED.JS CURSOR
   ============================================================ */
.typed-cursor {
  color: var(--accent);
  font-weight: 300;
}
.hero__title #typed-hero {
  color: var(--accent);
}

/* ============================================================
   PARALLAX HERO IMAGE
   ============================================================ */
.hero__image-main {
  will-change: transform;
}

/* Tilt removido — transform-style flat para evitar artefatos */
[data-tilt] { transform-style: flat; }

/* ============================================================
   PARALLAX — ABOUT PAGE IMAGE
   ============================================================ */
.about-intro__image img {
  will-change: transform;
}

/* ============================================================
   SECTION HEADER WITH ACTIONS (services carousel)
   ============================================================ */
.section-header--with-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.section-header--with-actions .section-header__text {
  flex: 1;
}
.section-header--with-actions .section-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.carousel-nav {
  display: flex;
  gap: 8px;
}
.carousel-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-nav__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.carousel-nav__btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .section-header--with-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   TESTIMONIAL CARDS — EQUAL HEIGHT
   ============================================================ */
.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}
.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testimonials-swiper .swiper-slide .testimonial-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testimonials-swiper .swiper-slide .testimonial-card__quote {
  flex: 1;
}

/* ============================================================
   MAPA DE DOTS — Textura de fundo suave
   ============================================================ */
.section-dots {
  position: relative;
  overflow: hidden;
}
.section-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(4,46,104,.09) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.section-dots > .container {
  position: relative;
  z-index: 1;
}
/* Variante para seções escuras */
.section-dots--dark::before {
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1.5px, transparent 1.5px);
}

/* ============================================================
   PADRONIZAÇÃO DE ANIMAÇÃO — hover lift uniforme
   ============================================================ */
.differential-item:hover {
  transform: translateX(6px) !important;
}
.segment-card:hover {
  transform: translateY(-5px) !important;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.credential-item:hover {
  transform: translateY(-3px);
}

/* ============================================================
   TOPBAR — Faixa de informações acima da navbar
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-height);
  background: #010f28;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.topbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
  letter-spacing: .01em;
}
.topbar__item:hover { color: var(--accent-light); }
.topbar__item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 1;
}
.topbar__sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { top: 0; }
  .hero { padding-top: var(--nav-height); }
  .page-hero { padding-top: calc(var(--nav-height) + 64px); }
}

/* ============================================================
   HERO — Container glass para agrupamento do conteúdo
   ============================================================ */
.hero__glass {
  background: rgba(2,30,71,.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  max-width: 660px;
}
@media (max-width: 1024px) {
  .hero__glass { padding: 32px 28px; max-width: 100%; }
}
@media (max-width: 480px) {
  .hero__glass { padding: 24px 20px; border-radius: var(--radius-lg); }
}

/* ============================================================
   CARD INTERACTIONS — Padrão differential-item para service, value e service-full
   ============================================================ */

/* service-card (O que fazemos — home) */
.service-card {
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.service-card:hover {
  border-color: rgba(4,46,104,.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* value-card (O que nos move — sobre) */
.value-card {
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.value-card:hover {
  border-color: rgba(234,111,37,.35);
  background: rgba(234,111,37,.03);
}
.value-card__icon {
  transition: transform .3s ease, background .3s ease;
}
.value-card:hover .value-card__icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(234,111,37,.18);
  color: var(--accent);
}

/* service-full-card (Nossos serviços — página soluções) */
.service-full-card {
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-full-card:hover {
  border-color: rgba(234,111,37,.3);
}
.service-full-card__header-icon {
  transition: transform .3s ease, background .3s ease;
}
.service-full-card:hover .service-full-card__header-icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(255,255,255,.25);
}
