* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.container { max-width: 1000px; margin: 0 auto; }

.cabecalho {
  display: flex; justify-content: center; align-items: center;
  padding: 20px; gap: 20px; background-color: #fff;
}

.logo-global { height: 65px; }
.logo-amil   { height: 35px; }

.hero {
  display: flex; flex-wrap: wrap; padding: 60px 20px 40px;
  background-color: #e6f2f7; justify-content: center; gap: 40px;
}

.coluna-esquerda, .coluna-direita { flex: 1 1 300px; max-width: 500px; }
.coluna-esquerda h1 { font-size: 28px; margin-bottom: 30px; }
.coluna-esquerda img { width: 100%; border-radius: 8px; }

.descricao-formulario { margin-bottom: 20px; font-weight: bold; }

.form-box {
  background: #fff; padding: 20px; border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05); text-align: center;
}

.form { display: flex; flex-direction: column; gap: 12px; }
.form-group { display: grid !important; gap: 6px; text-align: left; }
.form-group label { font-weight: 600; color: #2c3e50; }

form input, form button {
  padding: 12px; border: 1px solid #ccc; border-radius: 5px;
}

form button {
  background-color: #1f1ccd; /* Amil */
  color: #fff; border: none; cursor: pointer; font-weight: bold;
  transition: background-color 0.3s;
}
form button:hover { background-color: #1412a1; }

.plantao {
  padding: 40px 20px; background-color: #1260ff;
  text-align: center; color: #fff;
}
.plantao h2 { font-size: 22px; margin-bottom: 20px; }

.plantao-grid {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}

footer { background-color: #fff; padding: 30px 20px; color: #333; }

.rodape-conteudo {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 30px; margin-bottom: 20px;
}
.rodape-conteudo img { margin-bottom: 10px; }
.rodape-conteudo h3 { padding-bottom: 20px; }
.rodape-conteudo p { margin-bottom: 10px; }

.rodape-final {
  border-top: 1px solid #ccc; padding-top: 20px; font-size: 12px; text-align: center;
}

.whatsapp-float {
  position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
  background-color: #25d366; color: #fff; border-radius: 50%;
  font-size: 30px; z-index: 1000; display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3); text-decoration: none;
}
.whatsapp-float:hover { background-color: #128c7e; }

.hero-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 120px; }

.botao-whatsapp {
  display: inline-block; margin-top: 15px; padding: 12px 20px;
  background-color: #25d366; color: #fff; text-decoration: none;
  border-radius: 5px; font-weight: bold; font-size: 16px;
}
.botao-whatsapp i { margin-right: 8px; }
.botao-whatsapp:hover { background-color: #128c7e; }

.alternativa-zap { margin-top: 15px; font-size: 14px; color: #333; text-align: center; width: 100%; }

.plantao-box {
  background-color: #ffffff44; padding: 15px; border-radius: 10px;
  color: #fff; min-width: 220px;
}
.plantao-box a { color: #fff; text-decoration: none; }
.plantao-box a:hover { text-decoration: underline; }

/* Media query única */
@media (max-width: 768px) {
  .hero { flex-direction: column; align-items: center; padding: 20px; }
  .hero-container { gap: 20px; }
  .rodape-conteudo { flex-direction: column; align-items: center; text-align: center; gap: 15px; margin-bottom: 10px; }
  .rodape-conteudo p { margin-bottom: 8px; }
  .rodape-final { padding: 10px; font-size: 11px; }
}