/* Estilos completos atualizados - MultiRubber */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-primary: #4db3d9;
  --color-primary-light: #63c3e6;
  --color-dark: #0d0d0d;
  --color-gray: #333;
  --color-bg: #f8f9fa;
  --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body { 
  font-family: var(--font-primary); 
  color: var(--color-gray); 
  background: #fff; 
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 16px; 
}

/* HEADER COM EFEITO VIDRO TRANSPARENTE - FAIXA MAIS LEITOSA */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #000;
  padding-top: 2px;    /* Mantém o espaço de cima */
  padding-bottom: 0px; /* Reduz o espaço de baixo para 0 */
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.logo img {
  height: 120px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  margin-top: 4px; /* centraliza visualmente na faixa */
}

/* FRASE MAIOR, À DIREITA E UM POUCO MAIS BAIXA */
.header-slogan {
  flex: 1;
  text-align: right;
  font-size: 1.3rem;   /* aproximadamente o dobro do que estava */
  font-weight: 600;
  line-height: 1.3;
  color: #000;
  text-shadow:
    -0.5px -0.5px 0 #fff,
    0.5px -0.5px 0 #fff,
    -0.5px  0.5px 0 #fff,
    0.5px  0.5px 0 #fff;
  padding-right: 12px;
  padding-top: 8px;    /* empurra um pouco para baixo dentro da faixa */
}

.slogan {
  display: none;
}

.header-contacts {
  display: none;
}

/* HERO COM ANIMAÇÃO */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 0;
  overflow: hidden;
}

.hero-slider, .hero-slide { 
  width: 100%; 
  height: 100%; 
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: left;
  max-width: 700px;
  padding: 0 40px;
  margin-left: 60px;
  margin-top: 140px;
  animation: slideInFromRight 1.2s ease-out;
}

@keyframes slideInFromRight {
  0% { 
    opacity: 0; 
    transform: translateX(100px); 
  }
  100% { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

.hero-slide.active .hero-content {
  animation: slideInFromRight 1.2s ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg,#63c3e6,#4db3d9);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(77,179,217,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(77,179,217,0.6);
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  color:#fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: background 0.3s;
}

.slider-control:hover { 
  background: rgba(0,0,0,.7); 
}

.slider-control.prev { 
  left: 20px; 
}

.slider-control.next { 
  right: 20px; 
}

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  gap:8px;
}

.indicator {
  width:10px;
  height:10px;
  border-radius:50%;
  border:2px solid #fff;
  opacity:.5;
  cursor:pointer;
  transition: all 0.3s;
}

.indicator.active { 
  background:#fff; 
  opacity:1; 
}

.section-header { 
  text-align: center; 
  padding: 60px 0 20px; 
}

.section-title { 
  font-family: var(--font-heading); 
  font-size: 2.2rem; 
  margin-bottom: 8px; 
}

.section-subtitle { 
  color:#666; 
  max-width: 700px; 
  margin: 0 auto; 
}

.about-section { 
  background:#fff; 
  padding-bottom:60px; 
}

.about-grid { 
  display:grid; 
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); 
  gap:20px; 
  margin-top:30px; 
}

.about-card { 
  background:#fff; 
  border-radius:12px; 
  padding:20px; 
  box-shadow:0 2px 10px rgba(0,0,0,.05); 
  text-align:center; 
  transition: transform 0.3s, box-shadow 0.3s; 
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow:0 4px 16px rgba(0,0,0,.1);
}

.about-icon { 
  width:54px; 
  height:54px; 
  border-radius:50%; 
  background:linear-gradient(135deg,#63c3e6,#4db3d9); 
  color:#fff; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  margin:0 auto 12px; 
}

.materials-section { 
  background: var(--color-bg); 
  padding-bottom:60px; 
}

.materials-grid { 
  display:grid; 
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); 
  gap:20px; 
  margin-top:30px; 
}

.material-card { 
  background:#fff; 
  border-radius:12px; 
  overflow:hidden; 
  box-shadow:0 2px 10px rgba(0,0,0,.05); 
  transition: transform 0.3s, box-shadow 0.3s; 
}

