*{
    margin: 0;
    padding: 0;
    box-sizing: 0;
    font-family: "Poppins", sans-serif;
}

body{
    background-color: black;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
}

/* ==========================
   HEADER FIXO + TRANSPARENTE + BLUR
========================== */
header{
    width: 100%;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
    border-radius: 10px;
   
}

header .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo img{
    max-width: 90px;
}

header .menu-desktop nav ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

header .menu-desktop nav ul li{
    margin: 0 20px;
    position: relative;
}

header .menu-desktop nav ul li a{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

header .btn-ticket button{
    width: 140px;
    height: 50px;
    background-color: #aff900;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

header .btn-ticket button:hover{
    background-color: #fff;
}
/*Estilo do Hero*/

section.hero-site{
    height: 100vh;
    background-image: url(../src/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;

}


.hero-site {
    height: 100vh; /* ocupa toda a altura da tela */
    display: flex;
    justify-content: center; /* alinha verticalmente */
    align-items: center; /* alinha horizontalmente */
}

.hero-site .interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* centraliza o texto */
}

.hero-site .txt-hero h2 {
    font-size: 4em;
}

.hero-site .txt-hero p span {
    font-weight: 700;
}

.hero-site .txt-hero p {
    font-size: 20px;
}

.logo_2 img{
     width: 900px; 
   
}

/* ====== ESTILO DO CRONÓMETRO ====== */

.countdown-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(192, 248, 67, 0.15); /* cor #c0f843 com transparência */
  border-top: 2px solid #c0f843;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
  z-index: 9999;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 600;
  color: #c0f843;
}

.countdown-label {
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .countdown-container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .countdown-number {
    font-size: 1.5rem;
  }
}


.container{
    background-color: #20201f;
    width: 100%;
    height: 30vh;
    align-items: center;
    text-align: center;
    color: #fff;
}

.about-event {
  width: 100%;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 50px 20px;

  /* Degradê animado */
  background: linear-gradient(-45deg, #20201f, #303030, #181818, #2c2c2b);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.about-event h1 {
  font-size: 42pt;
  color: #aff900;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.4s ease;
}

/* Efeito hover com traçado branco */
.about-event h1:hover {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  transform: scale(1.05);
}

.about-event p {
  font-size: 16pt;
  line-height: 1.6;
  max-width: 900px;
  color: #e6e6e6;
}

.event-info {
  position: relative;
  width: 100%;
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  /* 🔥 Fundo com imagem (troca a URL abaixo pela tua) */
  background-image: url(../src/bgdata.png);
  background-size: cover;
  background-position: center;
}

/* Overlay escuro com brilho suave */
.event-info .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.164), rgba(10, 10, 10, 0.159));
  z-index: 1;
  animation: glow 8s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { background: rgba(0, 0, 0, 0.7); }
  100% { background: rgba(0, 0, 0, 0.045); }
}

.event-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
}

.event-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18pt;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.4s ease;
  cursor: default;
}

/* Ícones */
.event-item i {
  font-size: 32pt;
  color: #aff900;
  margin-bottom: 10px;
  transition: transform 0.5s ease, color 0.5s ease;
  animation: pulse 3s ease-in-out infinite;
}

/* Hover elegante */
.event-item:hover i {
  transform: scale(1.2);
  color: #fff;
}

