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

:root {
  --dark-blue: #1E2D50;
  --cta-green: #DAFE08;
  --teal: #00B99B;
  --black: #222222;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
  color: var(--dark-blue);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ── CONTAINER ── */
.container-80 {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-bg-green {
  background: #DAFE08;
  border-radius: 40px;
  color: #1e2d50;
  text-align: center;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform .3s;
}
.btn-bg-green:hover {
  transform: translateY(-2px);
}
.btn-bg-green.sm {
  font-size: 14px;
  padding: 10px 24px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0;
  gap: 32px;
  transition: padding 0.3s ease;
}

.navbar.scrolled .navbar-inner { padding: 12px 0; }

/* Logo */
.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 28px; display: block; }

#logo-black { display: none; }
.navbar.scrolled #logo-white { display: none; }
.navbar.scrolled #logo-black { display: block; }

/* Nav links */
.navbar-collapse {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.mobile-logo { display: none; }

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link svg { flex-shrink: 0; }

.navbar.scrolled .nav-link { color: var(--dark-blue); }
.navbar.scrolled .nav-link:hover { background: rgba(30,45,80,0.06); }

/* Hamburger */
.btn-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.btn-hamburger .icon-menu {
  width: 28px;
  height: 28px;
  /* menu.svg has black fill — invert to white on transparent nav */
  filter: invert(1);
  transition: filter 0.3s ease;
}
.navbar.scrolled .btn-hamburger .icon-menu { filter: invert(0); }

/* ── HOME BANNER ── */
.home-banner {
  position: relative;
  height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.home-banner .container-80 {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 60px;
}

.banner-content {
  max-width: 860px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: #ffffff;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

/* Title */
.hero-title {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.line-green { color: var(--cta-green); }

/* Description */
.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 640px;
}

/* CTAs */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--cta-green); color: var(--black); }
.btn-primary:hover { background: #c9ef00; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: #0A9CD6; color: var(--white); }

/* Wave at bottom */
.bannerend {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  line-height: 0;
}
.bannerend img {
  width: 100%;
  display: block;
}

/* Scroll down button */
.btn-down {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── PILARES ── */
#pilares-overview {
  background: var(--dark-blue);
}

.pilares-inner {
  width: 100%;
  background: var(--dark-blue);
  border-radius: 0;
  padding: 60px 10%;
}

.pilares-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta-green);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

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

.pilar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s, background 0.2s;
}

.pilar-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cta-green);
}

.pilar-icon-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(218,254,8,0.1);
  margin-bottom: 24px;
}

.pilar-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta-green);
  margin-bottom: 8px;
}

.pilar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cta-green);
  margin-bottom: 12px;
}

.pilar-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .pilares-inner { width: 90%; padding: 40px 24px; }
  .pilares-cards { grid-template-columns: 1fr; }
}

/* ── CLIENTS STRIP ── */
.clients-strip {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 32px 40px;
  gap: 24px;
  overflow: hidden;
}

.clients-label {
  flex-shrink: 0;
  width: 160px;
  font-size: 13px;
  font-weight: 500;
  color: #1e2d50;
  line-height: 1.5;
}