.material-card:hover {
  transform: translateY(-4px);
  box-shadow:0 4px 16px rgba(0,0,0,.1);
}

.material-image { 
  position:relative; 
  height:200px; 
  overflow:hidden; 
}

.material-image img { 
  width:100%; 
  height:100%; 
  object-fit:cover; 
  transition: transform 0.3s; 
}

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

.material-card .material-content {
  padding: 10px 0;
}

.material-overlay { 
  position:absolute; 
  inset:0; 
  background:rgba(0,0,0,.6); 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  opacity:0; 
  transition:.3s; 
}

.material-card:hover .material-overlay { 
  opacity:1; 
}

.btn-material { 
  background:linear-gradient(135deg,#63c3e6,#4db3d9); 
  color:#fff; 
  padding:8px 18px; 
  border-radius:999px; 
  text-decoration:none; 
  font-weight:600; 
}

.material-content { 
  padding:16px 18px 20px; 
}

.materials-cta { 
  margin-top:40px; 
  padding:30px 20px; 
  border-radius:16px; 
  background:#0d0d0d; 
  color:#fff; 
  text-align:center; 
}

.clients-section { 
  background:#fff; 
  padding-bottom:60px; 
}

.clients-grid { 
  display:grid; 
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); 
  gap:16px; 
  margin-top:30px; 
}

.client-logo { 
  border-radius:10px; 
  border:1px solid #eee; 
  padding:18px; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-weight:600; 
  color:#555; 
  background:#fafafa; 
  transition: transform 0.3s, box-shadow 0.3s; 
}

.client-logo:hover {
  transform: translateY(-2px);
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.map-section { 
  position:relative; 
  background:#000; 
  color:#fff; 
  padding:70px 0; 
  overflow:hidden; 
}

.map-overlay { 
  position:absolute; 
  inset:0; 
  background:linear-gradient(135deg,rgba(0,0,0,.9),rgba(0,0,0,.8)); 
}

.map-background { 
  position:absolute; 
  inset:0; 
  opacity:0.2; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
}

.map-image { 
  max-width:1400px; 
  width:100%; 
}

.map-section .container { 
  position:relative; 
  z-index:1; 
}

.map-content { 
  text-align:center; 
}

.map-description { 
  max-width:700px; 
  margin:10px auto 30px; 
}

.map-stats { 
  display:grid; 
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); 
  gap:16px; 
  margin-top:20px; 
}

.stat-item { 
  border-radius:12px; 
  border:1px solid rgba(255,255,255,.2); 
  padding:18px; 
  transition: transform 0.3s, border-color 0.3s; 
}

.stat-item:hover {
  transform: translateY(-2px);
  border-color: rgba(99,195,230,.6);
}

.stat-number { 
  font-size:1.8rem; 
  font-weight:700; 
  margin-bottom:6px; 
}

.map-visual-elements { 
  position:absolute; 
  inset:0; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  pointer-events:none; 
}

.map-logo-center img { 
  width:80px; 
  filter:drop-shadow(0 0 20px rgba(99,195,230,.9)); 
}

.contact-section { 
  position:relative; 
  padding:80px 0; 
  color:#fff; 
}

.contact-background { 
  position:absolute; 
  inset:0; 
  background-size:cover; 
  background-position:center; 
}

.contact-overlay { 
  position:absolute; 
  inset:0; 
  background:linear-gradient(135deg,rgba(0,0,0,.92),rgba(0,0,0,.88)); 
}

.contact-section .container { 
  position:relative; 
  z-index:1; 
}

.contact-content { 
  text-align:center; 
  max-width:900px; 
  margin:0 auto; 
}

.contact-description { 
  margin:10px auto 30px; 
}

.contact-info-grid { 
  display:grid; 
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); 
  gap:18px; 
  margin-top:20px; 
}

.contact-info-card { 
  border-radius:12px; 
  border:1px solid rgba(255,255,255,.25); 
  padding:18px; 
  background:rgba(0,0,0,.3); 
  transition: transform 0.3s, border-color 0.3s; 
}