.event-item:hover span {
  color: #aff900;
  text-shadow: 0 0 8px #aff900;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}





.speakers-special {
  background-color: #fff;
  color: #202020;
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.speakers-special h2 {
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #202020;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

/* 🔥 Linha verde animada no hover */
.speakers-special h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 4px;
  background-color: #aff900;
  transition: width 0.4s ease-in-out;
}
.speakers-special h2:hover::after {
  width: 100%;
}

/* ===== CONTAINER DO CARD ÚNICO ===== */
.speaker-unique {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

/* ===== FOTO COM EFEITO COBRA ===== */
.speaker-photo {
  position: relative;
  width: 450px;
  border-radius: 25px;
  overflow: hidden;
}

.speaker-photo img {
  width: 100%;
  border-radius: 25px;
  display: block;
}

/* Linha animada “jogo da cobra” */
.speaker-photo .border-animate {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: 25px;
  pointer-events: none;
  animation: snakeBorder 6s linear infinite;
}

@keyframes snakeBorder {
  0% {
    border-top-color: #aff900;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  25% {
    border-right-color: #aff900;
  }
  50% {
    border-bottom-color: #aff900;
  }
  75% {
    border-left-color: #aff900;
  }
  100% {
    border-top-color: #aff900;
  }
}

/* ===== BIOGRAFIA ===== */
.speaker-info {
  max-width: 500px;
  text-align: left;
}

.speaker-info h3 {
  font-size: 1.8rem;
  color: #202020;
  margin-bottom: 15px;
}

.speaker-info p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .speaker-unique {
    flex-direction: column;
    text-align: center;
  }

  .speaker-info {
    text-align: center;
  }

  .speaker-photo {
    width: 85%;
  }
}










.speakers-section {
  width: 100%;
  background: #000;
  padding: 70px 0;
  text-align: center;
  color: #fff;
}

.speakers-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fff; /* agora branco */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

/* 🔥 Linha verde animada no hover */
.speakers-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 4px;
  background-color: #aff900;
  transition: width 0.4s ease-in-out;
}

.speakers-section h2:hover::after {
  width: 100%;
}



/* Carrossel */
.carousel-container {
  position: relative;
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.card {
  min-width: 250px;
  height: 330px;
  border-radius: 10px;
  overflow: hidden;
  cursor: grab;
  transition: transform .3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botões */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #9cff14;
  border: none;
  font-size: 2rem;
  color: #000;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.carousel-btn.left {
  left: 0;
}

.carousel-btn.right {
  right: 0;
}

.carousel-btn:hover {
  background: #baff3d;
}
    


/* SECTION BASE */
.event-cta {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-image: url(../src/bgdata.png);
  background-size: cover;
  background-position: center;
}

.event-cta .overlay {
  position: absolute;
  inset: 0;
  
  z-index: 1;
  animation: fadePulse 10s ease-in-out infinite alternate;
}
@keyframes fadePulse {
  0% { background: rgba(0,0,0,0.8); }
  0% { background: rgba(0, 0, 0, 0.117); }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.cta-content h2 {
  font-size: 30pt;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  
  margin-bottom: 30px;
}

/* ===== BOTÃO EXCLUSIVO PARA A SECTION ===== */
.btn-ticket-local {
  display: flex;
  justify-content: center;
}

.ticket-btn-local {
  width: 200px;
  height: 50px;
  background-color: #aff900;   /* cor exata pedida */
  color: #000;
  font-weight: 300;
  font-size: 14px;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(175,249,0,0.18);
}

/* Hover: fica branco (como pediste) */
.ticket-btn-local:hover {
  background-color: #ffffff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Focus acessível */
.ticket-btn-local:focus {
  outline: 3px solid rgba(175,249,0,0.25);
  outline-offset: 3px;
}

/* Mobile: adaptar largura para caber melhor */
@media (max-width: 480px) {
  .ticket-btn-local {
    width: 160px;         /* mantém bom tap target em mobile */
    font-size: 15px;
  }

  .cta-content h2 {
    font-size: 20pt;
  }
}

.partners {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  /* 🔥 Fundo – podes mudar depois */
  background-image: url(../src/bgpartners.webp);
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
}

.partners .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.partners-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
}

.partners-content h3 {
  font-size: 36pt;
  color: #202020;              /* cor atualizada */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

/* 🔥 Hover com traço verde neon animado */
.partners-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 4px;
  background-color: #aff900;
  transition: width 0.4s ease-in-out;
}

.partners-content h3:hover::after {
  width: 100%;
}


/* Imagem única */
.partners-image img {
  width: 100%;
  max-width: 900px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.4s ease;
  border-radius: 20px;
}

/* Efeito hover suave */
.partners-image img:hover {
  opacity: 1;
  transform: scale(1.02);

}

/* Responsivo */
@media (max-width: 768px) {
  .partners-content h2 {
    font-size: 28pt;
  }
  .partners-image img {
    max-width: 100%;
  }
}





.footer {
  background-color: #2b2b2b;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Coluna 1 */
.footer-info {
  flex: 1 1 40%;
  min-width: 280px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.event-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 15px;
}

.event-details {
  font-size: 0.9rem;
  color: #aff900;
  line-height: 1.5;
}

/* Coluna 2 */
.footer-links {
  flex: 1 1 20%;
  min-width: 200px;
}

.footer-links h3 {
  color: #aff900;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #aff900;
}

/* Coluna 3 */
.footer-social {
  flex: 1 1 20%;
  min-width: 200px;
}

.footer-social h3 {
  color: #aff900;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.6rem;
  margin-right: 15px;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #aff900;
  transform: scale(1.2);
}

/* Créditos */
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

.footer-bottom strong {
  color: #aff900;
}
