* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

}

body {
  background: #0f3d3e;
  color: white;
}

/* ================= TOPO ================= */

.topo {
  background: #0B2E3C; /* azul petróleo */
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Linha dos logos */
.topo-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}

.logo-urban {
  height: 75px;
}

.logo-caixa {
  height: 75px;
}

/* Logo Urban */
.logo-urban {
  height: 75px;
}

/* Área Caixa */
.caixa-area {
  text-align: right;
}

.caixa-area img {
  height: 60px;
  display: block;
  margin-left: auto;
}

.caixa-area span {
  font-size: 12px;
  color: white;
  margin-top: 5px;
  display: block;
}

/* Menu principal */
.menu-principal {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 15px 0;
  border-bottom: 3px solid white; /* linha separadora forte */
}

.menu-principal a {
  color: white;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

  letter-spacing: 0.5px;
  transition: 0.3s;
}

.menu-principal a:hover {
  opacity: 0.7;
}

/* Remove sublinhado geral */
a {
  text-decoration: none;
}

/* ================= BANNER ================= */

.banner {
  background: linear-gradient(135deg, #0B2E3C, #123F52);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.banner h1 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
}

}

.banner p {
  font-size: 16px;
}

/* ================= CARDS ================= */

.cards {
  display: flex;
  gap: 25px;
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  justify-content: center;
}

.card {
  background: white;
  color: #0B2E3C;
  border-radius: 10px;
  overflow: hidden;
  width: 280px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.card h2 {
  padding: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

}

/* ================= RODAPÉ ================= */

footer {
  text-align: center;
  padding: 20px;
  background: #092d2e;
  font-size: 14px;
}
/* CONTATO PREMIUM */

.contato-premium {
  padding: 80px 20px;
  text-align: center;
  background: #f4f6f9;
}

.contato-premium h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contato-premium p {
  margin-bottom: 50px;
  color: #555;
}

.contato-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contato-item {
  background: white;
  padding: 30px;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contato-item h3 {
  margin-bottom: 15px;
}

.contato-item a {
  text-decoration: none;
  font-weight: 500;
  color: #003366;
}

.contato-item.whatsapp a {
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-block;
}

/* FUNDO AZUL INSTITUCIONAL */

.contato-premium {
  background: #0f2e4d; /* azul petróleo */
  padding: 80px 20px;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.contato-premium h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contato-premium p {
  margin-bottom: 40px;
  opacity: 0.9;
}

/* FORMULÁRIO */

.contato-container {
  display: flex;
  justify-content: center;
}

.form-contato {
  background: white;
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  animation: fadeUp 0.8s ease forwards;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

.form-contato button {
  background: #0f2e4d;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.form-contato button:hover {
  background: #123c63;
}

/* ANIMAÇÃO */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WHATSAPP FLUTUANTE */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

