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

:root {
  --navy: #071a2a;
  --navy-2: #0b2942;
  --navy-dark: #04111d;
  --blue: #0868b7;
  --teal: #10bfb3;
  --teal-light: #20d8c8;
  --paper: #f5f7f9;
  --ink: #122033;
  --white: #ffffff;
  --border: #dfe7ec;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--ink);
  font-family: var(--font-sans);
  background: #ffffff;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button, input, select, textarea {
  font: inherit;
}

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

.skip-link {
  z-index: 200;
  color: var(--navy);
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  position: fixed;
  top: -80px;
  left: 1rem;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.teal {
  color: var(--teal);
}

/* =========================================
   HEADER & NAVEGAÇÃO
   ========================================= */
.site-header {
  z-index: 100;
  color: #ffffff;
  height: 88px;
  transition: background 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
  position: fixed;
  inset: 0 0 auto;
}

.site-header.is-solid {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(7, 26, 42, 0.94);
  height: 76px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.nav-shell {
  align-items: center;
  gap: 38px;
  width: min(1240px, 100% - 48px);
  height: 100%;
  margin: auto;
  display: flex;
}

.brand-link {
  align-items: center;
  margin-right: auto;
  display: flex;
}

.brand-link img {
  width: 185px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.desktop-nav {
  align-items: center;
  gap: 28px;
  display: flex;
}

.desktop-nav a {
  color: #eaf4f8;
  font-size: 0.89rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--teal-light);
}

.desktop-nav a.active-nav,
.desktop-nav a.active,
.desktop-nav a[aria-current="page"] {
  color: var(--teal) !important;
  font-weight: 750;
  position: relative;
}

.desktop-nav a.active-nav::after,
.desktop-nav a.active::after,
.desktop-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--teal);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(16, 191, 179, 0.55);
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0.55rem;
  padding: 0.72rem 1.05rem;
  font-size: 0.86rem;
  font-weight: 750;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 191, 179, 0.4);
}

.menu-button {
  color: #ffffff;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  display: none;
  cursor: pointer;
}

.menu-button svg {
  display: block;
}

.mobile-nav {
  display: none;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  background: var(--navy);
  color: #ffffff;
  align-items: center;
  min-height: 92vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(4, 17, 29, 0.98) 0%, rgba(7, 26, 42, 0.9) 36%, rgba(7, 26, 42, 0.35) 66%, rgba(7, 26, 42, 0.04) 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 70px;
  position: relative;
}

.eyebrow {
  color: var(--blue);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow.light {
  color: var(--teal-light);
}

.hero h1 {
  letter-spacing: -0.055em;
  max-width: 790px;
  margin: 0;
  font-size: clamp(3.1rem, 5.8vw, 5.75rem);
  font-weight: 760;
  line-height: 0.98;
}

.hero h1 .hero-line {
  color: var(--teal-light);
  display: block;
}

.hero h1 .hero-line-white {
  color: #ffffff;
}

.hero-copy {
  color: #d4e1e8;
  max-width: 655px;
  margin: 1.75rem 0 0;
  font-size: 1.13rem;
  line-height: 1.75;
}

.hero-actions {
  gap: 14px;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
}

.button-link {
  border-radius: 0.55rem;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.18rem;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
  display: inline-flex;
  cursor: pointer;
  border: 1px solid transparent;
}

.button-link:hover {
  transform: translateY(-3px);
}

.button-link svg {
  transition: transform 0.25s ease;
}

.button-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--teal);
  color: var(--navy);
}

.button-primary:hover {
  background: var(--teal-light);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(16, 191, 179, 0.42);
}