.contact-info-card:hover { 
  transform: translateY(-2px); 
  border-color: rgba(99,195,230,.6); 
}

.contact-info-card.highlight { 
  background:rgba(77,179,217,.2); 
  border-color:#4db3d9; 
}

.contact-icon { 
  width:50px; 
  height:50px; 
  border-radius:50%; 
  background:linear-gradient(135deg,#63c3e6,#4db3d9); 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  margin:0 auto 10px; 
}

.contact-info-card a { 
  color:#fff; 
  text-decoration:none; 
  font-weight:600; 
}

.contact-cta { 
  margin-top:30px; 
}

/* RODAPÉ */
.footer { 
  background:#000; 
  color:#fff; 
  padding:32px 0 24px; 
}

.footer-content { 
  display:grid; 
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); 
  gap:20px; 
  align-items:center; 
  text-align:center; 
}

/* Logo com fundo branco atrás para não sumir no fundo preto */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-inner {
  background: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.footer-logo img { 
  height:50px; 
  margin-bottom:0; 
}

.footer-info p { 
  font-size:0.9rem; 
  color:#ccc; 
}

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

.footer-contacts a { 
  color:#fff; 
  text-decoration:none; 
  font-size:0.9rem; 
  transition: color 0.3s; 
}

.footer-contacts a:hover { 
  color: var(--color-primary-light); 
}

.footer-contacts i { 
  color: var(--color-primary-light); 
}

.whatsapp-float { 
  position:fixed; 
  bottom:26px; 
  right:26px; 
  width:64px; 
  height:64px; 
  border-radius:50%; 
  background:#25D366; 
  color:#fff; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-size:30px; 
  text-decoration:none; 
  box-shadow:0 4px 18px rgba(0,0,0,.4); 
  z-index:200; 
  transition: transform 0.3s, box-shadow 0.3s; 
}

.whatsapp-float:hover { 
  transform: scale(1.1); 
  box-shadow:0 6px 24px rgba(0,0,0,.5); 
}

.whatsapp-text { 
  position:absolute; 
  right:74px; 
  background:#000; 
  color:#fff; 
  padding:6px 14px; 
  border-radius:999px; 
  font-size:0.85rem; 
  white-space:nowrap; 
  display:none; 
}

.whatsapp-float:hover .whatsapp-text { 
  display:block; 
}

.back-to-top { 
  position:fixed; 
  bottom:110px; 
  right:30px; 
  width:42px; 
  height:42px; 
  border-radius:50%; 
  border:none; 
  background:linear-gradient(135deg,#63c3e6,#4db3d9); 
  color:#fff; 
  cursor:pointer; 
  display:none; 
  align-items:center; 
  justify-content:center; 
  z-index:190; 
  transition: transform 0.3s, box-shadow 0.3s; 
}

.back-to-top:hover { 
  transform: scale(1.1); 
  box-shadow:0 4px 16px rgba(77,179,217,.5); 
}

.back-to-top.visible { 
  display:flex; 
}

/* RESPONSIVO GERAL */
@media (max-width: 768px) {
  .header-content { 
    flex-direction:column; 
    align-items:center; 
  }
  .logo { 
    flex-direction: column; 
    text-align: center; 
  }
  .logo img { 
    height: 80px; 
    margin-top: 0;
  }
  .header-slogan {
    font-size: 0.95rem;
    text-align: center;
    padding-right: 0;
    padding-top: 4px;
  }
  .hero-content { 
    text-align:center; 
    margin-left: 0; 
    padding: 0 20px; 
    margin-top: 160px; 
  }
  .hero-title { 
    font-size:2.2rem; 
  }
  .hero-subtitle { 
    font-size:1rem; 
  }
}

/* Animação do texto do hero: entra da direita para a esquerda */
.hero-content {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateX(0);
}

/* Seção Por que escolher a MultiRubber - fundo azul */
.about-section {
  background: linear-gradient(135deg, #0051a3, #002b5c);
  color: #fff;
}

.about-section .section-title,
.about-section .section-subtitle {
  color: #fff;
}

.about-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-card h3,
.about-card p,
.about-card .about-icon {
  color: #fff;
}

/* Seção de curiosidades */
.curiosidades-section {
  padding: 60px 0;
  background: #f5f7fb;
}

.curiosidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.curiosidade-card {
  background: #ffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-left: 5px solid #0051a3;
  transform: translateY(20px);
  opacity: 0;
  animation: curiosidadeIn 0.8s ease forwards;
}

.curiosidade-card:nth-child(2) {
  animation-delay: 0.2s;
}

.curiosidade-card:nth-child(3) {
  animation-delay: 0.4s;
}

.curiosidade-card h3 {
  margin-bottom: 8px;
  color: #0051a3;
}

.curiosidade-card p {
  margin: 6px 0;
  color: #333;
}

.curiosidade-fecho {
  margin-top: 10px;
  font-weight: 600;
  color: #111827;
}

@keyframes curiosidadeIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==== */
/*  SEÇÃO "VOCÊ SABIA?"    */
/* ==== */
.voce-sabia-section {
  padding: 50px 0;
  background: #f5f7fb;
}

.voce-sabia-card {
  max-width: 960px;
  margin: 0 auto;
  background: #ffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(45, 189, 229, 0.15);
  padding: 26px 32px;
  border-left: 6px solid #2DBDE5;

  /* Animação de entrada */
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.voce-sabia-card.from-right {
  transform: translateX(80px);
}

.voce-sabia-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.voce-sabia-text {
  flex: 1;
}

.voce-sabia-heading {
  font-size: 26px;
  font-weight: 900;
  color: #0b2141;
  margin-bottom: 6px;
}

.voce-sabia-body {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
}

.voce-sabia-fecho {
  font-size: 15px;
  font-weight: 600;
  color: #2DBDE5;
  margin: 0;
}

/* Espaçamento extra antes/after em relação à seção seguinte */
.voce-sabia-section + .materials-section {
  padding-top: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .voce-sabia-card {
    padding: 20px 18px;
    border-left-width: 4px;
  }

  .voce-sabia-heading {
    font-size: 22px;
  }

  .voce-sabia-body,
  .voce-sabia-fecho {
    font-size: 14px;
  }
}

/* ==== */
/*  SEÇÃO NOSSOS CLIENTES    */
/* ==== */

.clients-section {
  padding: 0;
  background: #f8f8f8;
}

.clients-section .container {
  max-width: 100%;
  padding: 0;
}

.clients-section .section-header {
  text-align: center;
  padding: 60px 20px 40px 20px;
  background: #f8f8f8;
}

.clients-section .section-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.clients-section .section-subtitle {
  font-size: 1rem;
  color: #777;
}

/* bloco que contém o mapa - ocupa toda a largura */
.clients-map-hero {
  position: relative;
  width: 100%;
  height: 600px; /* altura fixa, ajuste se quiser mais alto ou mais baixo */
  overflow: hidden;
}

/* fundo com o mapa + logo já dentro da imagem */
.clients-map-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/mapa-cliente.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Ajuste para telas menores: mapa um pouco mais baixo */
@media (max-width: 768px) {
  .clients-map-hero {
    height: 400px;
  }

  .clients-section .section-header {
    padding: 40px 20px 30px 20px;
  }
}

/* ==== OVERRIDE – garantir mapa de ponta a ponta sem borda ==== */

#clients,
.clients-section,
.clients-section .container {
  background: #f8f8f8;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0;
}

/* MAPA DE PONTA A PONTA */
.clients-map-hero {
  position: relative;
  width: 100% !important;
  height: 600px;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
}

/* fundo com o mapa */
.clients-map-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/mapa-cliente.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* MOBILE OVERRIDE */
@media (max-width: 768px) {
  .clients-map-hero {
    height: 400px;
  }
.clients-map-bg {
    background-position: left center !important;
    background-size: cover !important;
  }

  .clients-section .section-header {
    padding: 40px 20px 30px 20px !important;
  }
}

/* ==== LOGOS DOS CLIENTES SOBRE O MAPA (DESKTOP) ==== */

.client-logo {
  position: absolute;
  width: 70px !important;          /* diminui o tamanho do container */
  padding: 0 !important;           /* remove espaço interno */
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.client-logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
}

/* Ajuste individual para logos específicas */
/* Tamanhos para desktop (padrão) */
.client-azul {
  width: 85px !important;
}
.client-azul img {
  max-height: 85px !important;
}

.client-brasilata {
  width: 70px !important;
}
.client-brasilata img {
  max-height: 70px !important;
}

.client-deheus {
  width: 70px !important;
}
.client-deheus img {
  max-height: 70px !important;
}

.client-jw {
  width: 50px !important;
}
.client-jw img {
  max-height: 50px !important;
}

.client-susin {
  width: 70px !important;
}
.client-susin img {
  max-height: 70px !important;
}

.client-sylvamo {
  width: 70px !important;
}
.client-sylvamo img {
  max-height: 70px !important;
}

.client-unilever {
  width: 70px !important;
}
.client-unilever img {
  max-height: 70px !important;
}

.client-ype {
  width: 80px !important;
}
.client-ype img {
  max-height: 80px !important;
}

/* Tamanhos para mobile (max-width: 768px) */
@media (max-width: 768px) {
  .client-azul {
    width: 70px !important;
  }
  .client-azul img {
    max-height: 70px !important;
  }

  .client-brasilata {
    width: 50px !important;
  }
  .client-brasilata img {
    max-height: 50px !important;
  }

  .client-deheus {
    width: 50px !important;
  }
  .client-deheus img {
    max-height: 50px !important;
  }

  .client-jw {
    width: 40px !important;
  }
  .client-jw img {
    max-height: 40px !important;
  }

  .client-susin {
    width: 50px !important;
  }
  .client-susin img {
    max-height: 50px !important;
  }

  .client-sylvamo {
    width: 50px !important;
  }
  .client-sylvamo img {
    max-height: 50px !important;
  }

  .client-unilever {
    width: 50px !important;
  }
  .client-unilever img {
    max-height: 50px !important;
  }

  .client-ype {
    width: 70px !important;
  }
  .client-ype img {
    max-height: 70px !important;
  }
}

/* POSIÇÕES BASE – TELA GRANDE (aprox. proporção do Brasil no mapa) */

/* Azul – Norte/Nordeste */
.client-azul {
  left: 24%;
  top: 49%;
}

/* Brasilata – Sudeste */
.client-brasilata {
  left: 09%;
  top: 24%;
}

/* De Heus – Centro-Oeste */
.client-deheus {
  left: 17%;
  top: 43%;
}

/* JW – mais abaixo, afastado da MRubber */
.client-jw {
  left: 22%;
  top: 58%;
}

/* Susin – Sul */
.client-susin {
  left: 16%;
  top: 29%;
}

/* Sylvamo – Sudeste mais embaixo */
.client-sylvamo {
  left: 18%;
  top: 70%;
}

/* Unilever – litoral Sudeste um pouco para esquerda */
.client-unilever {
  left: 05%;
  top: 32%;
}

/* Ypê – Sudeste mais acima */
.client-ype {
  left: 26%;
  top: 33%;
}

/* ==== LOGOS DOS CLIENTES – MOBILE (<= 768px) ==== */

@media (max-width: 768px) {
  .client-logo {
    width: 60px;
    padding: 4px 6px;
  }

  /* Posições ajustadas para o enquadramento do mapa no mobile */
  .client-azul {
    left: 38%;
    top: 50%;
  }
  .client-brasilata {
    left: 14%;
    top: 25%;
  }
  .client-deheus {
    left: 25%;
    top: 49%;
  }
  .client-jw {
    left: 42%;
    top: 35%;
  }
  .client-susin {
    left: 23%;
    top: 31%;
  }
  .client-sylvamo {
    left: 27%;
    top: 69%;
  }
  .client-unilever {
    left: 08%;
    top: 30%;
  }
  .client-ype {
    left: 32%;
    top: 54%;
  }
}