/* BRLaudos — layout fiel ao mockup */

:root {
  /* Azul primário da marca nas seções; #2d559a é o azul de detalhe sobre o primário */
  --navy: #0f2346;
  --navy-mid: #122a55;
  --navy-card: #0d1e3c;
  --navy-soft: #16335f;
  --blue-accent: #2d559a;
  --ink: #0a1832;
  --orange: #ff8c00;
  --orange-hover: #e67e00;
  --orange-deep: #f05f00;
  --white: #ffffff;
  --gray-bg: #eef1f6;
  --text-dark: #0f2346;
  --text-muted: #566380;
  --font: 'Montserrat', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1240px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.32);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 140, 0, 0.42);
}

.hero-actions .btn-primary {
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 140, 0, 0.28);
}

.hero-actions .btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 16px 34px rgba(255, 140, 0, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 140, 0, 0.7);
}

.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(255, 140, 0, 0.08);
}

.btn-section {
  margin-top: 24px;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.btn-block {
  width: 100%;
  padding: 16px;
  font-size: 11px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.tag-dark {
  color: var(--orange);
}

.tag-light {
  color: rgba(255, 255, 255, 0.92);
}

.tag-center {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Hierarquia tipográfica da marca: regular + bold + cor de destaque */
h1 strong,
h2 strong {
  font-weight: 800;
}

.hl-orange {
  color: var(--orange);
  font-weight: 800;
}

.hl-ink {
  color: var(--ink);
  font-weight: 800;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(20, 38, 74, 0.35);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 42px;
  margin-bottom: 8px;
}

.footer-logo-link {
  display: inline-block;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  padding-bottom: 5px;
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}

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

.main-nav a:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 12px 22px;
  font-size: 11px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0.35s;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer a {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero-bridge {
  position: relative;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--header-h);
  padding-bottom: 88px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 24, 0.88) 0%, rgba(5, 12, 24, 0.76) 34%, rgba(5, 12, 24, 0.34) 52%, rgba(5, 12, 24, 0.08) 64%, transparent 76%),
    linear-gradient(180deg, transparent 0%, rgba(5, 12, 24, 0.2) 100%);
  z-index: 1;
}

.hero-network {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 0 120px;
  text-align: left;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.32);
}

.hero-copy .hl-ink {
  color: var(--orange);
}

.hero-sub {
  margin-top: 24px;
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 600px;
}

.hero-benefits {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.98);
}

.benefit-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.hero-actions .btn {
  flex: 0 1 auto;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.hero-pagination {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

/* Stats — card flutuante entre hero e seção branca */
.stats-float {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 30;
}

.stats-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(20, 38, 74, 0.04),
    0 24px 56px rgba(20, 38, 74, 0.14);
  padding: 44px 32px;
  text-align: center;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-deep) 50%, var(--blue-accent) 100%);
}

.stat {
  position: relative;
  padding: 8px 28px;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 72px;
  background: #e2e6ee;
}

.stat-value {
  display: block;
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.stat-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #44537a;
  line-height: 1.55;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat:hover .stat-icon {
  transform: scale(1.1);
  background: rgba(255, 140, 0, 0.18);
}

.stat-value.counted {
  animation: statPop 0.4s ease;
}

@keyframes statPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Como funciona */
.como-funciona {
  background: var(--white);
  color: var(--text-dark);
  padding: 180px 0 110px;
  position: relative;
}

.section-head.light {
  max-width: 820px;
}

.section-head.light h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.22;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-head.light p {
  margin-top: 18px;
  font-size: 15px;
  color: #6b7589;
  max-width: 680px;
  line-height: 1.75;
}

.steps-area {
  margin-top: 40px;
  position: relative;
  padding-top: 8px;
}

.steps-connector {
  display: none;
}

.steps-cta {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #e4e9f2;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 6px 18px rgba(20, 38, 74, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 0, 0.4);
  box-shadow: 0 18px 40px rgba(20, 38, 74, 0.1);
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 22px;
}

.step-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.35);
  flex-shrink: 0;
}

.step-icon-ring {
  width: 52px;
  height: 52px;
  margin-top: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #dce1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7589;
  box-shadow: 0 2px 8px rgba(20, 38, 74, 0.06);
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.4;
  padding-right: 12px;
}

