/* =============================================
   IGEOS - Site Estático - CSS Principal
   ============================================= */




/* =============================================
   FONTES LOCAIS
   ============================================= */

/* LEMON MILK */
@font-face {
  font-family: 'LEMON MILK';
  src: url('../fonts/LEMONMILK-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'LEMON MILK';
  src: url('../fonts/LEMONMILK-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'LEMON MILK';
  src: url('../fonts/LEMONMILK-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* DepotNew */
@font-face {
  font-family: 'DepotNew';
  src: url('../fonts/DepotNew-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'DepotNew';
  src: url('../fonts/DepotNew-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'DepotNew';
  src: url('../fonts/DepotNew-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'DepotNew';
  src: url('../fonts/DepotNew-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* Skyer */
@font-face {
  font-family: 'Skyer';
  src: url('../fonts/Skyer-Modifier.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  max-width: 100%;
}

ul {
  list-style: none;
}

/* --- Variáveis --- */
:root {
  /* Styleguide Figma — valores exatos */
  --preto-igeos: #0F1823;
  /* 60% */
  --azul-mid: #1D2A42;
  /* 20% */
  --azul-igeos: #0F3D7F;
  /* 10% */
  --ciano: #00D2E9;
  /*  5% */
  --laranja: #F26418;
  --laranja-igeos: #F26418;
  /*  5% */
  /* Aliases (manter compatibilidade) */
  --azul-escuro: #0F1823;
  --azul-claro: #1D2A42;
  --branco: #ffffff;
  --creme: #F9F7F4;
  --cinza-claro: #f4f6fb;
  --cinza-texto: #4a4a5a;
  --destaque: #F26418;
  /* Fontes */
  --font-title: 'LEMON MILK', sans-serif;
  --font-subtitle: 'Skyer', sans-serif;
  --font-body: 'DepotNew', sans-serif;
  --font-italic-bold: 'DepotNew', sans-serif;
  /* Fallback */
}

/* Classes Utilitárias para o CMS */
.text-orange {
  color: var(--laranja-igeos) !important;
  font-weight: 700;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

#header.scrolled {
  box-shadow: none;
}

.header-logo img {
  height: 45px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  color: var(--preto-igeos);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-menu a:hover {
  color: var(--laranja);
}

.nav-menu a.active {
  color: var(--laranja);
  border-bottom-color: var(--laranja);
}

/* Language Switcher - Minimalista (PT | EN | ES) */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
  display: flex;
}

.lang-switcher span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--cinza-texto);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.lang-switcher span:not(:last-child)::after {
  content: "|";
  margin-left: 8px;
  color: #ccc;
  font-weight: 300;
  pointer-events: none;
}

.lang-switcher span:hover {
  color: var(--laranja);
}

.mobile-menu .lang-switcher {
  margin-left: 0;
  margin-top: 25px;
}

.nav-cta {
  background: var(--laranja) !important;
  border: 2px solid var(--laranja) !important;
  color: #fff !important;
  border-radius: 4px;
  padding: 8px 20px !important;
  border-bottom: 2px solid var(--laranja) !important;
  transition: background 0.2s, color 0.2s !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: #d4540f !important;
  border-color: #d4540f !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--preto-igeos);
  display: block;
  transition: 0.3s;
}

/* ── MENU MOBILE NOVO (ESTILO MYCON/PREMIUM) ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  /* Ocupa a tela inteira no mobile */
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: none;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-logo {
  height: 42px;
  /* Aumentado de 32px */
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--azul-escuro);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-item a {
  display: block;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--azul-escuro);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav-item a:hover {
  color: var(--laranja-igeos);
}

.mobile-menu-footer {
  padding: 30px 24px 50px 24px;
  background: #fbfbfb;
}

.mobile-footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.mobile-footer-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-footer-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cinza-texto);
  opacity: 0.6;
}

.mobile-socials {
  display: flex;
  gap: 16px;
}

.mobile-langs {
  display: flex;
  gap: 12px;
}

.mobile-langs span {
  font-size: 13px;
  font-weight: 700;
  color: var(--azul-escuro);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.mobile-langs span.active {
  opacity: 1;
  color: var(--laranja-igeos);
}

.mobile-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 24, 35, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-escuro);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-socials a:hover {
  background: var(--laranja-igeos);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(242, 100, 24, 0.2);
}

/* =============================================
   HERO / CARROSSEL
   ============================================= */
#inicio {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #ffffff;
  /* fundo branco conforme Figma */
}

/* Track: faixa horizontal que desliza */
.carousel-track {
  position: absolute;
  top: 80px;
  /* compensa header fixo */
  left: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  transition: transform 1.4s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* Cada slide ocupa 100% da viewport */
.slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide .section-inner {
  width: 100%;
  max-width: 1000px;
  /* Largura segura para não bater nas setas */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
}

/* SVG posicionado ao lado do texto */
.slide-bg {
  position: relative;
  width: 45%;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.slide-bg img {
  width: 100%;
  height: 95%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transform: scale(1.15);
  /* Aumentado levemente */
}

/* Texto na coluna esquerda */
.slide-content {
  position: relative;
  z-index: 2;
  width: 45%;
  flex: 1;
  max-width: 550px;
  padding: 0;
  color: var(--preto-igeos);
  text-align: left;
}

.slide-eyebrow {
  font-family: var(--font-subtitle);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--preto-igeos);
  margin-bottom: 12px;
  display: block;
}

.slide-title {
  font-size: clamp(32px, 4vw, 52px);
  font-family: var(--font-title);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--azul-igeos);
  letter-spacing: 0.5px;
}

.slide-subtitle-lm {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--preto-igeos);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
  letter-spacing: 0.5px;
}

.slide-subtitle-skyer {
  font-family: var(--font-subtitle);
  font-size: 22px;
  color: var(--preto-igeos);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.slide-text {
  font-size: 13px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 20px;
  color: var(--cinza-texto);
  font-family: var(--font-body);
  font-weight: 400;
}

.slide-highlight-italic {
  font-family: 'DepotNew';
  font-weight: 700;
  font-style: italic;
  color: inherit;
}

.slide-highlight-blue {
  color: var(--azul-igeos);
  font-weight: 500;
}

.slide-subtext {
  font-size: 13px;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
  color: #555;
  font-family: var(--font-body);
  font-weight: 400;
}

.slide-subtext strong {
  font-style: italic;
  font-weight: 600;
  color: var(--preto-igeos);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--laranja);
  color: #fff;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  transition: background 0.25s, transform 0.2s;
  font-family: 'DepotNew', sans-serif;
  cursor: pointer;
}

.btn-primary:hover {
  background: #d4540f;
  transform: translateY(-1px);
}

.btn-arrow {
  font-size: 14px;
  display: inline-block;
}

/* ── Pontos de navegação ── */
.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DDE2E7;
  /* Cinza claro da referência */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dot.active {
  background: var(--laranja-igeos);
  transform: scale(1.8);
  /* Fica maior que os outros */
}

/* ── Setas laterais ── */
.carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

@media (max-width: 768px) {
  .carousel-arrows {
    display: none;
    /* Esconde no mobile */
  }
}

.arrows-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.arrow-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--preto-igeos);
  transition: opacity 0.2s;
}

.arrow-prev {
  margin-left: 0;
}

.arrow-next {
  margin-right: 0;
}

.arrow-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}

.arrow-btn:hover {
  opacity: 0.55;
}

/* =============================================
   SEÇÕES GERAIS
   ============================================= */
section {
  padding: 90px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  /* Respiro no desktop */
}

@media (max-width: 768px) {
  #inicio {
    height: auto;
    min-height: 100vh;
    padding-top: 80px;
    /* Compensar o header */
  }

  .carousel-track {
    position: relative;
    top: 0;
    height: auto;
  }

  .section-inner {
    padding: 0 32px;
    /* Respiro confortável no mobile */
  }

  .slide .section-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0;
    padding-bottom: 20px;
    /* Aproximando ao máximo os dots do texto */
  }



  .slide-bg {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 350px;
    margin-top: 10px;
    margin-bottom: 0;
    /* Puxando o texto mais pra cima ainda */
    order: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: visible;
  }

  .slide-bg img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    transform: scale(2.5);
    /* Escala monumental */
    object-fit: contain;
  }

  .slide-content {
    width: 100%;
    order: 2;
    /* Texto depois */
  }

  .slide-title {
    font-size: 32px; /* Reduzido de 38px para evitar vazamento em telas pequenas */
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .slide-subtitle-lm,
  .slide-subtitle-skyer {
    font-size: 14px;
    line-height: 1.4;
  }

  .slide-text {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

/* =============================================
   CABEÇALHOS DE SEÇÃO (FIGMA)
   ============================================= */
.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

#cases .section-header,
#solucoes .section-header,
#segmentos .section-header,
#parcerias .section-header {
  display: flex;
  justify-content: center;
  width: 100%;
}

#contato .section-header {
  display: flex;
  justify-content: flex-start !important;
  width: 100%;
  text-align: left !important;
}

