/* ------------------------------------
  GERAIS
------------------------------------- */


/* Limitar largura do contador no desktop */
@media (min-width: 768px) {
 #video{
  width: 900px;
  height:auto;
}
}


body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #102d07;
}

html, body {
  height: auto; /* ou remova 'height: 100%' */
  background-color: 102d07; /* se quiser fundo contínuo */
}

body {
  font-family: 'Montserrat', sans-serif;
}
html {
  scroll-behavior: smooth;
}


.titulo-hero, .titulo {
  font-family: 'Russo One', sans-serif;
}

.titulo {
  color: #00FB33;
  text-shadow: 0 0 5px #00FB33, 0 0 15px #00FB33;
}

.texto {
  font-size: 1.1rem;
  color: #333;
}

.text-pink {
  color: #000 !important;
}



.festival-section {
  background-image: url('imagens/bg1\ \(2\).png');
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  color: white;
  text-align: left;
  font-family: 'Arial Black', sans-serif;
}

.festival-content {
  max-width: 1000px;
  margin: 0 auto;
}

.festival-content h2 {
  font-size: 4.5rem;
  line-height: 1; /* mais colado */
  margin: 0 0 1.8rem 0; /* margem inferior só para respirar da data */
  text-transform: uppercase;
}

.festival-content .ofestivalt {
  color: #77F65B;
  font-weight: 300; /* fino */
}

.festival-content .mais {
  color: #EB6A2F;
  font-weight: 300; /* fino igual O FESTIVAL */
  margin-right: 0.4rem;
}

.festival-content .cultural {
  color: #96ff61;
  font-weight: 900;
}

.festival-content .nordeste {
  color: #57DEDF;
  font-weight: 900;
  display: inline-block;
  margin-top: 0.1rem;
}