.step ul {
  width: 100%;
}

.step ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  margin-bottom: 11px;
  line-height: 1.55;
  font-weight: 500;
}

.step ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--orange);
}

/* Serviços */
.servicos {
  background: var(--navy);
  padding: 92px 0;
}

.servicos-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 48px;
  align-items: start;
}

.servicos-intro h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.24;
  margin-bottom: 16px;
}

.servicos-intro p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 28px;
}

.link-arrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.servicos-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
  padding: 12px 0;
  border-bottom: 2px solid rgba(255, 140, 0, 0.3);
  transition: border-color 0.3s ease, gap 0.3s ease;
}

.servicos-cta:hover {
  border-color: var(--orange);
  gap: 14px;
}

.servicos-cta svg {
  transition: transform 0.3s ease;
}

.servicos-cta:hover svg {
  transform: translateX(3px);
}

.servicos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--navy-soft);
  border: 1px solid rgba(45, 85, 154, 0.55);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-accent);
}

.service-card--highlight {
  border-color: rgba(255, 140, 0, 0.45);
  box-shadow: 0 12px 36px rgba(255, 140, 0, 0.1);
}

.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-card);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card-body ul {
  flex: 1;
  margin-bottom: 16px;
}

.service-card-body ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  padding: 6px 0;
  border-bottom: 1px solid rgba(45, 85, 154, 0.35);
}

.service-card-body footer {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  padding-top: 12px;
  border-top: 1px solid rgba(45, 85, 154, 0.45);
}

/* Dual blocks */
.dual-blocks {
  background: var(--white);
  padding: 92px 0;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.dual-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(20, 38, 74, 0.08);
  box-shadow: 0 10px 30px rgba(20, 38, 74, 0.06);
  color: var(--text-dark);
}

.dual-card h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.dual-card-text > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.platform-tab {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(20, 38, 74, 0.12);
  background: var(--gray-bg);
  color: var(--text-muted);
  cursor: pointer;
}

.platform-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.platform-features li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.55;
}

.platform-features strong {
  color: var(--text-dark);
}

.team-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.team-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 140, 0, 0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-points strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-points span {
  font-size: 13px;
  color: var(--text-muted);
}

.platform-screen {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(20, 38, 74, 0.08);
  box-shadow: 0 8px 28px rgba(20, 38, 74, 0.1);
  background: var(--gray-bg);
}

.platform-screen img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.screen-chrome {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  padding: 4px 6px;
}

.screen-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.screen-chrome span:nth-child(1) { background: #ff5f57; }
.screen-chrome span:nth-child(2) { background: #ffbd2e; }
.screen-chrome span:nth-child(3) { background: #28ca42; }

.screen-body {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  min-height: 160px;
}

.screen-sidebar {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.screen-main {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  font-size: 10px;
}

.screen-row i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.screen-row.done i { background: #28ca42; }
.screen-row.wait i { background: #4da8ff; }

.screen-row span {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.screen-row em {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.team-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.team-badge strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.team-badge span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Logos Carousel */
.logos-strip {
  background: var(--navy);
  padding: 44px 0;
  border-bottom: 1px solid rgba(45, 85, 154, 0.5);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.logos-carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

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

.logos-track:hover {
  animation-play-state: paused;
}

.client-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.62;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.client-logo:hover {
  opacity: 1;
}

/* Depoimentos */
.depoimentos {
  background-color: var(--orange-deep);
  background-image:
    linear-gradient(90deg, rgba(240, 95, 0, 0.97) 0%, rgba(255, 140, 0, 0.9) 48%, rgba(255, 110, 0, 0.96) 100%),
    url('../imagens/texturas/textura-depoimentos.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.depoimentos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 140, 0, 0.08), rgba(184, 61, 0, 0.18));
  pointer-events: none;
}

.depoimentos-glow {
  display: none;
}

.depoimentos-title {
  text-align: center;
  font-size: clamp(24px, 4.2vw, 38px);
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto 48px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  color: var(--white);
}

.testimonials-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.testimonials-track {
  flex: 1;
  overflow: hidden;
}

.testimonials-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  transition: transform 0.45s ease;
}

.testimonial {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  padding: 34px 30px 28px;
  position: relative;
  min-height: 220px;
  box-shadow: 0 18px 46px rgba(119, 39, 0, 0.16);
}

.t-stars {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--orange);
}

.quote-mark {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
  opacity: 0.16;
  position: absolute;
  top: 8px;
  left: 24px;
}

.testimonial p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dark);
  margin-top: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial footer strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial footer span {
  font-size: 13px;
  color: var(--text-muted);
}

.t-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.t-nav:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--orange-deep);
}

/* Blog */
.blog-preview {
  background: var(--gray-bg);
  color: var(--text-dark);
  padding: 96px 0;
}

.blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.blog-head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  max-width: 620px;
}

.blog-head p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.btn-blog {
  flex-shrink: 0;
}

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

.blog-card {
  background: var(--white);
  border: 1px solid rgba(45, 85, 154, 0.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(20, 38, 74, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20, 38, 74, 0.12);
}

.blog-card-img {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-bg);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-accent);
  background: rgba(45, 85, 154, 0.12);
  padding: 5px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.blog-card h3 a {
  transition: color 0.2s;
}

.blog-card h3 a:hover {
  color: var(--blue-accent);
}

.blog-card-body > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
  transition: gap 0.25s ease;
}

.blog-link:hover {
  gap: 12px;
}

/* CTA */
.cta-final {
  background: #07101f;
  padding: 92px 0 108px;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  pointer-events: none;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.94) 0%, rgba(7, 16, 31, 0.78) 38%, rgba(7, 16, 31, 0.22) 58%, transparent 72%),
    linear-gradient(180deg, transparent 0%, rgba(7, 16, 31, 0.22) 100%);
}

.cta-skull {
  display: none;
}

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

.cta-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.24;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.28);
}

