:root {
    --primary-color: #1A365D;
    --secondary-color: #D4AF37;
    --accent-color: #5A3921;
    --dark-gray: #2D2D2D;
    --light-gray: #F8F9FA;
    --transition: all 0.3s ease;
    --title-color: #fff; /* para seção "Nossos Números", título em branco */
    --default-title-color: var(--primary-color); /* para as demais seções */
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }

  html, body {
    overflow-x: hidden;
  }
  
  body {
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
  }
  /* Espaçamento geral entre seções */
  section {
    scroll-margin-top: 120px;
    padding: 2rem 0;
  }
  /* Navbar */
  header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(45,45,45,0.1);
    padding: 1.5rem 0;
    transition: var(--transition);
  }
  header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 0;
  }
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .logo img {
    max-width: 220px;
    height: auto;
    transition: var(--transition);
  }
  header.scrolled .logo img {
    max-width: 150px;
  }
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
  }
  .nav-links a:hover {
    color: var(--primary-color);
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--secondary-color);
    transition: var(--transition);
  }
  .nav-links a:hover::after {
    width: 100%;
  }
  /* Menu Mobile */
  /* Menu Mobile */
.menu-toggle {
  background: none;
  border: none;
  color: var(--dark-gray);
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
  transition: transform 0.3s ease; /* Adicione se quiser animar o botão */
}
.menu-toggle.active {
  transform: rotate(90deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(45,45,45,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mantenha o restante do seu CSS original */
.mobile-nav ul {
  list-style: none;
  padding: 1rem;
  margin: 0;
}

.mobile-nav ul li {
  margin-bottom: 1rem;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
}

.mobile-nav a:hover {
  color: var(--primary-color);
}
.mobile-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  margin-top: 22px;
  left: 0;
  background: var(--secondary-color);
  transition: var(--transition);
}
.mobile-nav a:hover::after {
  width: 25%;
}
  /* Títulos: agora todos em Inter */
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--default-title-color);
    text-align: center;
    position: relative;
    z-index: 100;
  }
  .section-title::after {
    content: '◈';
    color: var(--secondary-color);
    position: absolute;
    padding: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
  }
  /* Para a seção "Nossos Números", título em branco */
  .counters-section .section-title {
    color: var(--title-color);
  }
  /* Hero Section */
  .hero {
    padding: 160px 2rem 100px;
    background: linear-gradient(45deg, rgba(26,54,93,0.9), rgba(26,54,93,0.95)),
      url('./images/background-impressora.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  .cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 1rem;
  }
  .cta-button:hover {
    transform: translateY(-3px);
  }

  /* Estilos Gerais */
  .services-section {
	height: 900px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .services-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
  }

  .services-content-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .service-body{
    padding: 2rem;
  }
  .services-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .service-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .service-header {
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .service-header:hover {
    background: #12243d;
  }
  
  .service-header.active .toggle-icon {
    transform: rotate(180deg);
  }
  
  .toggle-icon {
    transition: transform 0.3s ease;
  }
  
  .service-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .service-image-container {
    position: sticky;
    top: 120px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
  }
  
  .service-image-container.active {
    opacity: 1;
    transform: translateX(0);
  }

  .auto-play-active .service-header {
    pointer-events: none; /* Desabilita cliques durante auto-play */
  }
  
  .auto-play-active .service-header.active {
    pointer-events: auto; /* Permite clicar no item ativo */
  }

  .service-item.paused {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .auto-play-paused .service-image-container {
    filter: brightness(1.1);
    transform: translateX(0) scale(1.02);
  }
  
  .whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
  }
  
  .whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
  }
  /* História */
  .history-section {
    position: relative;
    background-color: var(--light-gray);/* Substitua pelo caminho da imagem de fundo antiga */
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    height: auto;
  }
  /* =========================================
   NOVA SEÇÃO QUEM SOMOS
   ========================================= */

.quem-somos-section {
  background-color: var(--light-gray); /* Fundo levemente cinza */
  padding: 6rem 2rem;
  text-align: center; /* Centraliza tudo */
}

/* O container do texto */
.quem-somos-content {
  max-width: 900px; /* Largura máxima para não ficar muito esticado em telas grandes */
  margin: 0 auto;   /* Centraliza o bloco na tela */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;      /* Espaço entre os parágrafos */
}

/* Estilo dos parágrafos */
.quem-somos-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin: 0;
}

