/* RESET */ 
body{
    color: #e6e7e2; /* cor principal do texto */
}

.text-muted {
    color: #9CA3AF; /* mantém contraste dos textos secundários */
  }

/*HERO VIDEO*/
    .hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-video {
 position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* controla a "opacidade" */
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* overlay */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  color: #e6e7e2;
}

.hero-fade {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*ANIMATION TEXTS*/
    @keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 10s linear infinite;
}

.marquee-text {
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #e6e7e21a;
}

/*WHATS BUTTON*/
.whatsapp-icon {
  width: 24px;
  height: 24px;
} 
.whatsapp-float {
  
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 50;

    width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9999px;

  background: rgba(12, 199, 143, 0.7);
  backdrop-filter: blur(4px);

  color: #e6e7e2e6e7e2;

  box-shadow:
    0 0 0 rgba(252, 252, 252);

  animation: pulse-glow 2.5s infinite;

  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background:rgba(12, 221, 158, 0.8);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
 
}

/* Brilho pulsante */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}


.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* mantém alinhado à esquerda */
}

.contact-seal {
  
  height: 48px;
  margin-bottom: 4px;
  opacity: 0.9;
}


/* LOGO CLIENTES */

.client-logo {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0; /* 🔥 remove a borda interna */
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
 overflow: hidden; /* importante */
  opacity: 0;
  transform: translateY(16px);
  transition: all .7s ease;
}

.client-logo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.client-logo img {
  width: 100%;
  height: auto;              /* 🔥 ISSO resolve no iOS */
  max-height: 100%;
  object-fit: contain;
 background: rgba(255,255,255,.05); /* se quiser manter o fundo */
  border-radius: 8px;
  opacity: .9;
}


  @keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}

/* Hover editorial 
.video-hover {
  position: relative;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none; 
}

.video-hover:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.video-hover:hover .play-icon {
  opacity: 1;
  transform: scale(1.05);
}*/

/* =========================
   BACK TO TOP
========================= */
#backToTop {
  position: fixed;
  right: 2.5rem;
  bottom: calc(2.5rem + 64px + 16px);
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);

  color: #fff;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);

  transition:
    opacity .3s ease,
    transform .3s ease,
    background .3s ease,
    border .3s ease;
  z-index: 40;
}

#backToTop svg {
  width: 18px;
  height: 18px;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#backToTop:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Mobile ajuste */
@media (max-width: 768px) {
  #backToTop {
    right: 1.25rem;
    bottom: calc(1.25rem + 64px + 12px);
  }

  .whatsapp-float {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}