#cases .section-title {
  max-width: 280px;
  /* Força a quebra de linha como na imagem */
  color: #fff;
}

#segmentos .section-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Força alinhamento à esquerda mesmo com conteúdo vindo do banco de dados */
section#contato .section-inner p.section-text[data-cms="contato_intro"] {
  text-align: left !important;
  display: block !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.section-header-icon {
  width: 50px;
  height: auto;
  flex-shrink: 0;
  margin-top: 5px;
}

.section-title-wrapper {
  display: flex;
  flex-direction: column;
}

.section-header .section-tag {
  font-family: var(--font-subtitle);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--preto-igeos);
  margin-bottom: 4px;
  display: block;
}

.section-header .section-tag::before {
  display: none;
}

.section-header .section-title {
  font-family: var(--font-title);
  margin-bottom: 10px;
  font-size: clamp(32px, 8vw, 42px);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--preto-igeos);
  overflow-wrap: break-word; /* Garante que palavras longas quebrem se necessário */
}

.section-header-line {
  width: 55px;
  height: auto;
}

.section-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--cinza-texto);
  font-family: var(--font-body);
  font-weight: 400;
  max-width: 720px;
}

/* =============================================
   O QUE É INTELIGÊNCIA GEOESPACIAL
   ============================================= */
#geo-intel {
  background: var(--branco);
}