/* Destaque em negrito (Azul da marca) */
.quem-somos-content strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Caixa de destaque da Missão */
.missao-box {
  margin-top: 2rem;
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra suave */
  border-left: 5px solid var(--secondary-color); /* Linha dourada na esquerda */
  position: relative;
}
  
   /* Conteúdo em duas colunas */
  .history-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 2rem;
  }
  .history-text {
    flex: 1;
    color: var(--dark-gray);
    padding-right: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 65rem;
  }
  .history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .history-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .history-image {
    flex: 1;
    text-align: right;
  }
  .history-image img {
    max-width: 100%;
    border-radius: 8px; /* Opcional, remova se não desejar */
  }
  /* Depoimentos */
  .testimonials-section {
    background: #fff;
    padding: 4rem 0;
  }
  .testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  /* Estilos do Swiper */
  .swiper-container.swiper-testimonials {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .swiper-slide {
    background: transparent;
    width: 300px; /* Largura do card */
    height: 350px; /* Altura do card */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .testimonial-card {
    background: #F8F9FA;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* Inicialmente um pouco opaco para os slides em segundo plano */
    opacity: 0.7;
  }
  .swiper-slide-active .testimonial-card {
    opacity: 1;
    transform: scale(1.05);
  }
  .testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
  }
  .testimonial-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1A365D;
  }
  .testimonial-card span {
    font-size: 0.9rem;
    color: #666;
  }
  /* Ajustes para a paginação */
  .swiper-pagination-bullet {
    background: #D4AF37;
  }
  
  /* Números */
  .counters-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    text-align: center;
    color: #fff;
  }
  .counters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .counter {
    flex: 1 1 200px;
  }
  .counter h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
    animation: colorPulse 2s infinite;
  }
  .counter p {
    font-size: 1rem;
    color: #fff;
  }
  @keyframes colorPulse {
    0% { color: #fff; }
    50% { color: var(--secondary-color); }
    100% { color: #fff; }
  }
  /* Seção Unificada: Economia e Diferenciais */
  .economia-section {
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    padding: 4rem 2rem;
    position: relative;
  }
  .eco-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
  }
  .card {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px; /* Ajuste conforme desejar */
    padding: 2rem;
    text-align: left;
    margin: 1rem;
  }

  .card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #333;
  }

  .pros-list, .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pros-list li, .cons-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #555;
  }

  .icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
    text-align: center;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .check-icon {
    background: #e3fcef;
    color: #28a745; /* Verde */
  }

  .x-icon {
    background: #fde8e8;
    color: #dc3545; /* Vermelho */
  }

  /* Card de Prós (exemplo de cor de destaque) */
  .do-card {
    border-left: 6px solid #28a745;
  }

  /* Card de Contras (exemplo de cor de destaque) */
  .dont-card {
    border-left: 6px solid #dc3545;
  }

  /* Calculadora: pequena, posicionada no canto (em telas grandes) */
  .eco-calculator {
    flex: 1 1 300px;
    background: #ffffff;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 25%;
  }
  .eco-calculator .calc-heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
  }
  .calc-widget label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .calc-widget input {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .calc-widget button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
  }
  .calc-widget button:hover {
    transform: translateY(-3px);
  }
  .calc-result {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
  }
  .calc-note {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    text-align: center;
    color: #555;
  }
  /* Benefícios */
  .eco-benefits {
    flex: 2 1 600px;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .eco-benefits .benefits-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
  }
  .benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .benefit-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
  }

  .benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/*parceiros*/
