/* Usa variáveis do style.css para padronizar cores e fontes */

/* Fundo com blur e escurecedor */
.fundo-completo {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
}

.fundo-completo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../IMAGENS/WALLPAPER.webp") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: -1;
}

.fundo-completo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29, 116, 150, 0);
  z-index: 0;
}

/* Logo */
.logo {
  display: block;
  margin: 20px auto 40px auto;
  width: 160px;
  filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.3));
}

/* Menu patinha */
.menu-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
  cursor: pointer;
}

.menu-btn img {
  width: 55px;
  height: 55px;
  filter: drop-shadow(3px 3px 1px rgba(250, 249, 249, 0.4));
  transition: transform 0.2s ease;
}

.menu-btn img:hover {
  transform: scale(1.1);
}

/* Submenu */
.submenu {
  position: absolute;
  top: 80px;
  right: 20px;
  background: rgba(16, 114, 170, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 15px 20px;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(248, 246, 246, 0.3);
  text-align: right;
}

.submenu.mostrar {
  display: block;
}

.submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu li {
  margin-bottom: 10px;
}

.submenu a {
  color: var(--branco);
  font-weight: bold;
  text-decoration: none;
  font-family: var(--fonte-seria);
  font-size: 16px;
}

/* Conteúdo Principal */
.contato-container {
  max-width: 700px;
  margin: 20px auto 60px auto;
  padding: 20px;
  background: rgba(5, 48, 99, 0.137);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  text-align: center;
  font-family: var(--fonte-padrao);
}

.formulario-contato h2 {
  font-size: 4em;
  color: var(--amarelo);
  margin-bottom: 20px;
  font-family: var(--fonte-destaque);
  text-shadow: 1px 1px 3px #000;
}

.formulario-contato form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.formulario-contato input,
.formulario-contato textarea {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #ffffffcc;
  font-size: 1em;
  resize: none;
}

.formulario-contato button {
  padding: 12px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1em;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.formulario-contato button:hover {
  background: #1da851;
}

.redes-mapa {
  margin-top: 40px;
}

.redes-mapa h3 {
  color: var(--branco);
  font-family: var(--fonte-divertida);
  margin-bottom: 10px;
  font-size: 1em;
}

.icones-sociais a {
  font-size: 2em;
  margin: 0 10px;
  color: var(--branco);
  transition: transform 0.3s, color 0.3s;
}

.icones-sociais a:hover {
  transform: scale(1.2);
  color: var(--amarelo);
}

@media (max-width: 480px) {
  .contato-container {
    margin: 10px;
    padding: 15px;
  }

  .formulario-contato h2 {
    font-size: clamp(2.7em, 5vw, 3em);
  }

  .formulario-contato button {
    font-size: 1em;
  }
}

/* RODAPÉ */
footer {
  text-align: center;
  font-size: 14px;
  color: var(--branco);
  line-height: 1.4;
  background: transparent;
  padding: 20px 10px;
}

footer p {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 6px;
}

/*  RESPONSIVO RODAPÉ*/
@media (max-width: 480px) {
  footer {
    font-size: 12px;
    line-height: 1.3;
  }
}