.geo-intel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.geo-intel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-intel-visual img {
  max-width: 480px;
  width: 100%;
}

.geo-intel-text .section-text {
  margin-bottom: 16px;
}

.geo-intel-destaque {
  margin-top: 24px;
}

.geo-intel-destaque p {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--preto-igeos);
  line-height: 1.6;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 720px;
  /* Alinhado com o padrão da seção */
}

/* =============================================
   SOLUÇÕES
   ============================================= */
#solucoes {
  background: #f4f5f6;
}

/* Carrossel wrapper */
.solucoes-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

/* Inner clip: esconde os cards fora da área visível */
.solucoes-carousel-inner {
  overflow: hidden;
  flex: 1;
  padding: 20px 0;
  /* Espaço para o card subir no hover */
  margin: -20px 0;
  /* Compensa o padding para manter o espaçamento original */
}

.solucoes-carousel {
  display: flex;
  gap: 24px;
  /* transform controlado pelo JS */
  transition: transform 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
}

/* Cards */
.sol-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 32px;
  /* largura responsiva: 3 cards desktop, 2 tablet, 1 mobile */
  min-width: calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

@media (max-width: 1023px) {
  .sol-card {
    min-width: calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 639px) {
  .sol-card {
    min-width: 100%;
    width: 100%;
  }
}

.sol-card:hover {
  background: var(--preto-igeos);
  transform: translateY(-8px);
}

.sol-card:hover .sol-card-title,
.sol-card:hover .sol-card-text {
  color: #fff;
}

.sol-card:hover .sol-card-icon {
  filter: brightness(0) invert(1);
}

.sol-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: block;
  transition: filter 0.4s ease;
}

