* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #070b3a;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* MENU */
.header {
  background: #02052b;
  padding: 15px 0;
}
.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.menu a {
  color: #fff;
  text-decoration: none;
}

/* HERO */
.hero {
  text-align: center;
  padding: 70px 0;
}
.hero-logo {
  max-width: 3020px;   /* LOGO MAIOR */
  width: 100%;
  margin-bottom: 30px;
}

/* PLANOS */
.planos {
  padding: 60px 0;
  text-align: center;
}
.planos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.plano {
  width: 250px;
  border: 2px solid #fff;
}
.plano-topo {
  padding: 20px;
}
.numero {
  font-size: 60px;
  font-weight: bold;
}
.texto {
  font-size: 22px;
}
.plano-preco {
  background: #222;
  padding: 10px;
}
.plano ul {
  list-style: none;
  padding: 20px;
}
.verde { background: #4b8f29; }
.vermelho { background: #c40000; }
.laranja { background: #ff7a00; }
.vinho { background: #8b0037; }

/* QUEM SOMOS */
.quem-somos {
  background: #02052b;
  padding: 60px 0;
}

/* FALE CONOSCO */
.contato {
  background: #fff;
  color: #000;
  padding: 60px 0;
}
.contato-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.form-contato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-contato input,
.form-contato textarea,
.form-contato button {
  width: 100%;
  padding: 10px;
}
.form-contato button {
  background: #1a73e8;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* WHATSAPP */
.whatsapp-box {
  background: #2e3136;
  color: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
}
.whatsapp-box img {
  width: 70px;
  margin-bottom: 15px;
}
.whatsapp-box a {
  color: #25d366;
  font-weight: bold;
  text-decoration: none;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 50px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.footer h4 {
  margin-bottom: 10px;
}
.footer p {
  font-size: 14px;
  margin-bottom: 5px;
}
.copy {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  color: #000;
  padding: 30px;
  width: 100%;
  max-width: 400px;
}
.modal-content input,
.modal-content button {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
}
.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

/* COBERTURA */
.cobertura {
  background: #02052b;
  padding: 60px 0;
}

.cobertura-bloco {
  margin-bottom: 50px;
}

.cobertura-bloco h2 {
  margin-bottom: 10px;
}

.cobertura-bloco p {
  margin-bottom: 25px;
  max-width: 700px;
  line-height: 1.6;
}

/* GRID DE CIDADES */
.cobertura-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* CARDS */
.cobertura-card {
  background: #070b3a;
  border: 2px solid #ffffff;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
}

/* DESTAQUE */
.cobertura-card.destaque {
  max-width: 300px;
  background: #4b8f29;
  border-color: #4b8f29;
}