.clients-arrow {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
  user-select: none;
}
.clients-arrow:hover { color: #1e2d50; }

.clients-track-wrapper {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.clients-track-wrapper::-webkit-scrollbar { display: none; }

.clients-track {
  display: flex;
  align-items: center;
  gap: 56px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.clients-track img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  flex-shrink: 0;
  transition: opacity 0.2s, filter 0.2s;
}
.clients-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .container-80 { width: 90%; }

  /* Hide desktop nav, show hamburger */
  .navbar-collapse {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #ffffff;
    padding: 80px 32px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 190;
  }
  .navbar-collapse.open { transform: translateY(0); }

  .mobile-logo {
    display: block;
    height: 24px;
    position: absolute;
    top: 20px;
    left: 32px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .nav-link {
    color: var(--dark-blue);
    font-size: 16px;
    padding: 12px 8px;
    width: 100%;
    border-bottom: 1px solid rgba(30,45,80,0.08);
    border-radius: 0;
  }
  .nav-link:hover { background: rgba(30,45,80,0.04); }

  .btn-hamburger { display: flex; }

  /* Banner */
  .home-banner { height: calc(100vh - 160px); }

  .home-banner .container-80 {
    padding-top: 100px;
    padding-bottom: 220px;
  }

  .banner-content h1 { font-size: clamp(32px, 8vw, 48px); }
  .banner-content p { font-size: 16px; }

  .btn-down { bottom: 100px; }
}

@media (max-width: 480px) {
  .banner-content h1 { font-size: clamp(28px, 9vw, 40px); }
  .btn-bg-green { width: 100%; justify-content: center; }

  .clients-strip { padding: 24px 16px; gap: 12px; }

  .dep-featured { padding: 28px 20px; }
  .dep-featured-text { font-size: 16px; }

  .pqe-card { padding: 24px; }

  .cta-final-title { font-size: clamp(26px, 7vw, 36px); }
  .cta-final-sub { font-size: 15px; }
  .cta-final-btn { width: 100%; text-align: center; }

  .footer-partners { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Wave Divider ──────────────────────────────────── */
.section-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-wave img {
  width: 100%;
  display: block;
}

/* ── Highlight Section ─────────────────────────────── */
.northern-highlight {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: calc(2rem + 4vw);
  align-items: center;
  padding: 100px 10%;
  background: #fff;
}

.highlight-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 320px;
  border-radius: 16px;
  background: rgba(30, 45, 80, 0.06);
  border: 2px dashed rgba(30, 45, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(30, 45, 80, 0.3);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight-image-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.northern-highlight--reverse {
  grid-template-columns: 1fr 40%;
}

.pilar-icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pilar-icon-placeholder img {
  width: 28px;
  height: 28px;
}

.highlight-content h4 {
  color: #1e2d50;
}

.highlight-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #1e2d50;
  margin-bottom: 24px;
  line-height: 1.25;
}

.highlight-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .northern-highlight {
    grid-template-columns: 1fr;
    padding: 60px 5%;
  }

  .northern-highlight--reverse {
    grid-template-columns: 1fr;
  }

  .northern-highlight--reverse .highlight-image-wrap,
  .northern-highlight--reverse .highlight-image-placeholder {
    order: -1;
  }

  .highlight-image-placeholder {
    aspect-ratio: 16 / 9;
  }

  .highlight-image-wrap {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* ── Pra Quem É ────────────────────────────────────── */
.pra-quem-e {
  background: #172444;
  padding: 100px 0;
}

.pqe-container {
  width: 80%;
  margin: 0 auto;
}

.pqe-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.pqe-label {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0A9CD6;
  margin-bottom: 20px;
}

.pqe-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.pqe-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

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

.pqe-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pqe-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.pqe-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 16px;
}

.pqe-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.pqe-nao-e {
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.02);
}

.pqe-nao-e p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
}

.pqe-nao-e strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

@media (max-width: 768px) {
  .pqe-grid {
    grid-template-columns: 1fr;
  }

  .pqe-container {
    width: 90%;
  }

  .pra-quem-e {
    padding: 72px 0;
  }
}

/* ── Clientes Marquee ──────────────────────────────── */
.clientes-marquee-section {
  background: #172444;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.clientes-marquee-label {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin: 0 0 20px;
}

.clientes-marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.clientes-marquee-wrapper:hover .clientes-marquee-track {
  animation-play-state: paused;
}

.clientes-marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* Texto dos logos */
.logo-item {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  transition: color 0.2s ease;
  cursor: default;
}

.logo-item:hover {
  color: rgba(255, 255, 255, 0.55);
}

/* Quando trocar por imagens, já preparado */
.logo-item img {
  height: 28px;
  width: auto;
  display: block;
  filter: grayscale(100%) brightness(200%) opacity(0.3);
  transition: filter 0.2s ease;
}

.logo-item:hover img {
  filter: grayscale(100%) brightness(200%) opacity(0.55);
}

/* ── Clientes Grid ─────────────────────────────────── */
.clientes-grid-section {
  background: #fff;
  padding: 80px 0;
}

.clientes-grid-container {
  width: 80%;
  margin: 0 auto;
}

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px 40px;
  align-items: center;
  justify-items: center;
}

.clientes-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.clientes-grid-item img {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.6) brightness(1.1);
  opacity: 0.65;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.clientes-grid-item img:hover {
  opacity: 1;
  filter: grayscale(0%) contrast(1) brightness(1);
}

@media (max-width: 1024px) {
  .clientes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .clientes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 24px;
  }

  .clientes-grid-container {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Depoimentos ───────────────────────────────────── */
.depoimentos-section {
  background: #1E2D50;
  padding: 100px 0;
}

.dep-container {
  width: 80%;
  margin: 0 auto;
}

.dep-header {
  margin-bottom: 56px;
}

.dep-label {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0A9CD6;
  margin-bottom: 16px;
}

.dep-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.dep-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.dep-divider {
  width: 48px;
  height: 3px;
  background: #DAFE08;
  border-radius: 2px;
}

/* Destaque */
.dep-featured {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 156, 214, 0.1) 0%, rgba(218, 254, 8, 0.05) 100%);
  border: 1px solid rgba(10, 156, 214, 0.2);
  border-radius: 20px;
  padding: 52px 56px;
  margin-bottom: 24px;
  overflow: hidden;
}