.sol-card-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  color: var(--preto-igeos);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.sol-card-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--cinza-texto);
  line-height: 1.75;
  margin-bottom: 24px;
  transition: color 0.4s ease;
  font-weight: 400;
}

.btn-saiba-mais-sol {
  display: inline-block;
  background: var(--preto-igeos);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.sol-card:hover .btn-saiba-mais-sol {
  background: var(--laranja-igeos);
}

.btn-saiba-mais-sol:hover {
  opacity: 0.9;
}

/* Setas */
.sol-arrow {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--preto-igeos);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.sol-arrow svg {
  width: 28px;
  height: 28px;
  display: block;
}

.sol-arrow:hover {
  opacity: 0.5;
}

.sol-arrow-disabled {
  opacity: 0.2;
  pointer-events: none;
}

/* Dots */
.sol-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  height: 20px;
  /* Estabiliza a altura para evitar tremor no hover/active */
}

.sol-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #CED4DA;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sol-dot.active {
  width: 14px;
  height: 14px;
  background: var(--laranja-igeos);
}


/* =============================================
   CASES DE SUCESSO (NOVO DESIGN)
   ============================================= */
#cases {
  background: var(--azul-mid);
  padding: 100px 0;
  overflow: hidden;
}

#cases .section-title {
  color: #fff;
}

#cases .section-tag {
  color: rgba(255, 255, 255, 0.7);
}

.cases-carousel-wrapper {
  position: relative;
  margin-top: 60px;
}

.cases-carousel-inner {
  width: 100%;
  overflow: visible;
}

.cases-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

.case-slide {
  flex: 0 0 100%;
  max-width: 900px;
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.5s ease;
  cursor: pointer;
}

.case-slide.active {
  opacity: 1;
  transform: scale(1);
}

.case-content {
  background: #fff;
  border-radius: 12px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  min-height: 380px;
}

.case-info {
  flex: 1.2;
}

.case-icon {
  width: 32px;
  height: auto;
  margin-bottom: 24px;
}

.case-project-title {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 16px;
  color: var(--azul-igeos);
  line-height: 1.4;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.case-project-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cinza-texto);
  text-transform: none;
  display: block;
  margin-top: 8px;
  line-height: 1.6;
  font-weight: 400;
}

.case-divider {
  width: 60px;
  height: 2px;
  background: var(--azul-igeos);
  margin: 30px 0;
}

.case-client-name {
  font-family: var(--font-title);
  font-size: 15px;
  color: var(--preto-igeos);
  font-weight: 500;
  text-transform: uppercase;
}

.case-logo {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #f0f0f0;
  padding-left: 40px;
}

.case-logo img {
  max-width: 100%;
  height: auto;
  max-height: 180px;
}

/* Dots do Cases */
.cases-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.case-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  /* Branco suave para inativos */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
}

.case-dot.active {
  background: #FFFFFF;
  /* Branco sólido para o ativo */
  transform: scale(1.8);
}

/* =============================================
   PARCERIAS
   ============================================= */
#parcerias {
  padding: 100px 0;
  background: var(--branco);
  overflow: hidden;
}

