/* Reset básico e estilos */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #101010;
    padding: 20px;
    position: relative;
  }
  
  .logo {
    max-width: 200px; /* Ajuste conforme necessário */
  }
  
  .access-button {
    position: absolute;
    right: 20px;
    background: #e67e22;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s ease;
  }
  
  .access-button:hover {
    background: #d35400;
  }
  .hero {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}
.hero h1 {
  margin-bottom: 20px;
  font-size: 2.5em;
}
.hero p {
  margin-bottom: 30px;
  font-size: 1.2em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-button {
  background: #e67e22;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #d35400;
}
.features {
  padding: 40px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item h2 {
  color: #e67e22;
  margin-bottom: 10px;
}
.images-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
}
.partner {
  text-align: center;
  padding: 10px;
  background: #f1f1f1;
  font-size: 1.2em;
  color: #555;
}
.images-section img {
  border-radius: 10px;
  max-width: 300px;  /* Limita a largura máxima */
  height: auto;      /* Mantém a proporção original */
  flex-shrink: 0;    /* Evita que o flexbox force o encolhimento */
  display: block;
}
.antena {
  width: 300px;
  height: 92px;
  object-fit: contain;
}
footer {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .feature-item {
    flex: 0 0 45%;
  }
}
