/* ==============================
   BASE E ESTRUTURA
============================== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #0b1736;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ==============================
   SEÇÃO PRINCIPAL
============================== */
.manutencao {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.conteudo {
  max-width: 650px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  box-sizing: border-box;
}

.logo {
  width: 185px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

h1 {
  font-size: 1.8rem;
  color: #00b4ff;
}

h2 {
  margin-top: 35px;
  color: #00b4ff;
}

p {
  line-height: 1.6;
}

.curioso {
  font-style: italic;
  margin: 20px 0;
  color: #b3c7e6;
}

/* ==============================
   CONTADOR
============================== */
#countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

#countdown div {
  background: #132049;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 180, 255, 0.3);
  min-width: 80px;
}

#countdown span {
  font-size: 1.6rem;
  display: block;
  font-weight: bold;
  color: #00b4ff;
}

#countdown small {
  font-size: 0.8rem;
  color: #b3c7e6;
}

/* ==============================
   FORMULÁRIO
============================== */
.formulario {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.formulario input,
.formulario textarea {
  background: #132049;
  border: 1px solid #1e3a8a;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
}

.formulario textarea {
  height: 100px;
  resize: none;
}

.formulario button {
  background: #00b4ff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.formulario button:hover {
  background: #0088cc;
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: #081024;
  text-align: center;
  padding: 25px 10px;
}

.footer .social a {
  margin: 0 10px;
  display: inline-block;
  transition: 0.3s;
}

.footer .social a:hover {
  transform: scale(1.1);
}

.footer img {
  width: 28px;
  filter: brightness(0) invert(1);
}

.link-footer {
  color: #00b4ff;
  text-decoration: none;
}

.link-footer:hover {
  text-decoration: underline;
}

/* ==============================
   LOCALIZAÇÃO E MAPA
============================== */
.localizacao {
  text-align: center;
  padding: 60px 20px;
  background: #37526d;
  border-radius: 20px;
  margin-top: 40px;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* ==============================
   RESPONSIVIDADE
============================== */

/* Tablets e telas médias */
@media (max-width: 992px) {
  .conteudo {
    padding: 35px 25px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .logo {
    width: 160px;
  }
}

/* Smartphones */
@media (max-width: 600px) {
  .manutencao {
    padding: 40px 15px;
  }

  .conteudo {
    padding: 25px 20px;
    border-radius: 12px;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.1rem;
    margin-top: 25px;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  #countdown {
    gap: 10px;
  }

  #countdown div {
    padding: 10px 12px;
    min-width: 65px;
  }

  #countdown span {
    font-size: 1.3rem;
  }

  .formulario button {
    font-size: 0.95rem;
    padding: 10px;
  }

  .logo {
    width: 140px;
  }

  .localizacao {
    padding: 40px 15px;
  }

  .map-container {
    width: 100%;
    border-radius: 8px;
  }

  .footer {
    padding: 20px 5px;
  }

  .footer img {
    width: 24px;
  }
}