.parcerias-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.parcerias-heading {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 500;
  color: var(--preto-igeos);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-wrap: balance;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.parcerias-subtext {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--cinza-texto);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.parcerias-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Removidos efeitos de fade para visualização limpa de 3 logos */

.parcerias-carousel-inner {
  overflow: hidden;
  max-width: 900px;
  /* 3 logos de 300px cada */
  margin: 0 auto;
}

.parcerias-track {
  display: flex;
  align-items: center;
  gap: 0;
  /* Espaço zero para alinhamento matemático */
  will-change: transform;
}

.parceria-item {
  flex: 0 0 300px;
  /* Ocupa exatamente 1/3 do container de 900px */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  filter: grayscale(1);
  opacity: 0.6;
}

.parceria-item:hover {
  filter: grayscale(0);
  opacity: 1;
}

.parceria-item img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.parcerias-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.parc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.parc-dot.active {
  background: var(--azul-igeos);
  transform: scale(1.2);
}

/* =============================================
   SEGMENTOS
   ============================================= */
#segmentos {
  background: #fff;
  padding: 100px 0;
}

#segmentos .section-header {
  margin-bottom: 24px;
}

.segmentos-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 30px 0 40px;
}

.tab-btn {
  padding: 10px 32px;
  border-radius: 40px;
  border: none;
  background: #EDEDED;
  color: #333;
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--laranja-igeos);
  color: #fff;
}

.tab-btn:hover:not(.active) {
  background: #e0e0e0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.segmento-card {
  background: #fff;
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--preto-igeos);
  border-radius: 12px;
  transition: transform 0.3s ease;
  z-index: 1;
}

/* Efeito Hover Fill-up */
.segmento-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--preto-igeos);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.segmento-card:hover::before {
  height: 100%;
}

.segmento-card:hover {
  transform: translateY(-5px);
}

.seg-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.seg-card-header img {
  height: 24px;
  width: auto;
  transition: filter 0.4s ease;
}

.seg-title {
  font-family: var(--font-subtitle);
  font-size: 48px;
  font-weight: 400;
  color: var(--preto-igeos);
  margin-bottom: 20px;
  text-transform: uppercase;
  transition: color 0.4s ease;
  line-height: 1;
}

.seg-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15, 24, 35, 0.7);
  transition: color 0.4s ease;
}

/* Cores no Hover */
.segmento-card:hover .seg-title,
.segmento-card:hover .seg-text {
  color: #fff;
}

.segmento-card:hover .seg-card-header img {
  filter: brightness(0) invert(1);
}

/* Responsividade Segmentos */
@media (max-width: 1100px) {
  .tab-content.active {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .tab-content.active {
    grid-template-columns: 1fr;
  }

  .seg-title {
    font-size: 28px;
  }
}

/* =============================================
   SOCIAL / ONU
   ============================================= */
#social {
  position: relative;
  background: #f4f5f6;
  padding: 80px 40px;
}

#social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/Fundo-Social.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  /* Mesclando suavemente o listrado */
  z-index: 0;
}

#social .section-inner {
  position: relative;
  z-index: 1;
}

#social .section-tag {
  color: var(--laranja-igeos);
}

#social .section-tag::before {
  background: var(--laranja-igeos);
}

#social .section-title {
  color: var(--azul-escuro);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.social-destaque {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 500;
  color: var(--preto-igeos);
  margin: 30px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.social-text {
  font-family: var(--font-body);
  color: var(--cinza-texto);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
}

.social-visual img {
  max-width: 100%;
  border-radius: 12px;
}

/* =============================================
   CONTATO
   ============================================= */
#contato {
  background: #fff;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato-form input,
.contato-form textarea {
  border: 1px solid #d0d8e8;
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--preto-igeos);
  transition: border-color 0.2s;
}

.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--azul-igeos);
}

.contato-form textarea {
  min-height: 220px;
  resize: vertical;
}

