/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #f48835;
  --primary-dark: #e07a2b;
  --secondary: #0b2034;
  --secondary-light: #163556;
  --dark: #0a1929;
  --darker: #091221;
  --light: #f0f6fc;
  --gray: #a8b3cf;
  --gray-dark: #6b7280;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

h2 span {
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: var(--gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

p {
  margin-bottom: 15px;
  font-weight: 300;
}

/* Botões */
.btn-primary, .btn-secondary, .btn-small, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--secondary);
}

.btn-primary:hover {
  background-color: #ff9a52;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(244, 136, 53, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(244, 136, 53, 0.1);
}

.center-button {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--light);
  background: linear-gradient(135deg, var(--light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--gray);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244, 136, 53, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(244, 136, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 136, 53, 0); }
}

/* Marcas */
.marcas {
  background: var(--darker);
  padding: 60px 0;
}

.marcas-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.marca-item {
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.marca-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.marca-item img {
  height: 60px;
  width: auto;
}

/* Destaques */
.destaques {
  background-color: var(--secondary);
}

.destaques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.destaque-card {
  background: linear-gradient(145deg, var(--secondary-light), var(--secondary));
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.destaque-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.destaque-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.destaque-icon {
  width: 80px;
  height: 80px;
  background: rgba(244, 136, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.destaque-card:hover .destaque-icon {
  transform: scale(1.1);
}

.destaque-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--light);
}

.destaque-card p {
  color: var(--gray);
}

/* Estatísticas */
.estatisticas {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  padding: 80px 0;
}

.estatisticas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.estatistica-item {
  padding: 20px;
}

.estatistica-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.estatistica-label {
  font-size: 1.1rem;
  color: var(--light);
  font-weight: 500;
}

/* Produtos */
.produtos {
  background-color: var(--dark);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.produto-card {
  background: linear-gradient(145deg, var(--secondary-light), var(--secondary));
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.produto-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--secondary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.produto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.produto-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.produto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.produto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 32, 52, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.produto-card:hover .produto-overlay {
  opacity: 1;
}

.produto-card:hover .produto-image img {
  transform: scale(1.1);
}

.btn-overlay {
  padding: 10px 20px;
  background: var(--primary);
  color: var(--secondary);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-overlay:hover {
  transform: scale(1.05);
}

.produto-content {
  padding: 25px;
}

.produto-content h3 {
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 15px;
}

.produto-descricao {
  height: 80px;
  overflow-y: auto;
  margin-bottom: 15px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.produto-descricao::-webkit-scrollbar {
  width: 4px;
}

.produto-descricao::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.produto-descricao p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.produto-preco {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.produto-actions {
  display: flex;
  gap: 10px;
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.no-products i {
  font-size: 4rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.no-products p {
  font-size: 1.2rem;
  color: var(--gray);
}

/* Aplicações */
.aplicacoes {
  background-color: var(--secondary);
}

.aplicacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.aplicacao-card {
  background: linear-gradient(145deg, var(--secondary-light), var(--secondary));
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.aplicacao-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.aplicacao-icon {
  width: 80px;
  height: 80px;
  background: rgba(244, 136, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
}

.aplicacao-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--light);
}

.aplicacao-card p {
  color: var(--gray);
}

/* Serviços */
.servicos {
  background-color: var(--dark);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.servico-card {
  background: linear-gradient(145deg, var(--secondary-light), var(--secondary));
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.servico-icon {
  width: 80px;
  height: 80px;
  background: rgba(244, 136, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
}

.servico-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--light);
  text-align: center;
}

.servico-card p {
  color: var(--gray);
  margin-bottom: 20px;
  text-align: center;
}

.servico-card ul {
  list-style: none;
  text-align: left;
}

.servico-card ul li {
  color: var(--gray);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.servico-card ul li::before {
  content: '✓';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Depoimentos */
.depoimentos {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  padding: 80px 0;
}

.depoimentos-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.depoimento-card {
  background: linear-gradient(145deg, var(--secondary-light), var(--secondary));
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.depoimento-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.depoimento-avatar {
  width: 60px;
  height: 60px;
  background: rgba(244, 136, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 15px;
}

.depoimento-info h4 {
  margin-bottom: 5px;
  color: var(--light);
}

.depoimento-info span {
  color: var(--primary);
  font-size: 0.9rem;
}

.depoimento-texto {
  margin-bottom: 20px;
}

.depoimento-texto p {
  color: var(--gray);
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.depoimento-texto p::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  left: -10px;
  top: -15px;
  opacity: 0.3;
}

.depoimento-data {
  color: var(--gray-dark);
  font-size: 0.9rem;
  text-align: right;
}

/* CTA */
.cta {
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(244,136,53,0.05)"/></svg>');
  background-size: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--light);
}

.cta-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--gray);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background-color: var(--darker);
  padding: 70px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-section h3 {
  color: var(--light);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-logo {
  height: 70px;
  margin-bottom: 20px;
}

.footer-section p {
  color: var(--gray);
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.footer-section i {
  margin-right: 10px;
  color: var(--primary);
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--secondary);
  padding-top: 20px;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .estatistica-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .destaques-grid,
  .produtos-grid,
  .servicos-grid,
  .aplicacoes-grid,
  .depoimentos-slider {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .marcas-grid {
    gap: 30px;
  }
  
  .marca-item img {
    height: 40px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .estatisticas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .estatistica-number {
    font-size: 2rem;
  }
  
  .produto-actions {
    flex-direction: column;
  }
}
/* 1. Garantir que nenhum elemento ultrapasse a largura da viewport */
body,
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* 2. Correção específica para o menu de navegação (que aparece na imagem) */
.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  width: 100%;
  box-sizing: border-box;
}

.header-nav a {
  white-space: nowrap;
  padding: 8px 15px;
}