body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #333;
}
html {
    scroll-behavior: smooth;
}


header {
  background: linear-gradient(90deg, #194592, #007831);
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 60px;
  height: 60px;
}

.header-buttons .btn {
  background-color: #fbbc0f;
  color: #000;
  padding: 0.5rem 1rem;
  margin-left: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 2rem;
}

#banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #fff; /* opcional */
}

#banner img {
  max-width: 100%; 
}

main > section {
  margin-bottom: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h2 {
  color: #1a98e4;
  margin-bottom: 1rem;
}

.convidados-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.convidado {
  flex: 1 1 calc(33% - 1rem);
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.convidado img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.insta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: #007831;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  text-decoration: none;
}

.insta-btn i {
  margin-right: 5px;
}

.programacao-box p {
  margin: 0.5rem 0;
}

.btn-inscricao {
  display: inline-block;
  background-color: #26b947;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 1024px) {
  .convidado {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .convidado {
    flex: 1 1 100%;
  }

  main {
    padding: 1rem;
  }

  section {
    padding: 1rem;
  }
}

footer {
  background: linear-gradient(90deg, #1a98e4, #26b947); /* gradiente próprio */
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.95rem;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  border-top: 4px solid #fbbc0f; /* destaque visual opcional */
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

footer a {
  color: #fbbc0f;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

#inscricao {
  text-align: center;
  margin-top: 40px;
}

.btn-inscricao {
  display: inline-block;
  background-color: #0075ea;
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  transition: transform 0.3s, background-color 0.3s;
}

.btn-inscricao:hover {
  transform: scale(1.05);
  background-color: #26b947;
}

/* Animação de pulso */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(53, 255, 12, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
  }
}
#btnTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  font-size: 24px;
  background-color: #26b947;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: none; /* Oculto por padrão */
  transition: background-color 0.3s, transform 0.3s;
}

#btnTop:hover {
  background-color: #26b947;
  transform: scale(1.1);
}