.festival-content .data {
  margin-top: 5rem;
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.festival-content .data .dia {
  color: #96ff61;
}

.festival-content .data .a {
  color: #EB6A2F;
  margin: 0 0.2rem;
}

.festival-content .data .de {
  color: #77F65B;
  margin-left: 0.2rem;
}

.festival-content .data .mes {
  color: #57DEDF;
  display: block;
  margin-top: 0.3rem;
}

.festival-content .data .ano {
  color: #57DEDF;
  display: block;
  margin-top: 0.2rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .festival-content h2 {
    font-size: 2.5rem;
  }

  .festival-content .data {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .festival-content h2 {
    font-size: 1.8rem;
  }

  .festival-content .data {
    font-size: 1.4rem;
  }
}

/* ====== Animações ====== */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-right {
  opacity: 0;
  animation: slideInRight 1s forwards;
}

.animate-left {
  opacity: 0;
  animation: slideInLeft 1s forwards;
}

/* reset */
.reset-animation {
  animation: none !important;
}

/* ====== Responsivo melhorado ====== */
@media (max-width: 768px) {
  .festival-content h2 {
    font-size: 3rem;
  }

  .festival-content .data {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .festival-content h2 {
    font-size: 2.4rem;
  }

  .festival-content .data {
    font-size: 2.4rem;
  }
}

/* NAVBAR */
.custom-navbar {
  background-color:#102D07;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.3rem 1rem;
border-bottom: 2px solid #73f759;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width:1060px;
  margin: auto;
  position: relative;
}

.menu-toggle {
  font-size: 1.6rem;
  background-color: #102D07;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  display: none;
}

/* MENU DESKTOP */
.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  position: relative;
  font-size: 1.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: #00FB33;
  font-weight: 600;
  font-size: 1.1em;
  padding: 0.4rem 0.8rem;
  display: block;
  transition: 0.3s;
  text-align: center;
  position: relative;
}

.nav-menu a:hover {
  color: #00fb32c3;
  text-shadow: 0 0 5px #73f759;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #73f759;
  transition: width 0.4s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after {
  width: 80%;
}

/* DROPDOWN */
.dropdown-menu {
  min-width: 180px;
  width: auto !important;
  max-width: 100%;
  background-color: #102D07;
  border: 2px solid #73f7598c;
  border-radius: 8px;
  padding: 0.5rem 0;
  box-sizing: border-box;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
 
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #00FB33;
  color: #102D07;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* DESKTOP AJUSTES */
@media (min-width: 992px) {
  .nav-menu {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
  }

  .nav-menu a {
    font-size: 1em;
    padding: 0.4rem 0.6rem;
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    display: none;
    background-color: #102D07;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 5rem;
    padding-inline: 1rem;
    gap: 1.5rem;
    z-index: 9998;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a::after {
    display: none;
  }

  .dropdown .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    background-color: 1d3208;
    padding-inline: 1rem;
    box-sizing: border-box;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  /* Setinha "CONEXÕES" */
  .dropdown-toggle .arrow {
    display: inline-block;
    margin-left: 0.4rem;
    transition: transform 0.3s ease;
  }

  .dropdown.open .dropdown-toggle .arrow {
    transform: rotate(180deg);
  }
}
@media (min-width: 992px) {
  .nav-menu {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.6rem; /* espaço entre os links */
    flex-wrap: nowrap; /* evita quebra para linha de baixo */
  }

  .nav-menu li {
    width: auto; /* garante que os itens fiquem lado a lado */
  }

  .nav-menu a {
    font-size: 0.9em; /* fonte um pouco menor */
    padding: 0.3rem 0.5rem; /* espaço interno reduzido */
    white-space: nowrap; /* impede quebra de texto em links longos */
  }
}

.btn-inscricao {
  position: relative;
  padding: 0.5rem 1.3rem;
  color: #102D07 !important;/* <-- AQUI está a cor do texto */
  background-color: #00FB33;
  font-weight: 800;
  border-radius: 20px;
  overflow: hidden;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
  display: inline-block;
}


/* borda animada */
.btn-inscricao::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(80deg,  #00fb33, #00fb32cc, #00fb33);
  z-index: -1;
  border-radius: 10px;
  background-size: 200% 200%;
  animation: border-run 2s linear infinite;
}

/* máscara para esconder o fundo */
.btn-inscricao::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #00FB33;
  z-index: -1;
  border-radius: 6px;
}





@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.btn-inscricao {
  transition: transform 0.3s ease;
  /* mantém as outras regras que já tem */
}

.btn-inscricao:hover {
  transform: translateY(-8px);
  color: #0b1a04 !important; /* texto mais escuro no hover */
}

/* ------------------------------------
  HERO (imagem + vídeo + logo animada)
------------------------------------- */
.hero-image {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('imagens/bg\ novo.png') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}



.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 48vw;
  height: auto;
}

/* 📱 Ajuste para mobile: logo maior */
@media (max-width: 768px) {
  .hero-logo {
    width: 340px !important;     /* força a largura total */
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto;
    display: block;
  }
  
}


/* ✨ Animações */
.animated-logo {
  animation: logoIntro 2s ease-out forwards, logoFloat 6s ease-in-out infinite;
  opacity: 0;
}

@keyframes logoIntro {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
  .titulo-evento {
    font-size: 1.4rem;
    line-height: 1.3;
    padding: 0 15px;
  }

  .titulo-evento .mobile-linha {
    display: block;
    text-align: center;
    white-space: nowrap; /* <- Isso impede a quebra */
  }

  .titulo-evento .rosa {
    color: #ff2e94;
  }

  .titulo-evento .verde {
    color: #00FB33;
  }
}



/* ------------------------------------
  EFEITOS GERAIS (hover, animações)
------------------------------------- */
.nav-link:hover {
  text-decoration: underline;
}

.icon-hover {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: default;
}

.icon-hover:hover {
  transform: scale(1.2) rotate(5deg);
  filter: brightness(1.2);
}

.img-hover {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-hover:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.neon-border {
  border: 2px solid #00FF99;
  box-shadow: 0 0 15px #00FF99, 0 0 30px #00FF99;
  transition: transform 0.3s ease;
}

.neon-border:hover {
  transform: scale(1.05) rotate(1deg);
}

/* ------------------------------------
  SEÇÕES PADRONIZADAS: Depoimentos, Projeções, Movimentos
------------------------------------- */
#depoimentos, #projecoes, #movimentos,  #localizacao, #video {
  position: relative;
  color: white;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.brok{
  display: none;
}
  @media (max-width: 768px) {
    .tituloproje {
      font-size: 2.5rem !important;
    }
    .brok{
  display:flex;
}
  }

    .overlay-title {
    font-size: 3.3rem;
    /* a cor verde já está inline, se quiser pode tirar dali e colocar aqui */
  }

  .highlight-text {
    color: #FF2E94;
  }

  @media (max-width: 768px) {
    .overlay-title {
      font-size: 2.5rem;
    }
  }

.overlay {
  position: relative;
  z-index: 2;
}

.depoimentos {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.3rem;
  line-height: 1.6;
}

.depoimento {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease forwards;
  color: #fff;
  height: 100%;
}



/* ------------------------------------
  SEÇÃO polos
------------------------------------- */
.eixos-section, .contador-section {
  color: white;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Ajuste específico para a logo do Feirarte */
.logofeirarte {
  margin-top: 22px;
}


.glass-card, .contador-glass {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  transition: transform 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.glass-card:hover {
  transform: translateY(-5px);
}


/* Ajuste para logos nos cards */
.logo-img {
  max-width: 330px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.logosabores{
   max-width: 250px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .logo-img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-width: 300px;
  }
}

/* ====== DESKTOP: alinhamento dos cards ====== */
@media (min-width: 769px) {
  #eixos .row {
    display: flex;
    flex-wrap: wrap;
  }

  #eixos .row .col-md-4 {
    max-width: 33.333%;
    flex: 0 0 33.333%;
  }

  /* Remove margens automáticas dos últimos 2 */
  #eixos .row .col-md-4:nth-last-child(2):nth-child(n+4),
  #eixos .row .col-md-4:last-child:nth-child(n+4) {
    margin-left: 0;
    margin-right: 0;
  }

  /* Se só houver 2 na última linha, centraliza como grupo sem espaçamento entre eles */
  #eixos .row {
    justify-content: start;
  }

  #eixos .row:last-child {
    justify-content: center;
  }
}


/* ====== MOBILE: tamanho dos títulos ====== */
@media (max-width: 768px) {
  .eixos-section h2 {
    font-size: 2.5rem !important;
  }

  .eixos-section h4 {
    font-size: 1.5rem !important;
  }
}

/* ------------------------------------
  SEÇÃO PRA QUEM É
------------------------------------- */
.para-quem-section {
  position: relative;
  overflow: hidden;
}

.flor2 {
  bottom: 10%;
  right: 15%;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ------------------------------------
  SEÇÃO CONTADOR
------------------------------------- */
.tempo {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  color: #102D07;
  height: 50%;
}


.tempo span {
  font-size: 2.8rem;
  font-weight: bold;
}

.tempo p {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #102D07;
}

/* Para desktop, une todos os tempos em uma única linha */
@media (min-width: 768px) {
  .custom-contador {
    flex-direction: row !important;
  }

  .grupo-superior,
  .grupo-inferior {
    margin: 0;
    gap: 3rem;
  }

  .grupo {
    display: flex !important;
  }
}

/* Para mobile: dois grupos empilhados */
@media (max-width: 767.98px) {
  .custom-contador {
    flex-direction: column !important;
  }

  .grupo {
    justify-content: center;
  }

  .grupo-inferior {
    margin-top: 1rem;
  }
}

.contador-glass {
  background-color: #00FB33 !important; /* Cor sólida */
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* opcional: adiciona profundidade */
}

/* Limitar largura do contador no desktop */
@media (min-width: 768px) {
  .contador-glass {
    max-width: 1080px;  /* 👉 ajuste esse valor conforme desejar */
    margin: 0 auto;    /* centraliza horizontalmente */
  }
}

.separador {
  font-size: 2.8rem;
  font-weight: bold;
  color: #102D07;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;

}




































.bgcontador{
background-image: url('imagens/quadriculadoverde.png');
}

.titulocontador{
  color: #00FB33;
  font-size: 3.4rem;
  text-transform: uppercase;
}

.text-uppercase{
  color: #00FB33;
}
.datacontador{
  color: white;
}
.evento-section {
 
  font-family: 'Montserrat', sans-serif;
}

.info-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.info-card:hover {
  transform: translateY(-5px);
}

/* Ajuste fino para garantir responsividade do contador em mobile */
@media (max-width: 767.98px) {
  .custom-contador {
    flex-direction: column !important;
    gap: 1rem;
  }

  .grupo-superior,
  .grupo-inferior {
    justify-content: center;
    flex-wrap: nowrap;
  }

  .grupo-inferior {
    margin-top: 0.5rem;
  }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInTop {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInBottom {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(100px); }
  to { opacity: 1; transform: translateY(0); }
}
.reset-animation {
  animation: none !important;
}

/* Responsividade aprimorada */
@media (max-width: 767.98px) {
  .titulocontador {
    font-size: 2rem !important;
  }
  .evento-section p.lead,
  .evento-section h6 {
    font-size: 1.1rem !important;
  }
  .evento-section h1 {
    font-size: 2.1rem !important;
  }
  h2.text-center {
    font-size: 2.4rem !important;
  }
}



/* ------------------------------------
  FOOTER + animações auxiliares
------------------------------------- */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50%      { transform: scale(1.2); opacity: 0.35; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 600px) {
  #quer-participar .cards {
    flex-direction: column;
    align-items: center;
  }
}

.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: 100px;
  height: auto;
  width: auto;
}

.footer-logo-extra {
  max-height: 130px;
  height: auto;
  width: auto;
}

.footer-logo-extra1 {
  max-height: 180px;
  height: auto;
  width: auto;
  padding: 0;
  margin-left: -100px;
}
/* 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 {
    flex-direction: column;
  }

  .footer-banner {
    max-width: 90%;
    max-height: 190px;
  }

  /* Esconde elementos de desktop */
  .desktop-only {
    display: none !important;
  }

  /* Mostra somente no mobile */
  .mobile-only {
    display: block;
  }


  .copyright-text {
    font-size: 0.8rem;
    margin-top: 2rem;
  }
}

#contador {
  margin: 0;
  padding: 0;
}