.slide-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.slide-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--cinza-texto);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.slide-list li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image: url('../img/Lista-Marcador.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-primary {
  display: inline-block;
  background: var(--laranja-igeos);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary:hover {
  background: #d4540f;
  transform: translateY(-2px);
}

.btn-enviar {
  background: var(--laranja);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}

.btn-enviar:hover {
  background: #d4540f;
}

.btn-enviar.success {
  background: #28a745;
}

.contato-info .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contato-info .info-icon {
  font-size: 20px;
  color: var(--azul-igeos);
  flex-shrink: 0;
  margin-top: 2px;
}

.contato-info .info-text {
  font-size: 15px;
  color: var(--cinza-texto);
  line-height: 1.6;
}

.contato-info .map-container {
  margin-bottom: 30px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border-radius: 12px;
}

.google-map {
  display: block;
  filter: grayscale(1) invert(0.05) contrast(1.1);
  transition: filter 0.5s ease;
}

.map-container:hover .google-map {
  filter: grayscale(0) invert(0) contrast(1);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--preto-igeos);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  padding: 48px 40px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.85;
  font-weight: 400;
}

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

.footer-nav h4 {
  grid-column: span 2;
  font-family: var(--font-subtitle);
  color: #fff;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-nav a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--ciano);
}

.footer-social h4 {
  font-family: var(--font-subtitle);
  color: #fff;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
  background: var(--ciano);
  color: var(--preto-igeos);
  border-color: var(--ciano);
}

.footer-credit {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.credit-icon {
  height: 32px;
  width: auto;
}

.credit-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-body);
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-size: 12px;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* =============================================
   SCROLL TOP
   ============================================= */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--laranja-igeos);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

#scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

#scroll-top:hover {
  background: #d4540f;
  transform: translateY(-5px);
}

/* =============================================
   PÁGINA SOBRE
   ============================================= */