.dep-quote-mark {
  position: absolute;
  top: 16px;
  left: 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(218, 254, 8, 0.15);
  line-height: 1;
  pointer-events: none;
}

.dep-featured-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 36px;
  position: relative;
}

/* Grid */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dep-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.dep-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.dep-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.01);
}

.dep-card--placeholder:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
}

.dep-placeholder-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

.dep-stars {
  font-size: 14px;
  color: #DAFE08;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.dep-card-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Author */
.dep-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dep-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 156, 214, 0.2);
  border: 2px solid rgba(10, 156, 214, 0.3);
  color: #0A9CD6;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dep-author-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.dep-author-role {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 2px 0 0;
}

@media (max-width: 768px) {
  .dep-container { width: 90%; }
  .dep-featured { padding: 36px 28px; }
  .dep-featured-text { font-size: 17px; }
  .dep-grid { grid-template-columns: 1fr; }
  .depoimentos-section { padding: 72px 0; }
}

/* ── CTA Final ─────────────────────────────────────── */
.cta-final {
  position: relative;
  background-image: url('../images/layout/contact.png');
  background-size: cover;
  background-position: center;
}

.cta-final-overlay {
  background: linear-gradient(
    to right,
    rgba(23, 36, 68, 0.95) 0%,
    rgba(23, 36, 68, 0.80) 50%,
    rgba(23, 36, 68, 0.65) 100%
  );
  padding: 100px 0;
}

.cta-final-content {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-final-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0A9CD6;
  margin-bottom: 20px;
}

.cta-final-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 680px;
  margin-bottom: 24px;
}

.cta-final-highlight {
  color: #DAFE08;
}

.cta-final-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 44px;
}

.cta-final-btn {
  display: inline-block;
  background: #DAFE08;
  color: #222;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 8px;
  transition: background 0.22s ease, transform 0.22s ease;
}

.cta-final-btn:hover {
  background: #c9ef00;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-final-overlay {
    padding: 72px 0;
  }

  .cta-final-content {
    width: 90%;
  }
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: #1E2D50;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 64px 0 36px;
}

.footer-inner {
  width: 80%;
  margin: 0 auto;
}

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

/* Coluna marca */
.footer-logo {
  height: 26px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social-btn:hover {
  color: #0A9CD6;
  border-color: #0A9CD6;
}

/* Colunas de links */
.footer-nav-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav ul a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav ul a:hover {
  color: #0A9CD6;
}

/* Parceiros */
.footer-partners {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 40px;
}

.footer-partners-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-partner-logo {
  height: 45px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-partner-logo:hover {
  opacity: 1;
}

/* Rodapé final */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-privacy {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-privacy:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-copy {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-inner { width: 90%; }

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

  .footer-social {
    justify-content: flex-start;
  }

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