/* =================================================== */
/* 1. KEYFRAMES (SE AINDA NÃO ESTIVEREM EM OUTRO ARQUIVO) */
/* =================================================== */

@keyframes virDaEsquerda {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes virDaDireita {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =================================================== */
/* 2. ESTILOS BASE (SEU CÓDIGO)                        */
/* =================================================== */

body {
  background-image: url(../img/Fundo\ footer.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 100vh;
}

#contato {
  background-image: none;
}

#main {
  padding-top: 5rem;
}

/* ... SEUS ESTILOS DO FORMULÁRIO (não precisam mudar) ... */

/* NOVA SEÇÃO MAPA + CONTATO */
.footer-mapa-contato {
  max-width: 1200px;
  margin: 3rem auto;
  display: flex;
  gap: 5rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-mapa-contato .mapa {
  flex: 1 1 60%;
  min-width: 320px;
}

.footer-mapa-contato .mapa iframe {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.footer-mapa-contato .info-contato {
  flex: 1 1 40%;
  color: #fff;
  min-width: 260px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-mapa-contato .info-contato h3.footer-subtitle {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.footer-mapa-contato .info-contato p {
  margin: 6px 0 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVIDADE */
@media (max-width: 980px) {
  .footer-mapa-contato {
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
    margin-top: 30px;
  }
  .footer-mapa-contato .mapa iframe {
    height: 260px;
  }
  .footer-mapa-contato .info-contato {
    font-size: 14px;
  }
}

/* =================================================== */
/* 3. LÓGICA DA ANIMAÇÃO (COM SELETORES CORRIGIDOS)    */
/* =================================================== */

/* Define o estado inicial (invisível) dos elementos */
#contato .footer-mapa-contato .mapa,
#contato .footer-mapa-contato .info-contato {
  opacity: 0;
}

/* Ativa as animações quando a seção #contato se torna visível */

/* O mapa entra pela esquerda */
#contato.is-visible .footer-mapa-contato .mapa {
  animation: subirSuave 1s ease-out forwards;
}

/* As informações de contato entram pela direita, com um pequeno atraso */
#contato.is-visible .footer-mapa-contato .info-contato {
  animation: descerTexto 1s ease-out forwards 0.2s;
}