/* Ajuste as cores e gradientes conforme sua identidade visual */
.partners-section {
  background: linear-gradient(90deg, rgba(26,54,93,0.8547794117647058) 0%, rgba(26,54,93,1) 48%, rgba(26,54,93,0.85) 100%); /* Exemplo de gradiente laranja */
  padding: 1rem 0;
  color: #fff;
  position: relative;
  width: 100%;
}
.partners-container {
  width: auto;
  margin: 0 auto;
  padding: 0 4rem;
}
.partners-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}
.partners-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 1rem;
  flex-shrink: 0;
  color: #fff;
}
.partners-line {
  flex: 1;
  height: 2px;
  background: #fff;
  position: relative;
}
/* Ícone ou letra no fim da linha (opcional) */
.partners-icon {
  position: absolute;
  right: -1rem;
  top: -0.5rem;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center; /* Centraliza as marcas */
  margin-top: 1rem;
}
.partner-logo {
  /* Força a imagem a ficar em branco (se não for PNG já em branco) */
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
  max-width: 100px; /* Ajuste conforme necessário */
  height: auto;
}
/* Ao passar o mouse ou se quiser um slide ativo, retire o filtro */
.partner-logo:hover {
  filter: none;
}

 /* Carrossel (Swiper) */
 .swiper-container.swiper-partners {
  flex: 1;
  height: 100px;
  justify-content: center;
}
.swiper-partners .swiper-wrapper {
  display: flex;
  align-items: center;
}
.swiper-partners .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  /*margin: 0 5px; /* Gap total de 10px entre slides */
}

/* Logos em branco inicialmente */
.brand-logo {
  max-width: 200px;  /* Ajuste conforme desejar */
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1); /* Exibe em branco */
}

.img#hp.brand-logo{
max-width: 110px;

}

/* Ao passar o mouse ou se quiser exibir cor no slide ativo */
.brand-logo:hover {
  filter: none;
}

/* Slide ativo exibe cor original (opcional) */
.swiper-slide-active .brand-logo {
  filter: none;
}

  /* Contato */
  .contact-section {
    padding: 6rem 2rem;
    background: var(--light-gray);
  }
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .contact-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .form-group {
    margin-bottom: 1.5rem;
  }
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  input, textarea, select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: var(--transition);
  }
  input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color);
    outline: none;
  }
  /* Mapa */
  .map-section {
    padding: 2rem;
    background: var(--light-gray);
  }
  /* Footer */
  footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1rem;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-info,
  .footer-map,
  .footer-social {
    flex: 1 1 300px;
  }
  .footer-info h3,
  .footer-social h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  .footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  .footer-social a {
    margin-right: 1rem;
    color: white;
    transition: var(--transition);
  }
  .footer-social a:hover {
    color: var(--secondary-color);
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 0.8rem;
    margin-top: 1rem;
  }
  /* WhatsApp */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Alinhado à direita */
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    transition: all 0.3s ease;
  }

  /* Efeito hover */
