body {
  font-family: 'Roboto', sans-serif;
  color: white;
  background-color: #000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Topo */
.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: #000;
  color: white;
}

.logo-img {
  width: 120px;
  height: auto;
}

.contador {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}

.contador p {
  font-size: 12px;
  color: #aaa;
  margin: 0;
  letter-spacing: 0.5px;
}

.nosvemo-img {
  width: 160px;
  height: auto;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(180deg, #000 0%, #0b0b0b 100%);
  text-align: center;
  overflow: hidden;
}

.hero-principal {
    width: 100%;
}

.titulo-img {
  width: 650px;
  max-width: 90%;
}

.info-imagens {
  margin-top: 30px;
}

.em-floripa {
  width: 160px;
  margin-right: 15px;
}

.ano {
  width: 100px;
  vertical-align: middle;
}

.datas {
  display: block;
  margin: 25px auto 0;
  width: 250px;
}

.mago {
  position: absolute;
  top: 60px;
  left: 80px;
  width: 200px;
}

.surfista {
  position: absolute;
  bottom: 40px;
  right: 120px;
  width: 180px;
}

/* Formulário */
.formulario {
  position: relative;
  background-color: #f2f2f2;
  color: #000;
  text-align: center;
}

.caixa-form {
  background: white;
  display: inline-block;
  padding: 40px 60px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
  border-radius: 4px;
  position: absolute;
  z-index: 2;
}

.caixa-form p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}

.caixa-form input {
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px;
  width: 280px;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.caixa-form button {
  display: block;
  margin: 20px auto 0;
  background: black;
  color: white;
  border: none;
  padding: 10px 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 3px;
}

.caixa-form button:hover {
  background: #444;
}

.foto-grupo {
  width: 100%;
  z-index: 1;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
  font-style: italic;
  background: #000;
  color: white;
}

/* Seção de Patrocínio */
.patrocinio {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  background: url("img/foto-grupo.jpg") center center / cover no-repeat;
  font-family: "Cascadia Mono", sans-serif;
  overflow: hidden;
}

/* Overlay escuro sobre a foto */
.patrocinio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.conteudo-patrocinio {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.patrocinio h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 0 20px #000;
  font-family: 'Cascadia Mono';
}

.patrocinio p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 0 20px #000;
  font-family: 'Cascadia Mono';
}

.botoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  background: #c9ea5e;
  color: #000;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn:hover {
  background: #000;
  color: #fff;
  border-color: #fff;
}

/* Contador novo */
.contador {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Cascadia Mono', sans-serif;
  color: white;
}

.tempo {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  text-align: left;
}

.tempo p {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
}

.separador {
  font-size: 26px;
  font-weight: 500;
  margin: 0 6px;
  color: #888;
}

@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px;
  }

  .logo-img {
    width: 100px;
  }

  .nosvemo-img {
    width: 140px;
  }

  /* O contador desce para baixo do topo */
  .contador {
    order: 3; /* faz ele ir para o final no flex container */
    margin-top: 20px;
  }

  /* Ajusta tamanho do contador para telas pequenas */
  .tempo {
    font-size: 20px;
  }

  .tempo p {
    font-size: 11px;
  }

  .separador {
    font-size: 20px;
    margin: 0 4px;
  }

  .botoes {
    flex-direction: column;
  }

  .btn {
    width: 80%;
    margin-left: 5%;
  }
}