/* === Reset e Fonte === */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* === Cabeçalho === */
header {
  background-color: #0077cc;
  padding: 20px;
}

.logo {
  height: 50px;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.menu-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.menu-link:hover {
  color: #cceeff;
}

.menu-link:hover::after {
  width: 100%;
}

.menu-icon {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

/* === Hero Section === */
.hero {
  background: linear-gradient(to right, #0077cc, #00c3ff);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero button {
  background-color: white;
  color: #0077cc;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hero button:hover {
  background-color: #cceeff;
}

/* === Banner Visual === */
.banner-visual {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url('images/banner-inove.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 8px;
  animation: fadeIn 1s ease-in;
}

.banner-overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.banner-overlay p {
  font-size: 18px;
}

/* === Seções Gerais === */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0077cc;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
}

/* === Imagens de Seção === */
.section-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
  border-radius: 8px;
}

/* === Cards de Serviços e Benefícios === */
.services, .benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #0077cc;
  margin-bottom: 10px;
}

/* === Contato === */
#contato {
  background-color: #eaf6ff;
}

#contato p {
  font-size: 16px;
}

#contato iframe {
  border-radius: 8px;
}

/* === Rodapé === */
footer {
  background-color: #0077cc;
  color: white;
  text-align: center;
  padding: 20px;
}

/* === Animações === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Responsivo === */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #0077cc;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    max-height: 300px;
  }

  .menu-icon {
    display: block;
  }
}
