/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
  }
  
 

    /* Estilo da Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:  #909c9c; /* Gradiente azul */
  color: white;
  padding: 50px 20px;
}

.hero-content {
  max-width: 50%; /* Limita a largura do texto */
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  background-color: #0caaf3; /* Botão branco */
  color: #000; /* Texto azul */
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #003d80; /* Azul escuro no hover */
  color: white; /* Texto branco */
}

.hero-image {
  max-width: 40%;
}

.hero-image img {
  width: 100%; /* Garante que a imagem seja responsiva */
  border-radius: 10px; /* Cantos arredondados */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

/* Responsividade */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-image {
    max-width: 100%;
  }
}
  
/* Estilo da DIV solucions */
.solutions {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .solutions-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .solution-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
  }
  
  .solution-card h3 {
    font-size: 1.5rem;
    color: #0090d3;
    margin-bottom: 10px;
  }
  
  .solution-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .cta-button-2 {
    background-color: #0090d3;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #003d80;
  }

 
  