/* ==========================================================================
   ESTILOS GLOBAIS E ANIMAÇÕES
   ========================================================================== */


/* ==========================================================================
   1. SEÇÃO DO VÍDEO (TOPO) - [Nenhuma alteração aqui, mantido como estava]
   ========================================================================== */

#orcamento-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#orcamento-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px) brightness(70%);
  z-index: 2; 
}

#video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; 
  z-index: 1;
}

#orcamento-chamada {
  width: 100%;
  max-width: 800px;
  padding: 2rem 1rem;
  /* A cor original do texto foi movida para os elementos filhos */
  text-align: center;
  z-index: 10;
}

#orcamento-chamada h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: #a47e43;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.5s;
  animation: revealTextUp 1s ease-out forwards;
}

.sobreEmpresa {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-top: 1rem;

  /* MODIFICADO: Cor de apoio elegante e legível */
  color: white;
  
  /* Animação (sem alteração) */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.5s;
  animation: revealTextUp 1s ease-out forwards;
}

/* Visibilidade para animação (sem alteração) */
#orcamento-chamada.is-visible h1,
#orcamento-chamada.is-visible .sobreEmpresa {
  opacity: 1;
  transform: translateY(0);
}