/* Importação de fonte */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: url('imgs/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: white;
}

/* Cabeçalho */
header {
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.logo {
    width: 150px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.1);
}

header h1 {
    font-size: 100px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Letreiro */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    margin: 20px 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
}

@keyframes marquee {
    from { transform: translateX(160%); }
    to { transform: translateX(-160%); }
}



/* Botões das redes sociais */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  font-weight: bold;
}

.social-icon,
button.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  width: 15em;
  height: 3em;
  padding: 0 1em;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background-position 0.5s;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.social-icon:hover::before {
  opacity: 1;
  filter: blur(8px);
  background-position: 400%;
}

.icon-img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  flex-shrink: 0;
}