.cta-text .hl-orange {
  color: var(--orange);
}

.cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
}

.cta-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
}

/* Assinatura de marca */
.signature-photo-bridge {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: -72px;
  margin-bottom: -36px;
  pointer-events: none;
}

.signature-photo-bridge img {
  width: min(16vw, 168px);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.22));
}

.brand-signature {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 52px 0 40px;
}

.signature-inner {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.signature-copy {
  padding: 0;
}

.signature-copy p {
  max-width: 620px;
  margin-inline: auto;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cta-form {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  color: var(--text-dark);
}

.cta-form-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.cta-form h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.cta-form .form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-form label {
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--gray-bg);
  border: 1.5px solid #dce1ea;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cta-form input::placeholder {
  color: #9ba3b5;
}

.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.12);
  background: var(--white);
}

.cta-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6478' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.cta-form select option {
  background: var(--white);
  color: var(--text-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-form .btn {
  margin-top: 8px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s, color 0.2s;
}

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

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

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

/* Responsive */
@media (max-width: 1100px) {
  .servicos-layout {
    grid-template-columns: 1fr;
  }

  .servicos-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .dual-card {
    grid-template-columns: 1fr;
  }

  .testimonials-inner {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-h: 92px;
  }

  body {
    background: var(--white);
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .main-nav,
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .logo {
    grid-column: 1;
  }

  .logo-img {
    height: 44px;
    max-width: 180px;
  }

  .mobile-drawer {
    padding-top: 124px;
  }

  .hero-bridge {
    background: var(--white);
  }

  .hero {
    min-height: auto;
    padding-top: var(--header-h);
    padding-bottom: 42px;
    align-items: flex-end;
  }

  .hero-content {
    padding: 72px 0 34px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
  }

  .hero-benefits {
    margin-top: 26px;
    gap: 12px;
  }

  .hero-benefits li {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
    min-height: 50px;
  }

  .hero-pagination {
    right: 14px;
    top: auto;
    bottom: 18px;
    transform: none;
    flex-direction: row;
  }

  .stats-float {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: auto;
    z-index: 2;
    margin: -18px 0 0;
  }

  .stats-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 34px 26px;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(20, 38, 74, 0.13);
  }

  .stat {
    padding: 24px 0;
  }

  .stat:not(:last-child)::after {
    display: block;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0;
    width: min(220px, 70%);
    height: 1px;
    transform: translateX(-50%);
  }

  .como-funciona {
    padding: 72px 0 76px;
    overflow: hidden;
  }

  .section-head.light h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.14;
  }

  .section-head.light p {
    font-size: 17px;
    line-height: 1.75;
  }

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

  .steps-connector {
    display: none;
  }

  .step {
    max-width: none;
    padding: 24px;
  }

  .step-marker {
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .step h3 {
    padding-right: 0;
  }

  .servicos-cards {
    grid-template-columns: 1fr;
  }

  .servicos,
  .dual-blocks,
  .cta-final {
    padding: 76px 0 92px;
  }

  .servicos-layout,
  .dual-grid,
  .cta-grid {
    gap: 32px;
  }

  .servicos-intro h2,
  .cta-text h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.14;
  }

  .signature-photo-bridge {
    margin-top: -56px;
    margin-bottom: -28px;
  }

  .signature-photo-bridge img {
    width: min(42vw, 148px);
  }

  .brand-signature {
    padding: 44px 0 36px;
  }

  .signature-inner {
    text-align: center;
  }

  .signature-copy {
    padding: 0;
  }

  .dual-card {
    padding: 24px;
    gap: 22px;
  }

  .logos-strip {
    padding: 34px 0;
  }

  .logos-track {
    gap: 42px;
  }

  .client-logo {
    height: 38px;
    max-width: 150px;
  }

  .depoimentos {
    padding: 76px 0;
    background-position: left center;
  }

  .depoimentos-title {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.16;
    margin-bottom: 34px;
  }

  .testimonials-wrap {
    display: block;
  }

  .testimonials-track {
    width: 100%;
    overflow: visible;
    margin: 0;
  }

  .testimonials-inner {
    width: 100% !important;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
    transform: none !important;
  }

  .testimonial {
    width: 100%;
    min-height: auto;
    padding: 34px 26px 28px;
    overflow: hidden;
  }

  .t-prev {
    display: none;
  }

  .t-next {
    display: none;
  }

  .cta-form {
    padding: 32px 24px;
  }

  .blog-preview {
    padding: 76px 0;
  }

  .blog-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 34px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

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

  .header-inner {
    gap: 16px;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 12, 24, 0.62) 0%, rgba(5, 12, 24, 0.72) 58%, rgba(5, 12, 24, 0.42) 100%),
      linear-gradient(90deg, rgba(5, 12, 24, 0.56) 0%, rgba(5, 12, 24, 0.12) 100%);
  }

  .cta-bg::after {
    background:
      linear-gradient(180deg, rgba(7, 16, 31, 0.72) 0%, rgba(7, 16, 31, 0.68) 46%, rgba(7, 16, 31, 0.42) 100%),
      linear-gradient(90deg, rgba(7, 16, 31, 0.58) 0%, rgba(7, 16, 31, 0.12) 100%);
  }

  .stats-card {
    padding: 30px 22px;
  }

  .stat-value {
    font-size: clamp(52px, 17vw, 72px);
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .steps-area {
    margin-top: 24px;
  }

  .service-card-body {
    padding: 22px;
  }

  .team-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cta-text img {
    max-width: 280px !important;
  }

  .signature-copy p {
    font-size: clamp(20px, 7vw, 32px);
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }

  .testimonial {
    padding: 32px 24px 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll-reveal animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays for grid items */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Subtle hover micro-interactions */
.step:hover .step-badge {
  transform: scale(1.08);
  transition: transform 0.3s ease;
}

.step-badge {
  transition: transform 0.3s ease;
}

.service-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.dual-card {
  transition: box-shadow 0.35s ease;
}

.dual-card:hover {
  box-shadow: 0 14px 38px rgba(20, 38, 74, 0.1);
}

.testimonial {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(119, 39, 0, 0.2);
}

/* Smooth link underline */
.link-arrow {
  position: relative;
}

.link-arrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.link-arrow:hover::after {
  width: 100%;
}

/* Stats counter animation */
.stat-value {
  transition: color 0.3s ease;
}

.stat:hover .stat-value {
  color: var(--orange-hover);
}

/* ================================================
   SCROLL PROGRESS BAR
   ================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #ff8c00, #ff5900);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

/* Pulse animation on the button to draw attention */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: waPulse 2.5s ease-out 3s 3;
}

@media (max-width: 900px) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
