/* 🖥️ Efeito apenas para desktop wide screen */
@media (max-width: 768px) {
/* 🔹 Efeito do título no hover */
 .contact-banner {
         flex-direction: column !important; /* empilha os elementos verticalmente */
  align-items: center !important;
  gap: 5px !important; /* espaço entre número e email */
    }
}

.simple-banner {
    z-index: 9998 !important;
}

@media (min-width: 769px) {
  .contact-banner{
    flex-direction: row; /* empilha os elementos verticalmente */
  align-items: center;
  gap: 20pxpx; /* espaço entre número e email */
    }
}

#simple-banner {
  background: linear-gradient(135deg, #1f4369, #0e1f2f); /* azul petróleo → azul profundo */
  color: #ffffff;
  box-shadow: inset 0 0 40px rgba(0, 136, 255, 0.1);
}

/* Efeitos de luz animados no fundo */
#simple-banner::before {
  background: radial-gradient(circle, rgba(0,195,255,0.3) 0%, transparent 70%) !important;
  animation: flutuar 6s ease-in-out infinite !important;
}

#simple-banner::after {
  background: radial-gradient(circle, rgba(13,110,253,0.3) 0%, transparent 70%) !important;
  animation: flutuar 8s ease-in-out infinite reverse !important;
}

/* Título do banner */
#simple-banner h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

/* Subtítulo */
#simple-banner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  z-index: 1;
  position: relative;
}



