@charset "UTF-8";

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Epilogue', sans-serif;
  color: white;
}

body {
  background-color: black; /* Substitua pelo caminho da sua imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}


/* NAVBAR */
.navbar {
  height: 80px; /* altura fixa da navbar */
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 4px solid #e48e1e;
  overflow: visible; /* permite que a logo “transborde” */
}


.navbar-nav .nav-link {
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #e48e1e;
  transform: scale(1.05);
}

.navbar-toggler {
  border: none;
}

/* Logo no mobile: centralizada e acima do navbar */
.logo-mobile {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -55px;
}

.logo-mobile img {
    height: 140px; /* aumenta a logo */
  max-height: none; /* impede que ela seja limitada pela altura da navbar */
  margin-top: 10px; /* opcional: centraliza visualmente se estiver desalinhada */
}


/* Logo no desktop: alinhada à esquerda */
.logo-desktop img {
  height: 180px; /* aumenta a logo */
  max-height: none; /* impede que ela seja limitada pela altura da navbar */
  margin-top: -20px; /* opcional: centraliza visualmente se estiver desalinhada */
}


@media (max-width: 767.98px) {
  .logo-desktop {
    display: none;
  }
}

/* Menu mobile com fundo e empurrando conteúdo */
@media (max-width: 767.98px) {
  .navbar-collapse {
    position: static !important;
    background-color: #101010; /* fundo do menu aberto */
    width: 90%;
    padding: 15px 0;
    margin-top: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  .navbar-collapse.show {
    display: block  !important;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

/* hero */
.hero-image {
  position: relative;
  width: 100%;
  height: 120vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}


@media (max-width: 768px) {
  .hero-image {
    height: 47vh; /* Reduz a altura da seção no mobile */
  }

  .hero-video {
    height: 100%;
    object-fit: contain; /* Em vez de cobrir toda a área, ajusta o vídeo */
  }
}



.titulo {
  font-family:'Anton', sans-serif ;
  font-size: 3.5rem;
  color: #e48e1e;
  font-weight: bold;

}

.titulo2 {
  font-family:'Anton', sans-serif ;
  font-size: 0.1rem;
  color: #e48e1e;
  font-weight: bold;
 
}

.hero-top {
  padding-top: 140px;
}

#textvemai {
  font-size: 1.3rem;
}

.card-custom {
  background: rgba(128, 128, 128, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.card-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 50px rgba(255, 165, 0, 0.3);
}

.WhatsApp {
  font-size: 1.2rem;
  color: #e48e1e;
  font-weight: bold;

}

#icon1 {
  color: red;
}

#icon2 {
  color: green;
}

#icon3 {
  color: rgb(219, 112, 130);
}

#texto-card {
  font-size: 1.4rem;
  font-weight: bold;
  
}


/* Botão WhatsApp com efeito manual além do Animate.css */
a.btn-success:hover {
  background-color: #25d366;
  transform: scale(1.05);
  transition: 0.3s;
}

/* Animação de fade personalizado extra (opcional) */
@keyframes fadeInUpCustom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes animarGradiente {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.divisoria-laranja {
  height: 4px;
  background: linear-gradient(270deg, #D95A00, #F3BB00, #D95A00);
  background-size: 600% 600%;
  animation: animarGradiente 4s ease infinite;
  border-radius: 10px;
  margin: 60px 0 30px 0;
}

/* só adiciona essa classe para esconder antes da animação */
.animate-on-scroll {
  opacity: 0;
}

/* Quando animar (Animate.css padrão) fica com opacidade 1 */
.animate__animated {
  opacity: 1 !important;
  /* força aparecer quando animar */
}
.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.video-wrapper {
  max-width: 800px; /* ajuste o tamanho como quiser (em px, %, rem...) */
  margin: 0 auto;   /* centraliza horizontalmente */
  border-radius: 10px;
  overflow: hidden; /* para bordas arredondadas do vídeo */
}
@media (max-width: 768px) {
  .hero-top {
    padding-top: 0px !important; /* ou até 0 se quiser colado no vídeo */
  }
}




/* OQUE VEM POR AI */

/* Card e seção "O QUE VEM POR AÍ?" */

.card-custom {
  background: rgba(128, 128, 128, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  padding: 30px 20px;
  height: 90%;
}

.card-custom:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 40px rgba(255, 165, 0, 0.2);
}

.card-custom i {
  color: #e48e1e;
}

.titulovem, #titulo2 {
  font-size: 3.5rem;
  color: #e48e1e;
  font-weight: bold;
}

#titulo3 {
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
}

#h3vem {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: bold;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  width: 80%; /* 👈 largura fixa que você controla */
  margin: 0 auto;
}


.info-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

#frasefinal {
  color: #e48e1e;
  font-size: 1.4rem;
}

.animate-on-scroll {
  opacity: 0;
}

.animate__animated {
  opacity: 1 !important;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .info-card {
    width: 100%;            /* Usa 100% da largura da coluna */
    padding: 16px 12px;     /* Reduz padding para evitar esticamento */
    height: auto !important; /* Garante altura automática */
  }

  #titulo3 {
    font-size: 1rem;         /* Um pouco menor no mobile */
  }

  .icon-circle {
    width: 40px;
    height: 40px;
  }
}


/* o jeito do nordeste */


/* Título */
#titulo4 {
  padding: 40px;
  font-size: 3.5rem;
  color: #e48e1e;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  #titulo4 {
    font-size: 2rem;
    padding: 20px;
  }
}
/* Subtítulo com destaque */
.text-highlight {
  font-size: 1.8rem;
  color: #ffddc1;
}

/* Verso destacado */
.glass-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  color: #fff;
}

.verso {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  color: #fdfdfd;
}

/* Textos informativos */
.info-text {
  font-size: 1.6rem;
  margin-top: 1rem;
  color: #f3f3f3;
}

.highlight {
  color: #e48e1e;
  font-weight: bold;
}

/* Ícones sociais */
.social-link {
  padding: 25px;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
  color: rgba(0, 0, 0, 0.412);
}

.animate-on-scroll {
  opacity: 0;
}
.animate__animated {
  opacity: 1 !important;
}



/* Footer */
.footer-custom {
  background: none;
  padding: 2rem 0;
  text-align: center;
}

.footer-banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-banner {
  max-height: 50px;
  height: auto;
  width: auto;
}

.footer-logo-extra {
  max-height: 100px;
  height: auto;
  width: auto;
}

/* Esconde elementos específicos por padrão */
.mobile-only {
  display: none;
}
.desktop-only {
  display: inline-block;
}

/* Estilo da parte dos direitos autorais */
.copyright-text {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  color: #ccc;
}

/* Versão Mobile */
@media (max-width: 768px) {
  .footer-banner-wrapper {
    gap: 0.1rem; /* diminui o espaço entre os elementos */
    margin-bottom: 0.5rem; /* opcional, pode controlar o espaço do bloco como um todo */
  }

  .footer-banner {
    max-width: 100%;
    max-height: 110px; /* reduz um pouco a altura se necessário */
    padding: 0;
    margin: 0rem 0; /* reduz espaçamento vertical entre as imagens */
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .copyright-text {
    font-size: 0.8rem;
    margin-top: 1rem; /* opcional, ajuste conforme necessidade visual */
  }
}
