/* Hero Paleta Clara - Ajustada para identidade visual AkiTemFibra */
.hero-akitemfibra.light{
  background: #ffffff;
  padding: 4rem 1rem;
}
.hero-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-text h1{
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  line-height: 1.2;
}
.hero-text h1 span{
  color: #c40000; /* Vermelho principal */
}
.hero-text p{
  color: #555;
  margin: 1rem 0;
  font-size: 1.1rem;
  max-width: 500px;
}
.hero-buttons{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.btn-primary{
  background: linear-gradient(90deg, #c40000, #ff4d4d);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(196,0,0,0.3);
  transition: all 0.3s ease;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(196,0,0,0.35);
}
.btn-secondary{
  background: transparent;
  border: 2px solid #c40000;
  color: #c40000;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-secondary:hover{
  background: #c40000;
  color: #fff;
}
.hero-image img{
  max-width: 280px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
@media(max-width: 768px){
  .hero-container{
    flex-direction: column;
    text-align: center;
  }
  .hero-image img{
    max-width: 200px;
  }
}