.whatsapp-float:hover {
  background: #128C7E;
  transform: translateX(-10%) scale(1.05);
}

 /* MOBILE OVERRIDES (max-width: 768px) */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    font-size: 14px;
    
  }

  /* Header */
  .nav-container {
    padding: 0 1rem;
  }

   /* Ajuste do header scrolled */
   header.scrolled .mobile-nav.active {
    top: 70px;
  }

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

  header.scrolled .logo img {
    max-width: 120px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    padding: 10px;
    z-index: 1001;
  }
  .menu-toggle span {
    background: var(--dark-gray);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  /* Seções */
  section {
    padding: 4rem 1rem !important; 
    scroll-margin-top: 80px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .section-title::after {
    display: none !important; /* Remove o símbolo ◈ */
  }

  /* Hero Section */
  .hero {
    padding: 120px 1rem 60px;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  /* Serviços */
  .service-card {
    padding: 1.5rem;
    margin: 0 auto;
    width: 100%;
  }

  .services-section {
height: 1100px;
    grid-template-columns: 1fr;
  }
  
  .service-image-container {
    position: relative;
    top: auto;
    height: 300px;
    order: 2;
    margin-top: 2rem;
  }

  .services-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  /* Depoimentos */
  .testimonials-section .container {
    padding: 0 1rem;
  }

  .swiper-container.swiper-testimonials {
  padding-top: 0px;
  }

  .swiper-slide {
    width: 85%;
    height: auto;
    padding: 1rem;
  }

  /* Economia - Novo Layout */
  .eco-container {
    flex-direction: column-reverse;
    padding: 0 1rem;
    gap: 0;
  }
  .economia-section {
    padding: 4rem 0rem 4rem 0rem;
  }
  .card{
    padding: 0.5rem;
    margin-top: 1.2rem;
  }

  .card-title {
    text-align: center;
  }

  .eco-benefits {
    flex-direction: column;
    flex: auto;
    align-items: center;
    padding: 0;
  }

  .benefit-card {
    width: 100% !important;
    max-width: 100%;
    padding: 1.2rem !important;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 2rem;
    box-sizing: border-box;
  }

  .benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .benefit-card p {
    font-size: 0.8rem;
    margin-bottom: 0;
  }

  .eco-calculator {
    width: fit-content;
    max-width: 100%;
    margin-top: 1rem;
    padding: 1.5rem;
    flex: auto;
  }

  /* Contadores - Layout 2x1 */
  .counters-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .counter {
    flex: 1 1 40%;
    margin: 0 5%;
  }

  .counter:last-child {
    grid-column: span 2;
    width: 60%;
    margin: 1rem auto 0;
    text-align: center;
  }

  .counter h3 {
    font-size: 3rem;
  }

  /* Parceiros */
  .partners-section {
    padding: 0.5rem 0;
  }

  .partner-logo {
    max-width: 70px;
  }


  /* Contato */
  .contact-form {
    padding: 2rem 1rem;
    margin: 0 1rem;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-info,
  .footer-map,
  .footer-social {
    flex: 1 1 100%;
  }

  /* WhatsApp */
  .whatsapp-float {
    padding: 12px; /* Circular */
    right: 15px;
    bottom: 15px;
  }
  .texto-whatsapp {
    display: none; /* Esconde o texto */
  }
  
  .whatsapp-float:hover {
    background: #128C7E;
  transform: scale(1.05);
  }

  .whatsapp-float:active {
    transform: scale(0.95);
  }

  /* Menu Hamburguer Animado */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark-gray);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mobile-nav.active {
  top: 100%; /* Ajustado para acompanhar header */
}

.mobile-nav ul li {
  text-align: left;
}

.mobile-nav ul li a {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.mobile-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--secondary-color);
  transition: var(--transition);
}

.mobile-nav ul li a:hover::after {
  width: 100%;
}


/* Counters Section */
.counters-container {
  flex-wrap: wrap;
  gap: 2rem;
}

.counter {
  flex: 1 1 45%;
  margin: 0;
}

.counter:last-child {
  flex-basis: 100%;
  margin-top: 2rem;
}

  .quem-somos-section {
    padding: 4rem 1.5rem;
  }
  
  .quem-somos-content p {
    font-size: 1rem;
    text-align: justify; /* No celular, justificado pode ficar melhor para leitura */
  }
  
  .missao-box {
    padding: 1.5rem;
  }

  /* Ajustes específicos para telas pequenas */
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.8rem;
    }

    .section-title {
      font-size: 2rem;
    }

    .service-card,
    .benefit-card {
      padding: 1rem;
    }

    .eco-calculator {
      padding: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 0.8rem;
    }

    .whatsapp-float {
      font-size: 12px;
      padding: 6px 12px;
    }

    .benefits-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
    }

    .benefit-card {
      font-size: 0.8rem;
      padding: 0.8rem !important;
    }

    .counter {
      flex-basis: 100%;
      margin: 0;
    }

    .counter:last-child {
      flex-basis: 100%;
      margin-top: 1rem;
    }
  }

  /* Garante overflow hidden em elementos específicos */
  .nav-container,
  .hero,
  .services-grid,
  .history-content {
    overflow-x: hidden;
  }

  
}


/* Ajuste para telas muito pequenas */
@media (max-width: 360px) {
  .benefit-card, .counter {
    font-size: 0.8rem;
    padding: 0.8rem !important;
  }
  
  .benefit-card h3 {
    font-size: 0.9rem;
  }
  .counter h3 {
    font-size: 1.8rem !important;
  }

  .swiper-container.swiper-partners {
     height: 80px; /* Altura total da área do carrossel no mobile */
  }

  /* Reduzimos a altura geral para mobile */
  .brand-logo {
    height: 50px !important; /* Força uma altura menor no celular */
    max-width: 80%; /* Garante que não estoure a largura da tela */
  }
  
  /* Ajustes finos para os logos que ficam muito grandes ou pequenos */
  img[alt="Epson"] {
    height: 25px !important; /* Epson menorzinho no mobile */
  }
  
  img[alt="Hp"], img[alt="HP"] {
    height: 40px !important; /* HP num tamanho bom */
    margin-top: 5px;
  }
  
  img[alt="Brother"] {
    height: 35px !important;
  }

  



}