.button-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.button-outline:hover {
  color: var(--navy);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.button-dark {
  background: var(--navy);
  color: #ffffff;
}

.button-dark:hover {
  background: var(--navy-2);
  box-shadow: 0 8px 22px rgba(6, 38, 58, 0.28);
}

.capability-row {
  color: #d7e5ec;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-top: 3.2rem;
  display: flex;
}

.capability-row div {
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.capability-row div:hover {
  background: rgba(16, 191, 179, 0.16);
  border-color: rgba(16, 191, 179, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28), 0 0 14px rgba(16, 191, 179, 0.25);
}

.capability-row svg {
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease, filter 0.25s ease;
}

.capability-row div:hover svg {
  color: #20d8c8;
  transform: scale(1.22) rotate(4deg);
  filter: drop-shadow(0 0 8px rgba(16, 191, 179, 0.7));
}

.capability-row div span {
  transition: color 0.25s ease;
}

.capability-row div:hover span {
  color: #ffffff;
}

.scroll-cue {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  place-items: start center;
  width: 36px;
  height: 58px;
  padding-top: 10px;
  display: grid;
  position: absolute;
  bottom: 30px;
  right: 4vw;
  z-index: 5;
}

.scroll-cue span {
  background: var(--teal);
  border-radius: 5px;
  width: 4px;
  height: 9px;
  animation: 1.8s infinite scroll;
}

@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  50% { opacity: 0.2; transform: translateY(20px); }
  100% { transform: translateY(0); opacity: 1; }
}

/* =========================================
   SEÇÃO SERVIÇOS ("O QUE FAZEMOS")
   ========================================= */
.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.is-centered,
.section-heading.text-center,
.section-heading[style*="text-align: center"],
.section-heading[style*="text-align:center"] {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  letter-spacing: -0.045em;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 740;
  line-height: 1.08;
}

.section-description {
  color: #5a6978;
  max-width: 680px;
  margin: 1.25rem 0 0;
  font-size: 1.06rem;
  line-height: 1.68;
}

.section-heading.is-centered .section-description,
.section-heading.text-center .section-description,
.section-heading.is-centered p,
.section-heading.text-center p,
.section-heading[style*="text-align: center"] .section-description,
.section-heading[style*="text-align:center"] .section-description,
.section-heading[style*="text-align: center"] p,
.section-heading[style*="text-align:center"] p {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.section-heading-light h2 {
  color: #ffffff;
}

.section-heading-light .eyebrow {
  color: var(--teal-light);
}

.services-section {
  background: #ffffff;
}

.services-grid {
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.service-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 335px;
  padding: 34px 30px 28px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  cursor: default;
}

/* Sutil barra de destaque luminosa no topo ao passar o mouse */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #078f86);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

.service-card:hover {
  z-index: 2;
  background: #ffffff;
  position: relative;
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(6, 38, 58, 0.11), 0 4px 16px rgba(16, 191, 179, 0.14);
}

.service-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-top {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.service-icon {
  color: #078e85;
  background: #e9f9f7;
  border-radius: 12px;
  place-items: center;
  width: 48px;
  height: 48px;
  display: grid;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #10bfb3, #078f86);
  color: #ffffff;
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 8px 22px rgba(16, 191, 179, 0.42);
}

.card-number {
  color: #8fa0ad;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
  transition: color 0.3s ease;
}

.service-card:hover .card-number {
  color: var(--teal);
}

.service-card h3 {
  margin: 1.3rem 0 0.55rem;
  font-size: 1.25rem;
  font-weight: 750;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.service-card:hover h3 {
  color: var(--teal);
}

.service-card p {
  color: #657482;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
}

/* Badges / Tags de Tecnologias e Especialidades Entregues */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 1.4rem;
  padding-top: 4px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 650;
  color: #0b615a;
  background: #f0f9f8;
  border: 1px solid rgba(16, 191, 179, 0.24);
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
}

.service-card:hover .card-tag {
  background: #e7f7f5;
  border-color: rgba(16, 191, 179, 0.45);
}

.card-tag:hover {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(7, 26, 42, 0.18);
}

/* Rodapé com Destaque de Impacto Real no Negócio */
.card-impact {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid #edf3f6;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: #44596b;
  line-height: 1.4;
  font-weight: 550;
}

.card-impact svg {
  color: var(--teal);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .card-impact svg {
  transform: scale(1.18);
  color: #058f84;
}

/* =========================================
   SEÇÃO DIFERENCIAL (TIMELINE)
   ========================================= */
.dark-section {
  background: var(--navy);
  color: #ffffff;
}

.timeline {
  grid-template-columns: repeat(5, 1fr);
  display: grid;
  position: relative;
}

.timeline::before {
  content: "";
  background: linear-gradient(90deg, rgba(32, 216, 200, 0.18), rgba(32, 216, 200, 0.52) 50%, rgba(32, 216, 200, 0.18));
  height: 1px;
  position: absolute;
  top: 53px;
  left: 0;
  right: 0;
}

.timeline-step {
  padding-right: 28px;
  position: relative;
}

.step-number {
  color: var(--teal);
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 800;
  display: block;
  transition: color 0.3s ease;
}

.step-dot {
  z-index: 2;
  border: 4px solid var(--navy);
  background: radial-gradient(circle at 35% 30%, #75fff1 0 18%, var(--teal) 42%, #078a83 100%);
  outline: 1px solid rgba(32, 216, 200, 0.85);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  margin-bottom: 27px;
  display: block;
  position: relative;
  box-shadow: 0 0 12px rgba(32, 216, 200, 0.42);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, outline-color 0.35s ease;
}

.step-dot::before {
  content: "";
  opacity: 0;
  border: 1px solid rgba(32, 216, 200, 0.48);
  border-radius: 50%;
  position: absolute;
  inset: -9px;
  transform: scale(0.45);
}

.timeline-step.is-visible .step-dot::before {
  animation: 3s cubic-bezier(0.2, 0.7, 0.2, 1) infinite step-node-pulse;
}

.timeline-step:nth-child(2) .step-dot::before { animation-delay: 0.35s; }
.timeline-step:nth-child(3) .step-dot::before { animation-delay: 0.7s; }
.timeline-step:nth-child(4) .step-dot::before { animation-delay: 1.05s; }
.timeline-step:nth-child(5) .step-dot::before { animation-delay: 1.4s; }

.timeline-step:hover .step-dot {
  outline-color: #79fff2;
  transform: scale(1.28);
  box-shadow: 0 0 0 5px rgba(32, 216, 200, 0.1), 0 0 24px rgba(32, 216, 200, 0.78);
}

.timeline-step:hover .step-number {
  color: #72fff0;
}

.timeline-step:hover h3 {
  color: var(--teal-light);
}

@keyframes step-node-pulse {
  0%, 55%, 100% { opacity: 0; transform: scale(0.55); }
  12% { opacity: 0.8; }
  32% { opacity: 0; transform: scale(1.65); }
}

.timeline-step h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.timeline-step p {
  color: #9fb3c1;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

/* =========================================
   SEÇÃO TECNOLOGIA SOB MEDIDA & DASHBOARD MOCKUP
   ========================================= */
.tailored {
  background: var(--paper);
}

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

.tailored .section-heading {
  margin-bottom: 30px;
}

.dashboard-wrap {
  background: linear-gradient(145deg, #ffffff, #e5edf2);
  border: 1px solid #cad8e1;
  border-radius: 22px;
  padding: 12px;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
  box-shadow: 0 35px 70px rgba(7, 26, 42, 0.17);
}

.motion-ready .dashboard-wrap.is-visible {
  animation: 5.5s ease-in-out 1s infinite dashboard-float;
}

@keyframes dashboard-float {
  0%, 100% {
    transform: perspective(1400px) rotateY(-4deg) rotateX(1deg) translateY(0);
  }
  50% {
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) translateY(-8px);
  }
}

.dashboard-browser {
  background: #f6f8fa;
  border: 1px solid #cbd6dc;
  border-radius: 14px;
  overflow: hidden;
}

.browser-bar {
  background: #ffffff;
  border-bottom: 1px solid #e4e9ed;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  display: flex;
}

.browser-bar span {
  background: #c7d0d7;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.browser-bar small {
  color: #71808c;
  margin: auto;
  font-size: 0.64rem;
  font-weight: 600;
}

.dashboard-body {
  grid-template-columns: 54px 1fr;
  min-height: 395px;
  display: grid;
}

.dashboard-body aside {
  background: var(--navy);
  color: #7792a4;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 16px 0;
  display: flex;
}

.dashboard-body aside img {
  object-fit: contain;
  margin-bottom: 8px;
}

.dashboard-body aside svg {
  color: #7792a4;
  transition: color 0.2s ease;
  cursor: pointer;
}

.dashboard-body aside svg:hover {
  color: #2dd4bf;
  transform: scale(1.22);
  filter: drop-shadow(0 0 8px rgba(16, 191, 179, 0.6));
}

.dashboard-body main {
  padding: 20px;
}

.dash-head {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.dash-head div {
  flex-direction: column;
  display: flex;
}

.dash-head small, .metric-grid small {
  color: #87939c;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-head strong {
  font-size: 0.96rem;
  font-weight: 800;
}

.dash-head > span {
  background: #ffffff;
  border: 1px solid #dde4e8;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 0.62rem;
  font-weight: 600;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.dash-head > span:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.metric-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 17px;
  display: grid;
}

.metric-grid div {
  background: #ffffff;
  border: 1px solid #e0e7eb;
  border-radius: 9px;
  flex-direction: column;
  padding: 12px;
  display: flex;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.25s ease;
  cursor: default;
}

.metric-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 10px 24px rgba(6, 38, 58, 0.09);
}

.metric-grid strong {
  margin: 3px 0;
  font-size: 0.87rem;
  font-weight: 800;
  transition: color 0.25s ease;
}

.metric-grid div:hover strong {
  color: var(--teal);
}

.metric-grid em {
  color: #069b80;
  font-size: 0.59rem;
  font-style: normal;
  font-weight: 700;
}

.chart-card {
  background: #ffffff;
  border: 1px solid #e0e7eb;
  border-radius: 9px;
  margin-top: 10px;
  padding: 13px;
  transition: border-color 0.25s ease;
}

.chart-card:hover {
  border-color: #cbd8df;
}

.chart-title {
  justify-content: space-between;
  font-size: 0.68rem;
  display: flex;
}

.chart-title strong {
  font-weight: 800;
}

.chart-title small {
  color: #8a969e;
}

.bars {
  background: repeating-linear-gradient(transparent 0 35px, #edf1f3 36px);
  border-bottom: 1px solid #edf1f3;
  align-items: flex-end;
  gap: 8%;
  height: 145px;
  padding: 18px 4% 0;
  display: flex;
}

.bars i {
  background: linear-gradient(180deg, var(--teal), #0a7290);
  border-radius: 4px 4px 0 0;
  flex: 1;
  min-width: 10px;
  display: block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, filter 0.25s ease;
  cursor: pointer;
}

.bars i:hover {
  background: linear-gradient(180deg, #2dd4bf, #0284c7);
  transform: scaleY(1.06);
  transform-origin: bottom;
  filter: drop-shadow(0 0 10px rgba(16, 191, 179, 0.7));
}

.status-row {
  color: #087b6c;
  background: #e9f8f5;
  border-radius: 8px;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 10px 12px;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: default;
}

.status-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(8, 123, 108, 0.2);
}

.status-row b {
  margin-left: auto;
  font-weight: 800;
}

/* =========================================
   SEÇÃO RESULTADOS MEDÍVEIS
   ========================================= */
.results {
  border-block: 1px solid var(--border);
  background: #ffffff;
  padding: 45px 0;
}

.results-grid {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.results-grid > div {
  border-right: 1px solid var(--border);
  grid-template-columns: 42px 1fr;
  gap: 0 13px;
  padding: 10px 26px;
  display: grid;
  align-items: center;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s ease, background-color 0.28s ease;
  border-radius: 12px;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.results-grid > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #078f86);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.results-grid > div:hover {
  background: #f4fbf9;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(6, 38, 58, 0.08);
  z-index: 2;
}

.results-grid > div:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.results-grid > div:last-child {
  border: 0;
}

.results-grid svg {
  color: var(--teal);
  grid-row: 1 / 3;
  margin-top: 5px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease, filter 0.25s ease;
}

.results-grid > div:hover svg {
  color: #078e85;
  transform: scale(1.22) rotate(4deg);
  filter: drop-shadow(0 4px 10px rgba(16, 191, 179, 0.45));
}

.results-grid strong {
  font-size: 0.84rem;
  font-weight: 800;
  transition: color 0.25s ease;
}

.results-grid > div:hover strong {
  color: #05263b;
}

.results-grid span {
  color: #778691;
  font-size: 0.74rem;
  display: block;
}

/* =========================================
   SEÇÃO CASES (HOME & INTERNA)
   ========================================= */
.cases-section {
  background: #ffffff;
}

.case-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  display: grid;
}

.case-card {
  color: #ffffff;
  background: var(--navy-2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 300px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  cursor: pointer;
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #078f86);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(5, 26, 40, 0.35), 0 0 0 1px rgba(16, 191, 179, 0.3);
  border-color: rgba(16, 191, 179, 0.3);
}

.case-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.case-card::after {
  content: "";
  background: rgba(16, 191, 179, 0.12);
  border-radius: 50%;
  width: 210px;
  height: 210px;
  position: absolute;
  bottom: -100px;
  right: -70px;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.case-card:hover::after {
  opacity: 0.28;
  transform: scale(1.25);
}

.case-2, .case-4 {
  background: #0c3854;
}

.case-card > svg {
  color: var(--teal-light);
  width: 30px;
  height: 30px;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease, filter 0.3s ease;
}

.case-card:hover > svg {
  color: #20d8c8;
  transform: scale(1.18) rotate(4deg);
  filter: drop-shadow(0 0 12px rgba(16, 191, 179, 0.55));
}

.case-card > p {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #86abae;
  margin: 2.6rem 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
}

.case-card h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  transition: color 0.28s ease;
}

.case-card:hover h3 {
  color: #2dd4bf;
}

.case-card > span {
  color: #bed0da;
  max-width: 400px;
  margin: 0.7rem 0 1.5rem;
  display: block;
  font-size: 0.94rem;
  flex-grow: 1;
}

.case-card a {
  color: var(--teal-light);
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 750;
  display: inline-flex;
  transition: color 0.28s ease, transform 0.28s ease;
}

.case-card:hover a {
  color: #2dd4bf;
  transform: translateX(4px);
  text-decoration: none;
}

.case-card a svg {
  transition: transform 0.28s ease;
}

.case-card:hover a svg {
  transform: translate(3px, -3px);
}

/* =========================================
   PÁGINA CASES DETALHADA (/cases)
   ========================================= */
.cases-hero {
  padding-bottom: 125px;
}

.cases-hero h1 span,
.case-copy h2 span {
  color: var(--teal-light);
}

.case-study {
  padding: 105px 0;
}

.case-study[id] {
  scroll-margin-top: 90px;
}

.case-study-ai {
  background: #f4f8fa;
}

.case-study-hunter {
  background: #ffffff;
}

.case-study-head {
  border-bottom: 1px solid #ccd9e0;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 22px;
  display: flex;
}

.case-study-head > div {
  align-items: center;
  gap: 16px;
  display: flex;
}

.case-index {
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 800;
}

.case-status {
  color: #08775f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #dcf8ee;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-flex;
}

.case-status i {
  background: #0cbd8a;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px rgba(12, 189, 138, 0.14);
}

.case-study-head > p {
  color: #70818d;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
}

.case-study-grid {
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 80px;
  display: grid;
}

.case-copy h2 {
  letter-spacing: -0.05em;
  margin: 0.4rem 0 1.35rem;
  font-size: clamp(2.45rem, 4.2vw, 4.25rem);
  line-height: 1.02;
  font-weight: 760;
}

.case-lead {
  color: #586b78;
  max-width: 650px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.case-story {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 38px;
  display: grid;
}

.case-status {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.case-status:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(36, 211, 102, 0.22);
}

.case-index {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.case-study-head:hover .case-index {
  transform: scale(1.1);
  color: var(--teal);
}

.case-story > div {
  border-top: 2px solid var(--teal);
  padding: 16px 12px 14px;
  border-radius: 0 0 10px 10px;
  transition: background-color 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.case-story > div:hover {
  background: rgba(16, 191, 179, 0.05);
  transform: translateY(-3px);
}

.case-story strong {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
  transition: color 0.22s ease;
}

.case-story > div:hover strong {
  color: var(--teal);
}

.case-story p {
  color: #647581;
  font-size: 0.88rem;
  line-height: 1.7;
}

.ai-conversation {
  background: #eef4f6;
  border: 1px solid #cedae0;
  border-radius: 24px;
  max-width: 520px;
  margin-left: auto;
  overflow: hidden;
  transform: rotate(1deg);
  box-shadow: 0 32px 75px rgba(6, 38, 58, 0.18);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.38s ease, border-color 0.3s ease;
}

.ai-conversation:hover {
  transform: rotate(0deg) translateY(-8px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 42px 85px rgba(6, 38, 58, 0.22), 0 0 30px rgba(16, 191, 179, 0.08);
}

.chat-top {
  color: #ffffff;
  background: #092538;
  align-items: center;
  gap: 12px;
  padding: 17px 19px;
  display: flex;
}

.chat-avatar {
  background: linear-gradient(145deg, var(--teal), #087594);
  border-radius: 50%;
  place-items: center;
  width: 42px;
  height: 42px;
  display: grid;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.ai-conversation:hover .chat-avatar {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 16px rgba(16, 191, 179, 0.4);
}

.chat-top > div {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.chat-top strong {
  font-size: 0.86rem;
  font-weight: 800;
}

.chat-top small {
  color: #a9c2cd;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  display: flex;
}

.chat-top small i {
  background: #24d366;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px #24d366;
}

.chat-body {
  flex-direction: column;
  gap: 14px;
  padding: 27px;
  display: flex;
}

.chat-question {
  color: #17352f;
  background: #d2f7ed;
  border-radius: 15px 15px 3px;
  align-self: flex-end;
  max-width: 78%;
  padding: 12px 15px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  cursor: default;
}

.chat-question:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 191, 179, 0.22);
}

.chat-answer, .chat-alert {
  background: #ffffff;
  border: 1px solid #dbe5e9;
  border-radius: 4px 15px 15px;
  gap: 11px;
  max-width: 88%;
  padding: 14px;
  display: flex;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.25s ease;
  cursor: default;
}

.chat-answer:hover, .chat-alert:hover {
  transform: translateX(6px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 6px 18px rgba(6, 38, 58, 0.08);
}

.chat-answer > span {
  color: #078a70;
  background: #dff8f1;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 23px;
  height: 23px;
  font-weight: 900;
  display: grid;
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.chat-answer:hover > span {
  transform: scale(1.15);
}

.chat-answer strong, .chat-alert strong {
  font-size: 0.75rem;
  font-weight: 800;
}

.chat-answer p, .chat-alert p {
  color: #687b86;
  margin: 3px 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
}

.chat-alert {
  background: #fff8e9;
  border-color: #f3ddb0;
}

.chat-alert svg {
  color: #e39915;
  flex: none;
  transition: transform 0.25s ease;
}

.chat-alert:hover svg {
  transform: rotate(12deg) scale(1.1);
}

.chat-suggestions {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.chat-suggestions span {
  color: #526874;
  background: #f8fbfc;
  border: 1px solid #cad9df;
  border-radius: 99px;
  padding: 6px 11px;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.chat-suggestions span:hover {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 191, 179, 0.32);
}

.case-capabilities {
  background: #d6e1e6;
  border: 1px solid #d6e1e6;
  border-radius: 16px;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 80px;
  display: grid;
}

.case-capabilities article {
  background: #ffffff;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s ease, z-index 0s;
  cursor: default;
}

.case-capabilities article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #078f86);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.case-capabilities article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(6, 38, 58, 0.12);
  z-index: 3;
}

.case-capabilities article:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.case-capabilities article > span {
  color: #078f86;
  background: #e7f8f5;
  border-radius: 10px;
  place-items: center;
  width: 44px;
  height: 44px;
  display: grid;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.case-capabilities article:hover > span {
  background: linear-gradient(135deg, #10bfb3, #078f86);
  color: #ffffff;
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 6px 18px rgba(16, 191, 179, 0.35);
}

.case-capabilities h3 {
  margin: 1.15rem 0 0.5rem;
  font-size: 0.98rem;
  font-weight: 800;
  transition: color 0.22s ease;
}

.case-capabilities article:hover h3 {
  color: var(--teal);
}

.case-capabilities p {
  color: #677985;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.case-tech {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
  display: flex;
}

.case-tech span {
  color: #526874;
  background: #f8fbfc;
  border: 1px solid #cfdce2;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 750;
  cursor: default;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.case-tech span:hover {
  background: #ffffff;
  color: var(--teal);
  border-color: rgba(16, 191, 179, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 191, 179, 0.18);
}

/* Case Hunter */
.hunter-intro {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
  display: grid;
}

.hunter-brand {
  background: linear-gradient(145deg, #f4f8fa, #e6eff2);
  border: 1px solid #d9e4e9;
  border-radius: 22px;
  place-items: center;
  min-height: 310px;
  padding: 48px;
  display: grid;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.hunter-brand:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 24px 55px rgba(6, 38, 58, 0.12);
}

.hunter-brand img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hunter-brand:hover img {
  transform: scale(1.03);
}

.case-external-link {
  color: #008f83;
  border-bottom: 1px solid;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  font-weight: 800;
  display: inline-flex;
  transition: transform 0.25s ease, color 0.25s ease;
}

.case-external-link svg {
  transition: transform 0.25s ease;
}

.case-external-link:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.case-external-link:hover svg {
  transform: translate(2px, -2px);
}

.hunter-modules {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 80px;
  display: grid;
}

.hunter-modules article {
  background: #ffffff;
  border: 1px solid #dce5e9;
  border-radius: 14px;
  min-height: 230px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  cursor: default;
}

.hunter-modules article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #078f86);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.hunter-modules article:hover {
  border-color: rgba(16, 191, 179, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(6, 38, 58, 0.12), 0 0 20px rgba(16, 191, 179, 0.06);
}

.hunter-modules article:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.hunter-modules article > div {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hunter-modules article > div > span {
  color: #078f83;
  background: #e6f8f5;
  border-radius: 11px;
  place-items: center;
  width: 48px;
  height: 48px;
  display: grid;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.hunter-modules article:hover > div > span {
  background: linear-gradient(135deg, #10bfb3, #078f86);
  color: #ffffff;
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 6px 18px rgba(16, 191, 179, 0.35);
}

.hunter-modules small {
  color: #9aacb6;
  font-weight: 800;
  font-size: 0.78rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.hunter-modules article:hover small {
  color: var(--teal);
  transform: scale(1.15);
}

.hunter-modules h3 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1.08rem;
  font-weight: 750;
  transition: color 0.22s ease;
}

.hunter-modules article:hover h3 {
  color: var(--teal);
}

.hunter-modules p {
  color: #667984;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
}

.hunter-proof {
  background: var(--navy);
  color: #ffffff;
  border-radius: 14px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  padding: 28px 32px;
  display: grid;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  cursor: default;
}

.hunter-proof:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(4, 18, 30, 0.35);
}

.hunter-proof > svg {
  width: 34px;
  height: 34px;
  color: var(--teal-light);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hunter-proof:hover > svg {
  transform: scale(1.15) rotate(5deg);
}

.hunter-proof strong {
  font-size: 0.94rem;
  font-weight: 800;
}

.hunter-proof p {
  color: #9fb5c1;
  margin: 3px 0 0;
  font-size: 0.78rem;
}

.hunter-proof .case-tech {
  justify-content: flex-end;
  max-width: 330px;
  margin: 0;
}

.hunter-proof .case-tech span {
  color: #d2e1e8;
  border-color: rgba(255, 255, 255, 0.2);
}

.hunter-proof .case-tech span:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background: rgba(255, 255, 255, 0.08);
}

/* BI Cases */
.bi-study-summary {
  background: linear-gradient(145deg, #ffffff, #e6eff2);
  border: 1px solid #d9e4e9;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 25px 65px rgba(6, 38, 58, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.bi-study-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #078f86);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.bi-study-summary:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 35px 80px rgba(6, 38, 58, 0.15), 0 0 28px rgba(16, 191, 179, 0.08);
}

.bi-study-summary:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.bi-study-icon {
  color: #078f86;
  background: #dff5ef;
  border-radius: 12px;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  display: grid;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.bi-study-summary:hover .bi-study-icon {
  background: linear-gradient(135deg, #10bfb3, #078f86);
  color: #ffffff;
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 8px 24px rgba(16, 191, 179, 0.35);
}

.bi-study-icon svg {
  width: 28px;
  height: 28px;
}

.bi-study-summary > strong {
  letter-spacing: -0.04em;
  color: var(--navy);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  display: block;
  transition: color 0.25s ease, transform 0.25s ease;
}

.bi-study-summary:hover > strong {
  color: var(--teal);
  transform: scale(1.03);
}

.bi-study-summary > p:not(.eyebrow) {
  color: #586b78;
  margin: 10px 0 28px;
  font-size: 1rem;
}

.bi-study-topics {
  border-top: 1px solid #cedce3;
  gap: 15px;
  padding-top: 20px;
  display: grid;
}

.bi-study-topics > div {
  color: #294b5f;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  padding: 3px 0;
  border-radius: 6px;
  transition: transform 0.22s ease, color 0.22s ease;
  cursor: default;
}

.bi-study-topics > div:hover {
  transform: translateX(6px);
  color: var(--navy);
}

.bi-study-topics svg {
  color: #078f86;
  flex: none;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.bi-study-topics > div:hover svg {
  transform: scale(1.22);
  filter: drop-shadow(0 0 6px rgba(16, 191, 179, 0.6));
}

.bi-study-summary > small {
  color: #647581;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.8rem;
  display: flex;
}

.bi-study-summary > small svg {
  flex: none;
}

.cases-final {
  color: #ffffff;
  background: linear-gradient(120deg, #071a2a, #0a3a55);
  padding: 105px 0;
}

.cases-final h2 {
  letter-spacing: -0.05em;
  margin: 0.5rem 0 2rem;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.03;
}

.cases-final .button-link {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease;
}

.cases-final .button-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 191, 179, 0.38);
}

.cases-final .button-link svg {
  transition: transform 0.25s ease;
}

.cases-final .button-link:hover svg {
  transform: translateX(4px);
}

/* =========================================
   SEÇÃO SOBRE A SENVAR
   ========================================= */
.about-section {
  background: var(--navy);
  color: #ffffff;
}

.about-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 100px;
  display: grid;
}

.about-grid .section-heading {
  margin-bottom: 25px;
}

.about-grid > div > p {
  color: #afc2cd;
  max-width: 660px;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.about-grid .button-link {
  margin-top: 1rem;
}

.about-pillars {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-pillars div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  gap: 20px;
  padding: 18px 16px;
  display: flex;
  border-radius: 10px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.about-pillars div:hover {
  background: rgba(16, 191, 179, 0.12);
  transform: translateX(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.about-pillars span {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(16, 191, 179, 0.15);
  border: 1px solid rgba(16, 191, 179, 0.3);
  letter-spacing: 0.08em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.about-pillars div:hover span {
  background: linear-gradient(135deg, #10bfb3, #078f86);
  color: #ffffff;
  border-color: #10bfb3;
  transform: scale(1.12);
  box-shadow: 0 0 16px rgba(16, 191, 179, 0.55);
}

.about-pillars strong {
  font-size: 1.16rem;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.25s ease, transform 0.25s ease;
}

.about-pillars div:hover strong {
  color: #2dd4bf;
  transform: translateX(4px);
}

/* =========================================
   FINAL CTA ("ATÉ ONDE SUA EMPRESA PODE CHEGAR?")
   ========================================= */
.final-cta {
  color: #ffffff;
  align-items: center;
  min-height: 460px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.final-overlay {
  background: linear-gradient(90deg, rgba(4, 18, 30, 0.96), rgba(7, 26, 42, 0.74) 52%, rgba(7, 26, 42, 0.28));
  position: absolute;
  inset: 0;
  z-index: 1;
}

.final-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.final-content h2 {
  letter-spacing: -0.05em;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 760;
}

.final-content > p:not(.eyebrow) {
  color: #d2e0e7;
  margin: 1.1rem 0 1.6rem;
  font-size: 1.05rem;
}

/* =========================================
   PÁGINAS INTERNAS (/solucoes, /servicos, etc.)
   ========================================= */
.inner-hero {
  background: linear-gradient(125deg, var(--navy), #0a3957);
  color: #ffffff;
  padding: 180px 0 105px;
}

.inner-hero.compact {
  padding-bottom: 75px;
}

.inner-hero h1 {
  letter-spacing: -0.05em;
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  font-weight: 760;
}

.inner-hero h1 span {
  color: var(--teal);
}

.inner-hero > div > p:last-child {
  color: #b9ccd7;
  max-width: 720px;
  margin: 1.5rem 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.inner-content {
  min-height: 420px;
  padding: 85px 0;
}

.inner-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 850px;
  margin-bottom: 36px;
  display: grid;
}

.inner-list div {
  border: 1px solid var(--border);
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  padding: 18px;
  font-weight: 700;
  display: flex;
}

.inner-list svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* =========================================
   PÁGINA DE CONTATO (/contato)
   ========================================= */
.contact-section {
  padding: 85px 0;
}

.contact-grid {
  grid-template-columns: 0.72fr 1.28fr;
  gap: 75px;
  display: grid;
}

.contact-grid h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 800;
}

.contact-grid > div > p {
  color: #667681;
  margin-top: 1rem;
}

.text-link {
  color: var(--blue);
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-weight: 800;
  display: inline-flex;
}

.text-link:hover {
  color: var(--teal);
}

.contact-form {
  border: 1px solid var(--border);
  background: var(--paper);
  border-radius: 16px;
  padding: 32px;
}

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

.field {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
}

.field input, .field select, .field textarea {
  width: 100%;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #ccd8df;
  border-radius: 8px;
  outline: 0;
  padding: 0.78rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(16, 191, 179, 0.16);
}

.contact-form button {
  background: var(--navy);
  color: #ffffff;
  cursor: pointer;
  border: 0;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  font-size: 0.92rem;
  display: inline-flex;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.contact-form button:hover {
  background: var(--navy-2);
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-status {
  margin-top: 15px;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.success {
  color: #087b6c;
}

.form-status.error {
  color: #a53c36;
}

.spin {
  animation: 1s linear infinite spin;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================================
   PÁGINAS LEGAIS
   ========================================= */
.legal-content {
  max-width: 850px;
  padding-block: 70px;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-size: 1.4rem;
  font-weight: 800;
}

.legal-content p {
  color: #536675;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.back-link {
  color: var(--blue);
  align-items: center;
  gap: 6px;
  margin-bottom: 2rem;
  font-weight: 750;
  display: inline-flex;
}

.back-link:hover {
  color: var(--teal);
}

/* =========================================
   RODAPÉ (FOOTER)
   ========================================= */
.footer {
  color: #a9bdc9;
  background: #04131f;
  padding: 0 0 28px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 15% 18%, rgba(16, 191, 179, 0.08), transparent 32%),
              radial-gradient(circle at 85% 55%, rgba(8, 104, 183, 0.09), transparent 28%);
  position: absolute;
  inset: 0;
}

.footer > .container {
  position: relative;
}

.footer-cta {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--teal);
  background: linear-gradient(115deg, rgba(13, 48, 72, 0.96), rgba(7, 31, 49, 0.96));
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-bottom: 74px;
  padding: 48px 54px;
  display: flex;
  position: relative;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.footer-cta::after {
  content: "";
  background: var(--blue);
  width: 120px;
  height: 3px;
  position: absolute;
  top: 0;
  right: 14%;
}

.footer-cta > div {
  max-width: 720px;
}

.footer-cta span {
  color: var(--teal-light);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-cta h2 {
  color: #ffffff;
  letter-spacing: -0.035em;
  margin: 0.65rem 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 760;
}

.footer-cta p {
  color: #a9c1cf;
  margin: 0;
}

.footer-cta .button-link {
  flex: none;
}

.footer-cta .button-primary {
  color: #031722;
  background: var(--teal-light);
}

.footer-cta .button-primary:hover {
  color: #031722;
  background: #ffffff;
}

.footer-grid {
  grid-template-columns: 1.7fr 0.8fr 0.8fr 1.25fr;
  gap: 60px;
  position: relative;
  padding-top: 74px;
}

.footer-brand img {
  width: 220px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.footer-brand > p {
  color: #8fa6b4;
  max-width: 380px;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-location {
  color: #c5d5de;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  display: flex;
}

.footer-location svg, .footer-contact-link svg {
  color: var(--teal);
  flex: none;
}

.footer h3 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
  margin: 5px 0 1.35rem;
  font-size: 0.7rem;
  font-weight: 800;
}

.footer-column > a {
  margin: 0.62rem 0;
  font-size: 0.86rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: block;
}

.footer-column > a:hover {
  color: var(--teal-light);
  transform: translateX(3px);
}

.footer-contact-link {
  color: #d5e1e7;
  align-items: center;
  gap: 0.65rem;
  margin: 0.72rem 0;
  font-size: 0.84rem;
  transition: color 0.2s ease;
  display: flex;
}

.footer-contact-link:hover {
  color: var(--teal-light);
}

.footer-contact > p {
  color: #8199a7;
  max-width: 300px;
  margin: 1.25rem 0;
  font-size: 0.8rem;
  line-height: 1.65;
}

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

.footer-social a {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  place-items: center;
  width: 38px;
  height: 38px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  display: grid;
  border-radius: 6px;
}

.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 55px;
  padding-top: 25px;
  font-size: 0.75rem;
  display: flex;
  position: relative;
}

.footer-bottom p {
  margin: 0;
}

.footer-signature {
  color: #66808f;
}

.footer-bottom div {
  gap: 25px;
  display: flex;
}

.footer-bottom a {
  transition: color 0.2s ease;
}

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

/* =========================================
   WHATSAPP FLOAT EXPANSÍVEL
   ========================================= */
.whatsapp-float {
  z-index: 90;
  color: #ffffff;
  white-space: nowrap;
  background: #25d366;
  border-radius: 999px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  width: 48px;
  height: 48px;
  padding: 0 13px;
  transition: width 0.44s cubic-bezier(0.22, 0.65, 0.28, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  position: fixed;
  bottom: 22px;
  right: 22px;
  overflow: hidden;
  box-shadow: 0 7px 22px rgba(10, 91, 50, 0.22);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #25cf63;
  width: 178px;
  transform: none;
  box-shadow: 0 9px 26px rgba(10, 91, 50, 0.28);
  outline: none;
}

.whatsapp-float:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 0 0 6px rgba(37, 211, 102, 0.42), 0 9px 26px rgba(10, 91, 50, 0.28);
}

.whatsapp-logo {
  fill: currentColor;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.whatsapp-float > span {
  opacity: 0;
  max-width: 0;
  font-size: 0.78rem;
  font-weight: 800;
  transition: max-width 0.44s cubic-bezier(0.22, 0.65, 0.28, 1), opacity 0.26s 70ms ease, transform 0.38s ease;
  transform: translateX(8px);
}

.whatsapp-float:hover > span,
.whatsapp-float:focus-visible > span {
  opacity: 1;
  max-width: 112px;
  transform: translateX(0);
}

/* =========================================
   ANIMAÇÕES DE ENTRADA (HERO & REVEAL ON SCROLL)
   ========================================= */
.hero .eyebrow {
  animation: 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) 0.18s both hero-fade-up;
}

.hero h1 .hero-line {
  clip-path: inset(0 0 100%);
  animation: 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both hero-line-in;
}

.hero h1 .hero-line:nth-child(2) {
  animation-delay: 0.47s;
}

.hero-copy {
  animation: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.68s both hero-fade-up;
}

.hero-actions {
  animation: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.82s both hero-fade-up;
}

.capability-row > div {
  animation: 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) both hero-fade-up;
}

.capability-row > div:nth-child(1) { animation-delay: 1s; }
.capability-row > div:nth-child(2) { animation-delay: 1.08s; }
.capability-row > div:nth-child(3) { animation-delay: 1.16s; }
.capability-row > div:nth-child(4) { animation-delay: 1.24s; }
.capability-row > div:nth-child(5) { animation-delay: 1.32s; }

.brand-link {
  animation: 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) 80ms both hero-fade-down;
}

.desktop-nav, .header-cta {
  animation: 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) 0.16s both hero-fade-down;
}

@keyframes hero-line-in {
  0% { clip-path: inset(0 0 100%); transform: translateY(44px); }
  100% { clip-path: inset(0); transform: translateY(0); }
}

@keyframes hero-fade-up {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade-down {
  0% { opacity: 0; transform: translateY(-18px); }
  100% { opacity: 1; transform: translateY(0); }
}

.motion-ready [data-reveal] {
  opacity: 0;
  filter: blur(5px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), translate 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.8s ease;
  translate: 0 34px;
}

.motion-ready [data-reveal="left"] {
  translate: -46px 0;
}

.motion-ready [data-reveal="right"] {
  translate: 46px 0;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0px);
  translate: 0 0;
}

.services-grid [data-reveal]:nth-child(2),
.timeline [data-reveal]:nth-child(2),
.results-grid [data-reveal]:nth-child(2),
.case-grid [data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.services-grid [data-reveal]:nth-child(3),
.timeline [data-reveal]:nth-child(3),
.results-grid [data-reveal]:nth-child(3),
.case-grid [data-reveal]:nth-child(3) {
  transition-delay: 0.18s;
}

.services-grid [data-reveal]:nth-child(4),
.timeline [data-reveal]:nth-child(4),
.results-grid [data-reveal]:nth-child(4),
.case-grid [data-reveal]:nth-child(4) {
  transition-delay: 0.27s;
}

.services-grid [data-reveal]:nth-child(5),
.timeline [data-reveal]:nth-child(5) {
  transition-delay: 0.36s;
}

.services-grid [data-reveal]:nth-child(6) {
  transition-delay: 0.45s;
}

/* =========================================
   RESPONSIVIDADE (TABLET & MOBILE)
   ========================================= */
@media (max-width: 1000px) {
  .desktop-nav, .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .mobile-nav {
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    flex-direction: column;
    padding: 15px;
    transition: all 0.2s ease;
    display: flex;
    position: absolute;
    inset: 76px 20px auto;
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  }

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

  .mobile-nav a {
    padding: 10px 12px;
    font-weight: 700;
    color: #ffffff;
  }

  .mobile-nav a:hover {
    color: var(--teal-light);
  }

  .mobile-nav a.active-nav,
  .mobile-nav a.active,
  .mobile-nav a[aria-current="page"] {
    color: var(--teal) !important;
    font-weight: 750;
    border-left: 3px solid var(--teal);
    padding-left: 16px;
    background: rgba(16, 191, 179, 0.08);
  }

  .mobile-cta {
    background: var(--teal);
    color: var(--navy) !important;
    border-radius: 7px;
    margin-top: 8px;
    text-align: center;
  }

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

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

  .dashboard-wrap {
    max-width: 760px;
    transform: none;
    margin-inline: auto;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .results-grid > div {
    border: 0;
  }

  .about-grid {
    gap: 50px;
  }

  .footer-cta {
    padding: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px 35px;
  }

  .footer-contact {
    grid-column: 2 / -1 !important;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-signature {
    order: 3;
    width: 100%;
  }

  .case-study-grid, .hunter-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ai-conversation {
    margin: 0 auto;
  }

  .case-capabilities, .hunter-modules {
    grid-template-columns: 1fr 1fr;
  }

  .hunter-brand {
    min-height: 230px;
  }

  .hunter-proof {
    grid-template-columns: auto 1fr;
  }

  .hunter-proof .case-tech {
    grid-column: 1 / -1;
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 700px) {
  .container, .nav-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header, .site-header.is-solid {
    height: 72px;
  }

  .brand-link img {
    width: 155px;
  }

  .mobile-nav {
    top: 70px;
  }

  .hero {
    align-items: flex-end;
    min-height: 850px;
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero-overlay {
    background: linear-gradient(rgba(7, 26, 42, 0.25), rgba(7, 26, 42, 0.72) 35%, rgba(4, 17, 29, 0.98) 72%);
  }

  .hero-content {
    padding: 130px 0 65px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .capability-row {
    gap: 0.8rem 1.2rem;
    margin-top: 2rem;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

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

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .tailored-grid {
    gap: 40px;
  }

  .dashboard-wrap {
    margin-inline: -9px;
    padding: 6px;
  }

  .dashboard-body {
    grid-template-columns: 42px 1fr;
    min-height: 350px;
  }

  .dashboard-body aside {
    gap: 22px;
  }

  .dashboard-body main {
    padding: 10px;
  }

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

  .metric-grid > div:last-child,
  .chart-title small {
    display: none;
  }

  .bars {
    height: 120px;
  }

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

  .results-grid > div {
    padding: 8px 0;
  }

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

  .case-card {
    min-height: 280px;
  }

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

  .final-cta {
    min-height: 430px;
  }

  .footer {
    padding-top: 0;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 58px;
    padding: 32px 26px;
  }

  .footer-cta .button-link {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 14px;
    right: 14px;
  }

  .inner-hero {
    padding: 145px 0 75px;
  }

  .inner-hero h1 {
    font-size: 2.75rem;
  }

  .inner-content {
    padding-top: 65px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-form {
    padding: 22px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .cases-hero {
    padding-bottom: 85px;
  }

  .case-study {
    padding: 74px 0;
  }

  .case-study-head {
    margin-bottom: 42px;
  }

  .case-study-head > p {
    display: none;
  }

  .case-story, .case-capabilities, .hunter-modules {
    grid-template-columns: 1fr;
  }

  .case-copy h2 {
    font-size: 2.45rem;
  }

  .ai-conversation {
    transform: none;
  }

  .chat-body {
    padding: 20px;
  }

  .case-capabilities {
    margin-top: 55px;
  }

  .hunter-intro {
    gap: 35px;
  }

  .hunter-brand {
    min-height: 180px;
    padding: 28px;
  }

  .hunter-modules {
    margin-top: 55px;
  }

  .hunter-proof {
    align-items: flex-start;
    padding: 24px;
  }

  .cases-final {
    padding: 78px 0;
  }

  .cases-final h2 {
    font-size: 2.5rem;
  }

  .motion-ready [data-reveal="left"],
  .motion-ready [data-reveal="right"] {
    translate: 0 28px;
  }

  .motion-ready .dashboard-wrap.is-visible {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .motion-ready [data-reveal] {
    opacity: 1 !important;
    filter: none !important;
    translate: 0 !important;
  }
  .motion-ready .dashboard-wrap.is-visible {
    animation: none !important;
  }
}

/* =========================================
   PÁGINAS INTERNAS & CASES (DESKTOP & BASE)
   ========================================= */
.cases-hero {
  padding-bottom: 125px;
}
.cases-hero h1 span,
.case-copy h2 span {
  color: var(--teal-light);
}
.case-study {
  padding: 105px 0;
}
.case-study-ai {
  background: #f4f8fa;
}
.case-study-hunter {
  background: #fff;
}
.case-study-head {
  border-bottom: 1px solid #ccd9e0;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 22px;
  display: flex;
}
.case-study-head > div {
  align-items: center;
  gap: 16px;
  display: flex;
}
.case-index {
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 800;
}
.case-status {
  color: #08775f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #dcf8ee;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-flex;
}
.case-status i {
  background: #0cbd8a;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px rgba(12, 189, 138, 0.14);
}
.case-study-head > p {
  color: #70818d;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
}
.case-study-grid {
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 80px;
  display: grid;
}
.case-copy h2 {
  letter-spacing: -0.05em;
  margin: 0.4rem 0 1.35rem;
  font-size: clamp(2.45rem, 4.2vw, 4.25rem);
  line-height: 1.02;
  font-weight: 740;
}
.case-lead {
  color: #586b78;
  max-width: 650px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.case-story {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 38px;
  display: grid;
}
.case-story > div {
  border-top: 2px solid var(--teal);
  padding-top: 18px;
}
.case-story strong {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  display: block;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.case-story p {
  color: #647581;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}
.ai-conversation {
  background: #eef4f6;
  border: 1px solid #cedae0;
  border-radius: 24px;
  max-width: 520px;
  margin-left: auto;
  overflow: hidden;
  transform: rotate(1deg);
  box-shadow: 0 32px 75px rgba(6, 38, 58, 0.18);
}
.chat-top {
  color: #fff;
  background: #092538;
  align-items: center;
  gap: 12px;
  padding: 17px 19px;
  display: flex;
}
.chat-avatar {
  background: linear-gradient(145deg, var(--teal), #087594);
  border-radius: 50%;
  place-items: center;
  width: 42px;
  height: 42px;
  display: grid;
  color: #fff;
}
.chat-top > div {
  flex-direction: column;
  flex: 1;
  display: flex;
}
.chat-top strong {
  font-size: 0.86rem;
}
.chat-top small {
  color: #a9c2cd;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  display: flex;
}
.chat-top small i {
  background: #24d366;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}
.chat-body {
  flex-direction: column;
  gap: 14px;
  padding: 27px;
  display: flex;
}
.chat-question {
  color: #17352f;
  background: #d2f7ed;
  border-radius: 15px 15px 3px;
  align-self: flex-end;
  max-width: 78%;
  padding: 12px 15px;
  font-size: 0.84rem;
}
.chat-answer,
.chat-alert {
  background: #fff;
  border: 1px solid #dbe5e9;
  border-radius: 4px 15px 15px;
  gap: 11px;
  max-width: 88%;
  padding: 14px;
  display: flex;
}
.chat-answer > span {
  color: #078a70;
  background: #dff8f1;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 23px;
  height: 23px;
  font-weight: 900;
  display: grid;
}
.chat-answer strong,
.chat-alert strong {
  font-size: 0.75rem;
  color: var(--navy);
}
.chat-answer p,
.chat-alert p {
  color: #687b86;
  margin: 3px 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
}
.chat-alert {
  background: #fff8e9;
  border-color: #f3ddb0;
}
.chat-alert svg {
  color: #e39915;
  flex: none;
}
.chat-suggestions {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}
.chat-suggestions span {
  color: #526874;
  background: #f8fbfc;
  border: 1px solid #cad9df;
  border-radius: 99px;
  padding: 6px 9px;
  font-size: 0.62rem;
}
.case-capabilities {
  background: #d6e1e6;
  border: 1px solid #d6e1e6;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 80px;
  display: grid;
}
.case-capabilities article {
  background: #fff;
  padding: 28px;
}
.case-capabilities article > span {
  color: #078f86;
  background: #e7f8f5;
  border-radius: 10px;
  place-items: center;
  width: 42px;
  height: 42px;
  display: grid;
}
.case-capabilities h3 {
  margin: 1.15rem 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.case-capabilities p {
  color: #677985;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.65;
}
.case-tech {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
  display: flex;
}
.case-tech span {
  color: #526874;
  border: 1px solid #cfdce2;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 0.68rem;
  font-weight: 750;
}
.hunter-intro {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
  display: grid;
}
.hunter-brand {
  background: linear-gradient(145deg, #f4f8fa, #e6eff2);
  border: 1px solid #d9e4e9;
  border-radius: 22px;
  place-items: center;
  min-height: 310px;
  padding: 48px;
  display: grid;
}
.hunter-brand img {
  width: 100%;
  max-width: 320px;
  height: auto;
}
.case-external-link {
  color: #008f83;
  border-bottom: 1px solid;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  font-weight: 800;
  display: inline-flex;
}
.case-external-link:hover {
  color: var(--teal);
}
.hunter-modules {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 80px;
  display: grid;
}
.hunter-modules article {
  background: #fff;
  border: 1px solid #dce5e9;
  border-radius: 14px;
  min-height: 230px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hunter-modules article:hover {
  border-color: #87d9d0;
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(6, 38, 58, 0.09);
}
.hunter-modules article > div {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.hunter-modules article > div > span {
  color: #078f83;
  background: #e6f8f5;
  border-radius: 11px;
  place-items: center;
  width: 46px;
  height: 46px;
  display: grid;
}
.hunter-modules small {
  color: #9aacb6;
  font-weight: 800;
}
.hunter-modules h3 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--navy);
}
.hunter-modules p {
  color: #667984;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
}
.hunter-proof {
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  padding: 28px 32px;
  display: grid;
}
.hunter-proof > svg {
  width: 34px;
  height: 34px;
  color: var(--teal-light);
}
.hunter-proof strong {
  font-size: 0.94rem;
}
.hunter-proof p {
  color: #9fb5c1;
  margin: 3px 0 0;
  font-size: 0.78rem;
}
.hunter-proof .case-tech {
  justify-content: flex-end;
  max-width: 330px;
  margin: 0;
}
.hunter-proof .case-tech span {
  color: #d2e1e8;
  border-color: rgba(255, 255, 255, 0.2);
}
.bi-study-summary {
  background: linear-gradient(145deg, #fff, #e6eff2);
  border: 1px solid #d9e4e9;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 25px 65px rgba(6, 38, 58, 0.08);
}
.bi-study-icon {
  color: #078f86;
  background: #dff5ef;
  border-radius: 12px;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  display: grid;
}
.bi-study-icon svg {
  width: 28px;
  height: 28px;
}
.bi-study-summary > strong {
  letter-spacing: -0.04em;
  color: var(--navy);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  display: block;
}
.bi-study-summary > p:not(.eyebrow) {
  color: #586b78;
  margin: 10px 0 28px;
  font-size: 1rem;
}
.bi-study-topics {
  border-top: 1px solid #cedce3;
  gap: 15px;
  padding-top: 20px;
  display: grid;
}
.bi-study-topics > div {
  color: #294b5f;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  display: flex;
}
.bi-study-topics svg {
  color: #078f86;
  flex: none;
}
.bi-study-summary > small {
  color: #647581;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.8rem;
  display: flex;
}
.bi-study-summary > small svg {
  flex: none;
}
.cases-final {
  color: #fff;
  background: linear-gradient(120deg, #071a2a, #0a3a55);
  padding: 105px 0;
}
.cases-final h2 {
  letter-spacing: -0.05em;
  margin: 0.5rem 0 2rem;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.03;
}
.cases-final .button-primary:hover {
  background: #fff;
}
.case-study[id] {
  scroll-margin-top: 90px;
}

/* =========================================
   SEÇÃO DIFERENCIAL (TIMELINE EVOLUTIVA)
   ========================================= */
.dark-section {
  background: var(--navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 191, 179, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 50px;
}

/* Linha base que conecta todos os pontos */
.timeline::before {
  content: "";
  position: absolute;
  top: 72px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(32, 216, 200, 0.15) 0%, 
    rgba(32, 216, 200, 0.45) 50%, 
    rgba(32, 216, 200, 0.9) 100%
  );
  z-index: 1;
}

/* Feixe de energia laser que percorre a linha continuamente */
.timeline-beam {
  position: absolute;
  top: 71px;
  left: 0;
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(32, 216, 200, 0.25) 20%, 
    #ffffff 75%, 
    #75fff1 100%
  );
  border-radius: 4px;
  box-shadow: 0 0 14px #20d8c8, 0 0 28px rgba(32, 216, 200, 0.85);
  z-index: 2;
  pointer-events: none;
  animation: beamFlow 4.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes beamFlow {
  0% {
    left: 0;
    opacity: 0;
    width: 60px;
  }
  12% {
    opacity: 1;
    width: 130px;
  }
  88% {
    opacity: 1;
    width: 150px;
  }
  100% {
    left: calc(100% - 90px);
    opacity: 0;
    width: 60px;
  }
}

/* Card individual de cada etapa */
.timeline-step {
  padding: 18px 16px 26px;
  border-radius: 16px;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
  border: 1px solid transparent;
}

.timeline-step:hover,
.timeline-step.is-active {
  background: linear-gradient(180deg, rgba(16, 191, 179, 0.08) 0%, rgba(4, 17, 29, 0.65) 100%);
  border: 1px solid rgba(32, 216, 200, 0.32);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25), 0 0 25px rgba(32, 216, 200, 0.15);
  transform: translateY(-6px);
}

/* Número da etapa (01, 02...) */
.step-number {
  color: var(--teal);
  margin-bottom: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: inline-block;
  transition: all 0.3s ease;
}

.timeline-step:hover .step-number,
.timeline-step.is-active .step-number {
  color: #72fff0;
  transform: translateY(-2px);
  text-shadow: 0 0 12px rgba(114, 255, 240, 0.8);
}

/* Wrapper que alinha a bolinha rigorosamente no centro da linha */
.step-dot-wrap {
  height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

/* Estilo base da bolinha (Node) */
.step-dot {
  z-index: 4;
  border: 4px solid var(--navy);
  background: radial-gradient(circle at 35% 30%, #b8fff8 0%, #20d8c8 45%, #078a83 100%);
  outline: 1.5px solid rgba(32, 216, 200, 0.85);
  border-radius: 50%;
  display: block;
  position: relative;
  box-shadow: 0 0 14px rgba(32, 216, 200, 0.55);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, outline-color 0.4s ease;
}

/* ========================================================
   TAMANHOS CRESCENTES CONFORME PASSA A TIMELINE
   01 Entendemos -> 02 Planejamos -> 03 Desenvolvemos -> 04 Integramos -> 05 Evoluímos!
   ======================================================== */
.step-dot-1 {
  width: 16px;
  height: 16px;
}

.step-dot-2 {
  width: 20px;
  height: 20px;
}

.step-dot-3 {
  width: 24px;
  height: 24px;
}

.step-dot-4 {
  width: 28px;
  height: 28px;
}

.step-dot-5 {
  width: 35px;
  height: 35px;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #75fff1 25%, #20d8c8 55%, #066d67 100%);
  outline: 2px solid #75fff1;
  box-shadow: 0 0 25px rgba(32, 216, 200, 0.95), 0 0 50px rgba(32, 216, 200, 0.45);
}

/* Anéis concêntricos de pulso / onda energética */
.step-dot::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1.5px solid rgba(32, 216, 200, 0.6);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

.step-dot::after {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px dashed rgba(32, 216, 200, 0.4);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.4);
  pointer-events: none;
}

/* Animações sequenciais contínuas (Onda de pulso viva) */
.timeline-step .step-dot::before {
  animation: 3.6s cubic-bezier(0.2, 0.7, 0.2, 1) infinite step-pulse-outer;
}

.timeline-step .step-dot::after {
  animation: 3.6s cubic-bezier(0.2, 0.7, 0.2, 1) infinite step-pulse-dashed;
}

.timeline-step[data-step="1"] .step-dot::before, .timeline-step[data-step="1"] .step-dot::after { animation-delay: 0s; }
.timeline-step[data-step="2"] .step-dot::before, .timeline-step[data-step="2"] .step-dot::after { animation-delay: 0.72s; }
.timeline-step[data-step="3"] .step-dot::before, .timeline-step[data-step="3"] .step-dot::after { animation-delay: 1.44s; }
.timeline-step[data-step="4"] .step-dot::before, .timeline-step[data-step="4"] .step-dot::after { animation-delay: 2.16s; }
.timeline-step[data-step="5"] .step-dot::before, .timeline-step[data-step="5"] .step-dot::after { animation-delay: 2.88s; }

@keyframes step-pulse-outer {
  0%, 55%, 100% { opacity: 0; transform: scale(0.5); }
  18% { opacity: 0.9; }
  38% { opacity: 0; transform: scale(1.8); }
}

@keyframes step-pulse-dashed {
  0%, 55%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  22% { opacity: 0.75; }
  44% { opacity: 0; transform: scale(1.95) rotate(90deg); }
}

/* Interação no Hover & Ativo */
.timeline-step:hover .step-dot,
.timeline-step.is-active .step-dot {
  outline-color: #ffffff;
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(32, 216, 200, 0.2), 0 0 32px rgba(32, 216, 200, 0.95);
}

.timeline-step:hover .step-dot-5,
.timeline-step.is-active .step-dot-5 {
  transform: scale(1.28);
  box-shadow: 0 0 0 8px rgba(32, 216, 200, 0.3), 0 0 55px rgba(32, 216, 200, 1);
}

/* Título de cada etapa */
.timeline-step h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
  transition: all 0.3s ease;
  color: #ffffff;
}

.timeline-step:hover h3,
.timeline-step.is-active h3 {
  color: var(--teal-light);
  transform: translateX(2px);
  text-shadow: 0 0 14px rgba(32, 216, 200, 0.45);
}

.timeline-step p {
  color: #9fb3c1;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  transition: color 0.3s ease;
}

.timeline-step:hover p,
.timeline-step.is-active p {
  color: #e2eff6;
}

/* =========================================
   RODAPÉ (FOOTER)
   ========================================= */
.footer {
  color: #a9bdc9;
  background: #04131f;
  padding: 80px 0 35px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 15% 18%, rgba(16, 191, 179, 0.08), transparent 32%),
              radial-gradient(circle at 85% 55%, rgba(8, 104, 183, 0.09), transparent 28%);
  position: absolute;
  inset: 0;
}

.footer > .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  grid-template-columns: 1.7fr 0.9fr 0.9fr 1.3fr;
  gap: 60px;
  position: relative;
  display: grid;
}

.footer-brand img {
  width: 220px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.footer-brand > p {
  color: #8fa6b4;
  max-width: 380px;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-location {
  color: #c5d5de;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  display: flex;
}

.footer-location svg, .footer-contact-link svg {
  color: var(--teal);
  flex: none;
}

.footer h3 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
  margin: 5px 0 1.35rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-column > a {
  margin: 0.62rem 0;
  font-size: 0.86rem;
  color: #a9bdc9;
  transition: color 0.2s ease, transform 0.2s ease;
  display: block;
}

.footer-column > a:hover {
  color: var(--teal-light);
  transform: translateX(3px);
}

.footer-contact-link {
  color: #d5e1e7;
  align-items: center;
  gap: 0.65rem;
  margin: 0.72rem 0;
  font-size: 0.84rem;
  transition: color 0.2s ease;
  display: flex;
}

.footer-contact-link:hover {
  color: var(--teal-light);
}

.footer-contact > p {
  color: #8199a7;
  max-width: 300px;
  margin: 1.25rem 0;
  font-size: 0.8rem;
  line-height: 1.65;
}

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

.footer-social a {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  place-items: center;
  width: 38px;
  height: 38px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  display: grid;
  border-radius: 6px;
}

.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 55px;
  padding-top: 25px;
  font-size: 0.75rem;
  display: flex;
  position: relative;
}

.footer-bottom p {
  margin: 0;
}

.footer-signature {
  color: #66808f;
}

.footer-bottom div {
  gap: 25px;
  display: flex;
}

.footer-bottom a {
  color: #a9bdc9;
  transition: color 0.2s ease;
}

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

/* =========================================
   RESPONSIVIDADE (TABLET & MOBILE)
   ========================================= */
@media (max-width: 1000px) {
  .desktop-nav, .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .mobile-nav {
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    flex-direction: column;
    padding: 15px;
    transition: all 0.2s ease;
    display: flex;
    position: absolute;
    inset: 76px 20px auto;
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  }

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

  .mobile-nav a {
    padding: 10px 12px;
    font-weight: 700;
    color: #ffffff;
  }

  .mobile-nav a:hover {
    color: var(--teal-light);
  }

  .mobile-nav a.active-nav,
  .mobile-nav a.active,
  .mobile-nav a[aria-current="page"] {
    color: var(--teal) !important;
    font-weight: 750;
    border-left: 3px solid var(--teal);
    padding-left: 16px;
    background: rgba(16, 191, 179, 0.08);
  }

  .mobile-cta {
    background: var(--teal);
    color: var(--navy) !important;
    border-radius: 7px;
    margin-top: 8px;
    text-align: center;
  }

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

  /* =========================================
     TIMELINE RESPONSIVA (MOBILE & TABLET)
     ========================================= */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
  }

  .timeline::before,
  .timeline-beam {
    display: none !important;
  }

  .timeline-step {
    display: block;
    width: 100%;
    border-radius: 16px;
    padding: 22px 20px 20px;
    position: relative;
    background: linear-gradient(180deg, rgba(16, 191, 179, 0.05) 0%, rgba(6, 26, 42, 0.75) 100%);
    border: 1px solid rgba(32, 216, 200, 0.22);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
    overflow: hidden;
  }

  .timeline-step:hover,
  .timeline-step.is-active {
    background: linear-gradient(180deg, rgba(16, 191, 179, 0.14) 0%, rgba(4, 18, 30, 0.95) 100%);
    border-color: rgba(32, 216, 200, 0.55);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 20px rgba(32, 216, 200, 0.2);
    transform: translateY(-2px);
  }

  .timeline-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10bfb3, #20d8c8, #078a83);
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .timeline-step:hover::before,
  .timeline-step.is-active::before {
    opacity: 1;
  }

  .timeline-step .step-number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 12px;
    transition: all 0.3s ease;
  }

  .timeline-step:hover .step-number,
  .timeline-step.is-active .step-number {
    color: #72fff0;
    text-shadow: 0 0 10px rgba(114, 255, 240, 0.7);
  }

  .timeline-step .step-dot-wrap {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    z-index: 5;
  }

  .timeline-step .step-dot {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
  }

  .timeline-step:hover .step-dot,
  .timeline-step.is-active .step-dot {
    transform: scale(1.2);
  }

  .timeline-step h3 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 8px 0;
    padding-right: 48px;
    transition: color 0.3s ease;
  }

  .timeline-step:hover h3,
  .timeline-step.is-active h3 {
    color: var(--teal-light);
  }

  .timeline-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #9fb3c1;
    margin: 0;
    padding-right: 8px;
    transition: color 0.3s ease;
  }

  .timeline-step:hover p,
  .timeline-step.is-active p {
    color: #d8e6ef;
  }

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

  .dashboard-wrap {
    max-width: 760px;
    transform: none;
    margin-inline: auto;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .results-grid > div {
    border: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px 35px;
  }

  .footer-contact {
    grid-column: 2 / -1 !important;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-signature {
    order: 3;
    width: 100%;
  }

  .case-study-grid, .hunter-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ai-conversation {
    margin: 0 auto;
  }

  .case-capabilities, .hunter-modules {
    grid-template-columns: 1fr 1fr;
  }

  .hunter-brand {
    min-height: 230px;
  }

  .hunter-proof {
    grid-template-columns: auto 1fr;
  }

  .hunter-proof .case-tech {
    grid-column: 1 / -1;
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 700px) {
  .container, .nav-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header, .site-header.is-solid {
    height: 72px;
  }

  .brand-link img {
    width: 155px;
  }

  .mobile-nav {
    top: 70px;
  }

  .hero {
    align-items: flex-end;
    min-height: 850px;
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero-overlay {
    background: linear-gradient(rgba(7, 26, 42, 0.25), rgba(7, 26, 42, 0.72) 35%, rgba(4, 17, 29, 0.98) 72%);
  }

  .hero-content {
    padding: 130px 0 65px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9.8vw, 3.8rem);
  }

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

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

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

  /* =========================================
     RODAPÉ MOBILE MODERNO & REFINADO
     ========================================= */
  .footer {
    padding-top: 50px;
    padding-bottom: 28px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
    padding-top: 0;
  }

  /* Bloco da Marca SENVAR */
  .footer-brand {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 26px;
    margin-bottom: 2px;
  }

  .footer-brand img {
    width: 175px;
    height: auto;
    max-height: 52px;
  }

  .footer-brand > p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #8da4b2;
    margin: 1rem 0 1.2rem;
    max-width: 100%;
  }

  .footer-location {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 7px 15px;
    background: rgba(16, 191, 179, 0.08);
    border: 1px solid rgba(16, 191, 179, 0.24);
    border-radius: 999px;
    font-size: 0.82rem;
    color: #cde4ec;
  }

  .footer-location svg {
    color: var(--teal);
    width: 15px;
    height: 15px;
  }

  /* Colunas de Navegação em 2 Colunas Lado a Lado */
  .footer-column {
    padding-top: 4px;
  }

  .footer-column h3 {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 1.15rem;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .footer-column h3::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--teal);
  }

  .footer-column > a {
    display: block;
    padding: 7px 0;
    font-size: 0.88rem;
    color: #a2b8c5;
    transition: all 0.2s ease;
    margin: 0;
  }

  .footer-column > a:hover {
    color: #20d8c8;
    transform: translateX(4px);
  }

  /* Card de Contato Executivo */
  .footer-contact {
    grid-column: 1 / -1 !important;
    background: linear-gradient(180deg, rgba(16, 191, 179, 0.06) 0%, rgba(6, 26, 42, 0.75) 100%);
    border: 1px solid rgba(32, 216, 200, 0.2);
    border-radius: 16px;
    padding: 22px 20px;
    margin-top: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .footer-contact h3 {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: #ffffff;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .footer-contact h3::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--teal);
  }

  .footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin: 0.65rem 0;
    color: #e2edf3;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .footer-contact-link:hover {
    background: rgba(16, 191, 179, 0.12);
    border-color: rgba(32, 216, 200, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .footer-contact-link svg {
    color: var(--teal);
    flex-shrink: 0;
    width: 17px;
    height: 17px;
  }

  .footer-contact > p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: #8fa6b4;
    margin: 1rem 0 1.2rem;
    max-width: 100%;
  }

  .footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: auto;
    height: 42px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(32, 216, 200, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .footer-social a::after {
    content: "@senvartecnologia";
    color: #cbe6f1;
    font-size: 0.82rem;
    font-weight: 500;
  }

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

  .footer-social a:hover::after {
    color: var(--navy);
  }

  /* Rodapé Inferior */
  .footer-bottom {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    color: #7993a2;
    margin: 0;
  }

  .footer-signature {
    color: #5b7483;
    font-size: 0.76rem;
  }

  .footer-bottom div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-bottom div a {
    font-size: 0.8rem;
    color: #8da4b2;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.2s ease;
  }

  .footer-bottom div a:hover {
    color: var(--teal-light);
    border-color: rgba(32, 216, 200, 0.3);
    background: rgba(16, 191, 179, 0.08);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .case-capabilities, .hunter-modules {
    grid-template-columns: 1fr;
  }

  .hunter-proof {
    grid-template-columns: 1fr;
  }

  .hunter-proof > svg {
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   PÁGINA SOBRE A SENVAR - DESIGN SYSTEM OFICIAL
   ========================================================================== */
.about-manifesto-section {
  background: #ffffff;
  padding: 95px 0 110px;
}

.about-manifesto-copy .section-heading {
  margin-bottom: 24px;
}

.about-manifesto-copy h2 {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
}

.about-manifesto-copy p {
  color: #5d7182;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-highlights-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.about-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  background: #f4f8fa;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: default;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-highlight-item:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 8px 20px rgba(16, 191, 179, 0.12);
}

.about-highlight-item svg {
  color: var(--teal);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.about-highlight-item:hover svg {
  transform: scale(1.16) rotate(6deg);
  color: #078f86;
}

/* Card dos 4 Pilares */
.about-pillars-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px 34px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-pillars-box:hover {
  border-color: rgba(16, 191, 179, 0.35);
  box-shadow: 0 16px 40px rgba(5, 35, 56, 0.06);
}

.pillars-card-head {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.pillars-card-head h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
}

.pillars-card-head p {
  color: #657482;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

.about-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: default;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
}

.pillar-row:hover {
  background: #ffffff;
  transform: translateX(8px);
  box-shadow: 0 8px 22px rgba(5, 35, 56, 0.05);
}

.pillar-idx {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  background: #e6f7f5;
  border: 1px solid rgba(16, 191, 179, 0.25);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pillar-row:hover .pillar-idx {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(16, 191, 179, 0.4);
}

.pillar-row strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--navy);
  margin-bottom: 4px;
  transition: color 0.25s ease;
}

.pillar-row:hover strong {
  color: var(--teal);
}

.pillar-row p {
  color: #657482;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Seção Diretrizes Estratégicas */
.about-principles-section {
  background: #f4f8fa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}

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

.principle-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.principle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #078f86);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.principle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 24px 48px -12px rgba(5, 35, 56, 0.12), 0 0 25px rgba(16, 191, 179, 0.08);
}

.principle-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.principle-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #e9f9f7;
  color: #078e85;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover .principle-icon {
  background: linear-gradient(135deg, #10bfb3, #078f86);
  color: #ffffff;
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 8px 22px rgba(16, 191, 179, 0.35);
}

.principle-card h3 {
  font-size: 1.28rem;
  font-weight: 750;
  color: var(--navy);
  margin: 0 0 12px;
  transition: color 0.25s ease;
}

.principle-card:hover h3 {
  color: var(--teal);
}

.principle-card p {
  color: #657482;
  font-size: 0.94rem;
  line-height: 1.68;
  margin: 0;
}

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

.principles-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #445668;
  line-height: 1.5;
  padding: 3px 0;
  border-radius: 6px;
  transition: transform 0.22s ease, color 0.22s ease;
}

.principles-list li:hover {
  transform: translateX(5px);
  color: var(--navy);
}

.principles-list svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.principles-list li:hover svg {
  transform: scale(1.22);
  filter: drop-shadow(0 0 6px rgba(16, 191, 179, 0.6));
}

/* Seção Metodologia */
.about-method-section {
  background: #ffffff;
  padding: 100px 0;
}

.method-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.method-step-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.method-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10bfb3, #0868b7);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.method-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 191, 179, 0.5);
  box-shadow: 0 22px 45px -10px rgba(5, 35, 56, 0.12), 0 0 22px rgba(16, 191, 179, 0.08);
}

.method-step-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.step-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 850;
  color: var(--teal);
  background: #e9f9f7;
  border: 1px solid rgba(16, 191, 179, 0.25);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.method-step-card:hover .step-badge {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(16, 191, 179, 0.35);
}

.method-step-card h3 {
  font-size: 1.22rem;
  font-weight: 750;
  color: var(--navy);
  margin: 0 0 10px;
  transition: color 0.25s ease;
}

.method-step-card:hover h3 {
  color: var(--teal);
}

.method-step-card p {
  color: #657482;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.cta-button-group .button-link {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, background 0.25s ease, border-color 0.25s ease;
}

.cta-button-group .button-link:hover {
  transform: translateY(-3px);
}

.cta-button-group .button-link svg {
  transition: transform 0.25s ease;
}

.cta-button-group .button-link:hover svg {
  transform: translateX(4px);
}

.cta-button-group .button-primary:hover {
  box-shadow: 0 12px 28px rgba(16, 191, 179, 0.38);
}

.cta-button-group .button-outline:hover,
.cta-button-group .button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* Responsividade */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

@media (max-width: 640px) {
  .method-steps-grid {
    grid-template-columns: 1fr;
  }

  .about-pillars-box {
    padding: 26px 20px;
  }

  .cta-button-group {
    flex-direction: column;
  }
}

/* =========================================
   PÁGINA SOLUÇÕES (/solucoes)
   ========================================= */

/* 1. Manifesto: "Construímos qualquer solução" */
.solutions-custom-manifesto {
  background: #ffffff;
  padding: 100px 0 80px;
  position: relative;
}

.custom-manifesto-card {
  background: linear-gradient(135deg, #06263a 0%, #0a3a55 100%);
  border: 1px solid rgba(16, 191, 179, 0.25);
  border-radius: 24px;
  padding: 55px 50px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(6, 38, 58, 0.18);
  margin-bottom: 70px;
}

.custom-manifesto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #0868b7);
}

.manifesto-header {
  max-width: 820px;
  margin-bottom: 45px;
}

.manifesto-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(16, 191, 179, 0.12);
  border: 1px solid rgba(16, 191, 179, 0.3);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.manifesto-header h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 18px;
  color: #ffffff;
}

.manifesto-header h2 span {
  color: var(--teal-light);
}

.manifesto-header p {
  color: #c0d5e1;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.custom-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.advantage-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.advantage-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(16, 191, 179, 0.5);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.advantage-num {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  display: block;
  margin-bottom: 12px;
  transition: transform 0.25s ease;
}

.advantage-item:hover .advantage-num {
  transform: scale(1.1);
}

.advantage-item h3 {
  font-size: 1.05rem;
  font-weight: 750;
  color: #ffffff;
  margin: 0 0 10px;
  transition: color 0.22s ease;
}

.advantage-item:hover h3 {
  color: var(--teal-light);
}

.advantage-item p {
  color: #9cb8c7;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   SEÇÃO DE CONSTRUÇÃO DE SITES (PEQUENOS E GRANDES NEGÓCIOS)
   ========================================= */
.solutions-websites-section {
  background: #ffffff;
  padding: 100px 0 90px;
  position: relative;
}

.websites-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.website-tier-card {
  background: #fbfdfe;
  border: 1px solid #dbe6ec;
  border-radius: 22px;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.website-tier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #0868b7);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.website-tier-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 191, 179, 0.5);
  box-shadow: 0 24px 50px -10px rgba(6, 38, 58, 0.12), 0 0 26px rgba(16, 191, 179, 0.1);
  background: #ffffff;
}

.website-tier-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.tier-badge-pme {
  background: #e6f7f5;
  color: #08847b;
  border: 1px solid #b7eae4;
}

.tier-badge-enterprise {
  background: #071a2a;
  color: #20d8c8;
  border: 1px solid #0d385a;
}

.tier-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eaf8f6;
  color: #078e85;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.website-tier-card:hover .tier-icon {
  background: linear-gradient(135deg, #10bfb3, #078f86);
  color: #ffffff;
  transform: scale(1.1) rotate(4deg);
}

.website-tier-card h3 {
  font-size: 1.38rem;
  font-weight: 780;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 14px;
  transition: color 0.22s ease;
}

.website-tier-card:hover h3 {
  color: var(--teal);
}

.tier-intro {
  color: #617382;
  font-size: 0.95rem;
  line-height: 1.68;
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5edf2;
}

.tier-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tier-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tier-features-list li svg {
  color: var(--teal);
  background: #e6f7f5;
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.website-tier-card:hover .tier-features-list li svg {
  transform: scale(1.15);
  background: var(--teal);
  color: #ffffff;
}

.tier-features-list li div {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #435b6b;
}

.tier-features-list li div strong {
  color: var(--navy);
  display: inline;
  font-weight: 750;
}

.tier-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed #d5e3ec;
}

.tier-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #557284;
  background: #f1f5f8;
  padding: 6px 12px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .websites-dual-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* 2. Catálogo de Soluções com Capacidades Comprovadas */
.solutions-catalog-section {
  background: #f4f8fa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 105px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.solution-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  cursor: default;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #0868b7);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 24px 50px -10px rgba(6, 38, 58, 0.12), 0 0 22px rgba(16, 191, 179, 0.08);
}

.solution-card.solution-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f4fafb 100%);
  border: 1px solid rgba(16, 191, 179, 0.35);
  padding: 40px 38px;
}

.solution-card.solution-card-featured .featured-badge-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #078e85;
  background: rgba(16, 191, 179, 0.12);
  border: 1px solid rgba(16, 191, 179, 0.25);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.solution-card.solution-card-featured .solution-featured-main h3 {
  font-size: 1.48rem;
  margin: 0 0 14px;
}

.solution-card.solution-card-featured .solution-featured-main p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
}

.solution-card.solution-card-featured .solution-featured-side {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  border-left: 1px solid #dce8ef;
  padding-left: 36px;
}

@media (max-width: 900px) {
  .solution-card.solution-card-featured {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
  }

  .solution-card.solution-card-featured .solution-featured-side {
    border-left: none;
    border-top: 1px solid #dce8ef;
    padding-left: 0;
    padding-top: 24px;
  }
}

.solution-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.solution-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #eaf8f6;
  color: #078e85;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover .solution-card-icon {
  background: linear-gradient(135deg, #10bfb3, #078f86);
  color: #ffffff;
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 8px 24px rgba(16, 191, 179, 0.35);
}

.solution-card h3 {
  font-size: 1.3rem;
  font-weight: 780;
  color: var(--navy);
  margin: 0 0 12px;
  transition: color 0.22s ease;
}

.solution-card:hover h3 {
  color: var(--teal);
}

.solution-card p {
  color: #617382;
  font-size: 0.94rem;
  line-height: 1.68;
  margin: 0 0 24px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-bottom: 20px;
}

.solution-tags span {
  font-size: 0.72rem;
  font-weight: 750;
  color: #4b6270;
  background: #f4f8fa;
  border: 1px solid #d4e2e8;
  padding: 5px 11px;
  border-radius: 6px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.solution-tags span:hover {
  background: #ffffff;
  color: var(--teal);
  border-color: rgba(16, 191, 179, 0.6);
  transform: translateY(-2px);
}

.solution-impact {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 6px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}

.solution-impact svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.25s ease;
}

.solution-card:hover .solution-impact svg {
  transform: scale(1.2) rotate(6deg);
}

/* 3. Seção Processo: Como tiramos a sua ideia do papel */
.solutions-workflow-section {
  background: #ffffff;
  padding: 105px 0;
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.workflow-step-card {
  background: #fbfdfe;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  cursor: default;
}

.workflow-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10bfb3, #0868b7);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.workflow-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 22px 45px -10px rgba(6, 38, 58, 0.12), 0 0 20px rgba(16, 191, 179, 0.06);
}

.workflow-step-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.workflow-step-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 850;
  color: var(--teal);
  background: #eaf8f6;
  border: 1px solid rgba(16, 191, 179, 0.25);
  padding: 4px 11px;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.workflow-step-card:hover .workflow-step-badge {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(16, 191, 179, 0.35);
}

.workflow-step-card h3 {
  font-size: 1.25rem;
  font-weight: 780;
  color: var(--navy);
  margin: 0 0 10px;
  transition: color 0.22s ease;
}

.workflow-step-card:hover h3 {
  color: var(--teal);
}

.workflow-step-card p {
  color: #657482;
  font-size: 0.92rem;
  line-height: 1.62;
  margin: 0;
}

/* Responsividade da Página Soluções */
@media (max-width: 1040px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .custom-manifesto-card {
    padding: 38px 26px;
  }

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

  .custom-advantages-grid {
    grid-template-columns: 1fr;
  }

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

/* =========================================
   PÁGINA BLOG / ARTIGOS SENVAR
   ========================================= */
.blog-content-section {
  background: #f4f8fa;
  padding: 85px 0 105px;
}

/* Card Destaque */
.blog-featured-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.blog-featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #0868b7);
}

.blog-featured-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 24px 50px -10px rgba(6, 38, 58, 0.12), 0 0 26px rgba(16, 191, 179, 0.08);
}

.blog-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #08847b;
  background: #e6f7f5;
  border: 1px solid #b7eae4;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.blog-featured-card h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 16px;
  transition: color 0.22s ease;
}

.blog-featured-card h2 a,
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-featured-card:hover h2 {
  color: var(--teal);
}

.blog-featured-card p {
  color: #617382;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: #7b8e9d;
  font-weight: 600;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-featured-side {
  background: #fbfdfe;
  border: 1px solid #e1ecf2;
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-side-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 16px;
}

.featured-side-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-side-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #4b6272;
  line-height: 1.5;
}

.featured-side-highlights li svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.blog-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--navy);
  transition: all 0.2s ease;
  margin-top: auto;
}

.blog-btn-link svg {
  transition: transform 0.2s ease;
}

.blog-featured-card:hover .blog-btn-link,
.blog-card:hover .blog-btn-link {
  color: var(--teal);
}

.blog-featured-card:hover .blog-btn-link svg,
.blog-card:hover .blog-btn-link svg {
  transform: translateX(4px);
}

/* Filtros de Categorias */
.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.blog-filter-btn {
  background: #ffffff;
  border: 1px solid #dce8ef;
  color: #4a6070;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.blog-filter-btn:hover {
  background: #eef8f8;
  border-color: rgba(16, 191, 179, 0.45);
  color: var(--navy);
}

.blog-filter-btn.is-active {
  background: var(--navy);
  color: var(--teal-light);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(7, 26, 42, 0.15);
}

/* Grid de Artigos */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  cursor: default;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10bfb3, #20d8c8, #0868b7);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 22px 45px -10px rgba(6, 38, 58, 0.11), 0 0 22px rgba(16, 191, 179, 0.08);
}

.blog-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.blog-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.blog-card-category {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #08847b;
  background: #e6f7f5;
  border: 1px solid #b7eae4;
  padding: 4px 10px;
  border-radius: 6px;
}

.blog-card-readtime {
  font-size: 0.76rem;
  color: #889ba8;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.22rem;
  font-weight: 780;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 12px;
  transition: color 0.22s ease;
}

.blog-card:hover h3 {
  color: var(--teal);
}

.blog-card p {
  color: #617382;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #edf3f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-date {
  font-size: 0.78rem;
  color: #889ba8;
  font-weight: 600;
}

/* Newsletter Box */
.blog-newsletter-card {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, #0b2942 100%);
  border-radius: 22px;
  padding: 50px 48px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(16, 191, 179, 0.28);
  box-shadow: 0 24px 60px rgba(4, 17, 29, 0.22);
}

.blog-newsletter-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 10px;
}

.blog-newsletter-card p {
  color: #b9ccd7;
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

.blog-newsletter-form {
  display: flex;
  gap: 12px;
}

.blog-newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 13px 18px;
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.blog-newsletter-form input[type="email"]:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.14);
}

.blog-newsletter-form input[type="email"]::placeholder {
  color: #8da4b3;
}

.blog-newsletter-form button {
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 13px 24px;
  font-weight: 750;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.blog-newsletter-form button:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 191, 179, 0.35);
}

@media (max-width: 1024px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

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

  .blog-newsletter-card {
    grid-template-columns: 1fr;
    padding: 38px 30px;
  }
}

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

  .blog-newsletter-form {
    flex-direction: column;
  }

  .blog-newsletter-form button {
    width: 100%;
  }
}

/* =========================================
   PÁGINAS INDIVIDUAIS DE ARTIGOS (LEITURA CORPORATIVA)
   ========================================= */
.article-header-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #0a3350 100%);
  color: #ffffff;
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}

.article-header-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(16, 191, 179, 0.12), transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(8, 104, 183, 0.14), transparent 40%);
  pointer-events: none;
}

.article-header-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: #8da4b3;
  margin-bottom: 24px;
}

.article-breadcrumb a {
  color: #8da4b3;
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
  color: var(--teal);
}

.article-breadcrumb span.sep {
  color: rgba(255, 255, 255, 0.3);
}

.article-breadcrumb span.current {
  color: #d1e2ec;
  font-weight: 600;
}

.article-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 191, 179, 0.14);
  color: var(--teal-light);
  border: 1px solid rgba(16, 191, 179, 0.32);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.article-header-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
}

.article-header-lead {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  color: #c5d8e4;
  line-height: 1.68;
  margin-bottom: 30px;
  max-width: 820px;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.article-author-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(16, 191, 179, 0.45);
  flex-shrink: 0;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-author-avatar:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(16, 191, 179, 0.65);
}

.article-author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.article-author-details {
  display: flex;
  flex-direction: column;
}

.article-author-name {
  font-weight: 700;
  font-size: 0.94rem;
  color: #ffffff;
}

.article-author-role {
  font-size: 0.82rem;
  color: #9ab0bf;
}

.article-reading-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.86rem;
  color: #a8beca;
}

.article-reading-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Corpo do Artigo e Layout de Leitura */
.article-main-section {
  background: #ffffff;
  padding: 70px 0 90px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 64px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
}

.article-content {
  color: #243545;
  font-size: 1.08rem;
  line-height: 1.82;
  max-width: 760px;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2 {
  color: var(--navy);
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 48px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eef3f6;
  position: relative;
}

.article-content h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--teal);
}

.article-content h3 {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 750;
  line-height: 1.35;
  margin: 32px 0 16px;
}

.article-content ul, 
.article-content ol {
  margin: 0 0 28px 0;
  padding-left: 0;
  list-style: none;
}

.article-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.article-content ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(16, 191, 179, 0.5);
}

.article-content ol {
  counter-reset: custom-counter;
}

.article-content ol li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
}

.article-content ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #eef6f9;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 191, 179, 0.25);
}

/* Figuras e Imagens Editoriais dos Artigos */
.article-figure {
  margin: 38px 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0f1c29;
  border: 1px solid #e1ecf2;
  box-shadow: 0 16px 36px rgba(15, 28, 41, 0.12), 0 0 0 1px rgba(16, 191, 179, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(15, 28, 41, 0.16), 0 0 0 1px rgba(16, 191, 179, 0.35);
}

.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.article-figure figcaption {
  padding: 12px 18px;
  background: #fbfdfe;
  border-top: 1px solid #edf3f6;
  font-size: 0.84rem;
  color: #617382;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.45;
}

.article-figure figcaption svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* ==========================================================================
   Mockups Interativos Nativos para Artigos do Blog (Padrão SENVAR)
   ========================================================================== */
.article-mockup-wrap {
  margin: 40px 0;
}

.mockup-browser {
  background: #f8fafc;
  border: 1px solid #d4dfe6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 28, 41, 0.08), 0 0 0 1px rgba(16, 191, 179, 0.15);
  font-family: inherit;
}

.mockup-browser-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2eaf0;
  height: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-browser-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mockup-browser-dots span:nth-child(1) { background: #f87171; }
.mockup-browser-dots span:nth-child(2) { background: #fbbf24; }
.mockup-browser-dots span:nth-child(3) { background: #34d399; }

.mockup-browser-url {
  background: #f1f5f9;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-family: monospace;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mockup-browser-url svg {
  color: #10bfb3;
}

.mockup-browser-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 750;
  color: #08847b;
  background: #e6f7f5;
  border: 1px solid #bcece7;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Painel de BI Embedado com RBAC */
.mockup-bi-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 420px;
  background: #ffffff;
}

.mockup-bi-sidebar {
  background: #0f2231;
  color: #94a3b8;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #1a3347;
}

.mockup-bi-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  padding-bottom: 14px;
  border-bottom: 1px solid #1b354a;
}

.mockup-bi-brand img {
  border-radius: 50%;
}

.mockup-bi-menu {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-bi-menu small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  font-weight: 800;
  margin-bottom: 6px;
  display: block;
}

.mockup-bi-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #cbd5e1;
  background: transparent;
  transition: all 0.2s ease;
  position: relative;
}

.mockup-bi-item.is-active {
  background: rgba(16, 191, 179, 0.16);
  color: #2dd4bf;
  border-left: 3px solid #10bfb3;
}

.mockup-bi-item.is-locked {
  opacity: 0.65;
  color: #64748b;
}

.mockup-bi-item span:first-of-type {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bi-badge {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
}

.bi-badge-ok {
  background: rgba(52, 211, 153, 0.18);
  color: #34d399;
}

.bi-badge-lock {
  background: rgba(248, 113, 113, 0.18);
  color: #f87171;
}

.mockup-bi-user {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #1b354a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10bfb3, #0284c7);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mockup-user-info strong {
  color: #ffffff;
  font-size: 0.72rem;
}

.mockup-user-info small {
  color: #64748b;
  font-size: 0.6rem;
}

/* Área Principal do BI Embedado */
.mockup-bi-main {
  padding: 18px 20px;
  background: #fcfdfe;
}

.mockup-bi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.mockup-breadcrumb {
  font-size: 0.64rem;
  color: #64748b;
  margin-bottom: 4px;
}

.mockup-breadcrumb .current {
  color: #0f172a;
  font-weight: 700;
}

.mockup-bi-header h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f2231;
  margin: 0;
}

.mockup-period-pill {
  font-size: 0.65rem;
  font-weight: 700;
  color: #334155;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 4px 8px;
  border-radius: 6px;
}

.mockup-bi-rbac-alert {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.68rem;
  color: #1e40af;
  line-height: 1.35;
}

.mockup-bi-rbac-alert svg {
  color: #2563eb;
  flex-shrink: 0;
}

.mockup-bi-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mockup-kpi-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.mockup-kpi-card small {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 3px;
}

.mockup-kpi-card strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.mockup-kpi-card .trend-up {
  color: #16a34a;
  font-size: 0.62rem;
  font-weight: 700;
}

.mockup-kpi-card .kpi-sub {
  color: #64748b;
  font-size: 0.62rem;
}

/* Caixa de Gráfico de Pareto */
.mockup-pareto-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.mockup-pareto-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.mockup-pareto-head strong {
  font-weight: 750;
}

.pareto-legend {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #64748b;
  font-size: 0.6rem;
}

.legend-line {
  width: 16px;
  height: 2px;
  background: #f59e0b;
  display: inline-block;
}

.mockup-pareto-bars {
  position: relative;
  height: 125px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-end;
  gap: 7%;
  padding: 10px 4% 0;
  background: repeating-linear-gradient(transparent 0 24px, #f8fafc 25px);
}

.p-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.p-bar {
  width: 100%;
  background: linear-gradient(180deg, #10bfb3, #0284c7);
  border-radius: 3px 3px 0 0;
  display: block;
}

.p-bar-col small {
  font-size: 0.55rem;
  color: #64748b;
  margin-top: 4px;
}

.pareto-threshold-line {
  position: absolute;
  top: 28%;
  left: 0;
  right: 0;
  border-top: 2px dashed #f59e0b;
  display: flex;
  justify-content: flex-end;
}

.pareto-threshold-line span {
  background: #fef3c7;
  color: #b45309;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
  margin-top: -8px;
}

.mockup-bi-footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.article-mockup-caption {
  font-size: 0.84rem;
  color: #617382;
  margin: 12px 0 0;
  line-height: 1.5;
  padding: 0 4px;
}

.article-mockup-caption strong {
  color: var(--navy);
}

/* ==========================================================================
   Mockup de Site Institucional de Alta Performance (Sites para Pequenos e Grandes)
   ========================================================================== */
.mockup-web-body {
  background: #ffffff;
  padding: 0;
}

.mockup-web-nav {
  background: #0f1c29;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-web-nav-brand {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-web-nav-brand span {
  color: #10bfb3;
}

.mockup-web-nav-links {
  display: flex;
  gap: 12px;
  font-size: 0.68rem;
  color: #94a3b8;
}

.mockup-web-nav-btn {
  background: #10bfb3;
  color: #0f1c29;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mockup-web-hero {
  background: linear-gradient(135deg, #091924, #0f2d3d);
  padding: 30px 24px;
  color: #ffffff;
  text-align: center;
}

.mockup-web-hero .web-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2dd4bf;
  margin-bottom: 8px;
}

.mockup-web-hero h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 auto 10px;
  max-width: 540px;
  color: #ffffff;
}

.mockup-web-hero p {
  font-size: 0.8rem;
  color: #94a3b8;
  max-width: 480px;
  margin: 0 auto 18px;
  line-height: 1.5;
}

.mockup-web-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10bfb3;
  color: #091924;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(16, 191, 179, 0.4);
}

.mockup-web-metrics {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mockup-metric-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.mockup-metric-card small {
  font-size: 0.6rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.mockup-metric-card strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.mockup-metric-card span {
  font-size: 0.62rem;
  color: #059669;
  font-weight: 600;
}

/* ==========================================================================
   Mockup de Arquitetura de IA & Automação (100% em Português)
   ========================================================================== */
.mockup-ai-body {
  background: #0f1c29;
  padding: 24px 20px;
  color: #ffffff;
}

.mockup-ai-top-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(16, 191, 179, 0.15);
  border: 1px solid rgba(16, 191, 179, 0.35);
  color: #2dd4bf;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  width: fit-content;
  margin: 0 auto 20px;
}

.mockup-ai-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
}

.mockup-ai-node {
  background: #142433;
  border: 1px solid #20384d;
  border-radius: 10px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
}

.mockup-ai-node-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.mockup-ai-node-head svg {
  color: #10bfb3;
}

.mockup-ai-node-box {
  background: #0a151f;
  border: 1px solid #1b2f40;
  border-radius: 6px;
  padding: 10px;
  font-size: 0.7rem;
  line-height: 1.45;
  color: #cbd5e1;
  flex: 1;
}

.mockup-ai-node-box strong {
  color: #38bdf8;
  display: block;
  margin-bottom: 4px;
}

.mockup-ai-node-box em {
  font-style: normal;
  color: #34d399;
  font-weight: 700;
}

.mockup-ai-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #1b2f40;
}

.mockup-ai-kpi-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: #94a3b8;
}

.mockup-ai-kpi-item svg {
  color: #10bfb3;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mockup-bi-body {
    grid-template-columns: 1fr;
  }
  .mockup-bi-sidebar {
    border-right: none;
    border-bottom: 1px solid #1a3347;
  }
  .mockup-bi-kpis,
  .mockup-web-metrics,
  .mockup-ai-flow,
  .mockup-ai-kpis {
    grid-template-columns: 1fr;
  }
  .mockup-web-nav-links {
    display: none;
  }
}

/* Destaques / Callouts */
.article-callout {
  background: #f4fafb;
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  margin: 36px 0;
  box-shadow: 0 6px 20px rgba(16, 191, 179, 0.06);
}

.article-callout h4 {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 750;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-callout h4 svg {
  color: var(--teal);
}

.article-callout p:last-child {
  margin-bottom: 0;
}

/* Tabela Comparativa de Artigo */
.article-table-wrap {
  overflow-x: auto;
  margin: 34px 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  text-align: left;
}

.article-table th {
  background: var(--navy);
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.article-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #eef2f5;
  color: #334455;
}

.article-table tr:nth-child(even) td {
  background: #f9fbfc;
}

.article-table tr:hover td {
  background: #f0f7fa;
}

/* Barra Lateral do Artigo (Sidebar) */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.article-sidebar-widget {
  background: #f8fafb;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
}

.article-sidebar-title {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-sidebar-title svg {
  color: var(--teal);
}

.article-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-toc-list a {
  color: #556877;
  font-size: 0.9rem;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
  display: block;
}

.article-toc-list a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.article-share-buttons {
  display: flex;
  gap: 10px;
}

.article-share-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-share-wa {
  background: #25d366;
  color: #ffffff;
}

.article-share-wa:hover {
  background: #20ba59;
  transform: translateY(-2px);
  color: #ffffff;
}

.article-share-li {
  background: #0077b5;
  color: #ffffff;
}

.article-share-li:hover {
  background: #006097;
  transform: translateY(-2px);
  color: #ffffff;
}

.article-sidebar-cta {
  background: linear-gradient(135deg, var(--navy), #0b2f4a);
  color: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
}

.article-sidebar-cta h4 {
  font-size: 1.15rem;
  font-weight: 750;
  margin-bottom: 10px;
  line-height: 1.35;
}

.article-sidebar-cta p {
  font-size: 0.86rem;
  color: #b7cad6;
  margin-bottom: 20px;
  line-height: 1.55;
}

.article-sidebar-cta .button-primary {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 11px 16px;
}

/* Card de Autor ao Final do Artigo */
.article-author-card {
  margin-top: 56px;
  padding: 32px;
  background: #f8fafb;
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.article-author-card .author-big-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 26px rgba(16, 191, 179, 0.35);
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-author-card .author-big-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(16, 191, 179, 0.5);
}

.article-author-card .author-big-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.article-author-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.article-author-card p.author-title {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.article-author-card p.author-bio {
  color: #556877;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Seção de Artigos Relacionados */
.article-related-section {
  background: #f4f8fa;
  padding: 70px 0 90px;
  border-top: 1px solid #e5edf2;
}

.article-related-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .article-header-section {
    padding: 130px 0 50px;
  }

  .article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-author-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   PÁGINAS LEGAIS: POLÍTICA DE PRIVACIDADE & TERMOS DE USO (PADRÃO PREMIUM SENVAR)
   ========================================================================== */
.legal-hero-section {
  background: linear-gradient(135deg, #051827 0%, var(--navy) 60%, #092f49 100%);
  color: #ffffff;
  padding: 145px 0 65px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 191, 179, 0.15);
}

.legal-hero-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 191, 179, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero-section .container {
  position: relative;
  z-index: 2;
}

.legal-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.legal-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 750;
  color: #2dd4bf;
  background: rgba(16, 191, 179, 0.12);
  border: 1px solid rgba(16, 191, 179, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.legal-hero-badge.badge-date {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.legal-hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #ffffff;
}

.legal-hero-title span {
  color: var(--teal-light);
}

.legal-hero-lead {
  font-size: 1.1rem;
  line-height: 1.68;
  color: #c7d8e2;
  max-width: 780px;
  margin: 0;
}

/* Layout de Duas Colunas da Página Legal */
.legal-main-section {
  background: #fcfdfe;
  padding: 75px 0 110px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 64px;
  align-items: start;
}

/* Sidebar Sticky com Índice de Navegação Rápida */
.legal-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-toc-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 6px 20px rgba(6, 38, 58, 0.04);
}

.legal-toc-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-toc-title svg {
  color: var(--teal);
}

.legal-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.legal-toc-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: #475569;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  line-height: 1.35;
  border-left: 2px solid transparent;
}

.legal-toc-link:hover {
  background: #f1f8f7;
  color: var(--teal);
  border-left-color: var(--teal);
  transform: translateX(3px);
}

/* Card Rápido de Contato na Sidebar */
.legal-sidebar-help {
  background: linear-gradient(135deg, #091d2c, #0c2d42);
  color: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
}

.legal-sidebar-help h4 {
  font-size: 0.98rem;
  font-weight: 800;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-sidebar-help h4 svg {
  color: var(--teal);
}

.legal-sidebar-help p {
  font-size: 0.82rem;
  color: #afc4d2;
  margin: 0 0 16px;
  line-height: 1.5;
}

.legal-sidebar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.legal-sidebar-btn:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 191, 179, 0.4);
}

/* Área Principal de Conteúdo Legal */
.legal-content-body {
  min-width: 0;
}

/* Card de Resumo Executivo ("Em Resumo") */
.legal-summary-box {
  background: #ffffff;
  border: 1px solid #d8e5ec;
  border-radius: 18px;
  padding: 32px 28px;
  margin-bottom: 48px;
  box-shadow: 0 10px 30px rgba(6, 38, 58, 0.05);
}

.legal-summary-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.legal-summary-head-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10bfb3, #078f86);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(16, 191, 179, 0.35);
}

.legal-summary-head h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 2px;
}

.legal-summary-head p {
  font-size: 0.84rem;
  color: #64748b;
  margin: 0;
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.legal-summary-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.legal-summary-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 191, 179, 0.45);
  box-shadow: 0 8px 20px rgba(6, 38, 58, 0.06);
}

.legal-summary-card svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-summary-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.legal-summary-card p {
  font-size: 0.82rem;
  color: #556877;
  line-height: 1.5;
  margin: 0;
}

/* Seções e Artigos da Política */
.legal-section-block {
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid #e5edf2;
  scroll-margin-top: 120px;
}

.legal-section-block:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.legal-section-number {
  font-size: 0.78rem;
  font-weight: 850;
  color: #078f86;
  background: #e6f7f5;
  border: 1px solid rgba(16, 191, 179, 0.3);
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.legal-section-block h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
}

.legal-section-block h3 {
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--navy);
  margin: 24px 0 10px;
}

.legal-section-block p {
  font-size: 0.98rem;
  line-height: 1.76;
  color: #475569;
  margin: 0 0 16px;
}

.legal-section-block ul,
.legal-section-block ol {
  margin: 0 0 20px 20px;
  padding: 0;
  color: #475569;
}

.legal-section-block li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-section-block li strong {
  color: var(--navy);
}

/* Caixas de Alerta e Destaques Jurídicos */
.legal-callout-box {
  background: #f0fdf9;
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.legal-callout-box.callout-info {
  background: #f0f7ff;
  border-left-color: #0284c7;
}

.legal-callout-box strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.96rem;
  margin-bottom: 6px;
}

.legal-callout-box p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.62;
  color: #334155;
}

/* Tabelas Legais */
.legal-table-wrap {
  overflow-x: auto;
  margin: 24px 0 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
  background: #ffffff;
}

.legal-table th {
  background: #f8fafc;
  color: var(--navy);
  font-weight: 800;
  padding: 14px 18px;
  border-bottom: 1px solid #e2e8f0;
}

.legal-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #edf2f7;
  color: #475569;
  line-height: 1.6;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

/* Card do Encarregado de Dados (DPO) */
.legal-dpo-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 18px;
  padding: 32px;
  margin-top: 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(6, 38, 58, 0.05);
}

.legal-dpo-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(16, 191, 179, 0.35);
  flex-shrink: 0;
  overflow: hidden;
}

.legal-dpo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.legal-dpo-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
}

.legal-dpo-role {
  font-size: 0.84rem;
  font-weight: 750;
  color: var(--teal);
  margin-bottom: 8px;
}

.legal-dpo-info p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #556877;
  margin: 0 0 14px;
}

.legal-dpo-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-dpo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.legal-dpo-pill:hover {
  background: var(--teal);
  color: #ffffff;
}

/* Responsividade para Telas Menores */
@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .legal-hero-section {
    padding: 125px 0 50px;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
  }

  .legal-summary-grid {
    grid-template-columns: 1fr;
  }

  .legal-dpo-card {
    flex-direction: column;
    text-align: center;
  }

  .legal-dpo-contacts {
    justify-content: center;
  }
}