.page-header {
  background: var(--preto-igeos);
  padding: 180px 40px 120px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header h1 {
  font-family: var(--font-title);
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

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

.mvv-card {
  border-top: 4px solid var(--azul-igeos);
  padding: 28px;
  background: var(--cinza-claro);
  border-radius: 0 0 10px 10px;
}

.mvv-card h3 {
  font-family: var(--font-subtitle);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--preto-igeos);
  margin-bottom: 12px;
}

.mvv-card ul {
  list-style: disc;
  padding-left: 16px;
}

.mvv-card ul li {
  font-size: 14px;
  color: var(--cinza-texto);
  margin-bottom: 6px;
}

.clientes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.cliente-logo img {
  max-height: 60px;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.2s;
}

.cliente-logo:hover img {
  filter: none;
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 1024px) {
  .solucoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .geo-intel-grid,
  .social-grid,
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Carrossel tablet: SVG menor, texto ocupa mais espaço */
  .slide {
    padding: 0;
  }

  .slide-bg {
    width: 50%;
    max-height: none;
  }

  .slide-bg img {
    max-height: none;
    object-fit: contain;
  }

  .slide-content {
    width: 50%;
    padding: 0 40px 0 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  #header {
    padding: 0 20px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .solucoes-grid,
  .cases-grid,
  .tab-content.active {
    grid-template-columns: 1fr;
  }

  .sobre-grid,
  .mvv-grid {
    grid-template-columns: 1fr;
  }

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

  .segmentos-tabs {
    flex-wrap: wrap;
  }

  .footer-bottom {
    gap: 16px;
  }

  .footer-cnpj {
    display: block;
    margin-top: 4px;
  }

  /* Carrossel mobile: só mostra o texto, oculta SVG */
  .slide {
    padding: 0;
    justify-content: center;
  }

  .slide-content {
    width: 100%;
    max-width: 100%;
    padding: 40px 24px 80px;
    padding-top: 60px;
  }

  .slide-bg {
    display: none;
  }

  .slide-title {
    font-size: clamp(26px, 8vw, 40px);
  }

  .carousel-arrows {
    position: absolute;
    bottom: 20px;
    top: auto;
    transform: none;
    width: 100%;
    padding: 0 20px;
  }

  .arrows-container {
    justify-content: center;
    gap: 20px;
  }

  .arrow-prev,
  .arrow-next {
    margin: 0;
  }

  .arrow-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* Parcerias: 1 logo por vez no mobile */
  .parcerias-carousel-inner {
    max-width: 260px;
  }

  .parceria-item {
    flex: 0 0 260px;
    filter: grayscale(0);
    opacity: 1;
  }

  /* Cases: empilha texto e logo em coluna única no mobile */
  .case-content {
    flex-wrap: wrap;
    padding: 30px 24px;
    min-height: auto;
    gap: 24px;
  }

  .case-info {
    flex: 0 0 100%;
    /* Ocupa linha inteira */
  }

  .case-logo {
    flex: 0 0 100%;
    border-left: none;
    border-top: 1px solid #f0f0f0;
    padding-left: 0;
    padding-top: 24px;
    justify-content: center;
  }
}

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

  .section-inner {
    padding: 0 20px; /* Reduzido de 32px para 20px em telas muito pequenas */
  }

  .tab-content.active {
    grid-template-columns: 1fr; /* Corrigido de 1fr 1fr para 1fr no mobile */
  }
}

/* =========================================
   DRAG & DROP UX (CARROSSEIS)
   ========================================= */
.carousel-track,
.solucoes-carousel,
.cases-track,
.parcerias-track {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.carousel-track:active,
.solucoes-carousel:active,
.cases-track:active,
.parcerias-track:active {
  cursor: grabbing;
}

/* =========================================
   ODS GRID E EFEITOS
   ========================================= */
.ods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  align-content: center;
}

.ods-card {
  position: relative;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.ods-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.ods-item {
  width: 100%;
  display: block;
  border-radius: 8px;
}

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

.ods-card:hover::after {
  opacity: 0;
}

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

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

/* =========================================
   COOKIE BANNER (LGPD)
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--preto-igeos);
  color: #fff;
  z-index: 9999;
  padding: 20px 40px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
}

.cookie-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-content p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-content p a {
  color: var(--laranja-igeos);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-reject {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-cookie-accept {
  background-color: var(--laranja-igeos);
  color: #fff;
}

.btn-cookie-accept:hover {
  background-color: #d95e00;
}

.btn-cookie-reject {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cookie-banner {
    padding: 20px;
  }
}

/* =============================================
   TRADUÇÃO - AJUSTES FINAIS
   ============================================= */
/* Esconder absolutamente todos os elementos de interface do Google */
*[class*="goog-te-"],
*[id*="goog-gt-"],
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
}

/* Garante que o corpo do site não seja empurrado */
body {
  top: 0px !important;
  position: static !important;
}


.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Destaque do idioma - Laranja IGEOS */
.lang-switcher span.active {
  color: #ff6b00 !important;
  opacity: 1 !important;
  font-weight: 700 !important;
}

/* AJUSTE FINAL MOBILE - ISOLADO */
@media (max-width: 991px) {
  #inicio {
    padding-top: 220px !important;
  }

  #inicio .carousel-dots {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 25px !important;
    display: flex !important;
    z-index: 20 !important;
  }
  
  #inicio .slide-content {
    padding-bottom: 120px !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  /* Forçar quebra de colunas em todas as grades que estavam vazando */
  .geo-intel-grid, 
  .social-grid, 
  .contato-grid, 
  .footer-top,
  .missao-grid,
  .quem-somos-grid,
  .segmentos-grid,
  .mvv-grid,
  .numeros-grid,
  .tab-content.active {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .section-inner {
    padding: 0 20px !important;
  }

  .section-title {
    font-size: 28px !important;
    word-break: break-word !important;
    hyphens: auto !important;
  }

  .geo-intel-visual img,
  .social-visual img {
    max-width: 100% !important;
    height: auto !important;
  }

  .footer-nav {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Garante que flexboxes genéricos quebrem linha */
  [style*="display: flex"], [style*="display:flex"], .flex-row {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px !important;
  }
  
  .slide-title {
    font-size: 26px !important;
  }

  .section-inner {
    padding: 0 15px !important;
  }
}