* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
}

/*-- Cabeçalho --*/
header {
  background-color: black;
  padding: 15px 30px;
  display: flex;
  flex-direction: column; /* empilha os links verticalmente */
  align-items: flex-end;  /* mantém no canto direito */
  gap: 10px;              /* espaço entre os links */
  position: sticky;
  z-index: 10;
}

header a.informações {
  text-decoration: none;
  background-color: red;   
  color: white;            
  padding: 12px 24px;      
  border-radius: 8px;      
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

header a.informações:hover {
  background-color: darkred; 
  color: white;
}


/*--------------------------------*/

/*--  Hero --*/
.hero {
  background: url("bnner.jpg") no-repeat center/cover;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: red;
  margin-bottom: 20px;
}

.hero-logo {
  background: url("fotos/logo.png") no-repeat center/cover;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.button {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: red;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.button:hover {
  background-color: darkred;
}

/*--------------------------------*/

/*--  Sobre --*/
.sobre {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: red;
  padding: 60px 10%;
  align-items: center;
}

.sobre div {
  flex: 1 1 300px;
}

.sobre img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/*--------------------------------*/

/*--  Benefícios --*/
.beneficios {
  background: black;
  padding: 60px 20px;
  text-align: center;
}

.beneficios h2 {
  margin-bottom: 30px;
}

.beneficios .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.beneficios .grid div {
  background: red;
  padding: 20px;
  border-radius: 5px;
}

/*--------------------------------*/

/*--  Parcerias --*/
.parcerias {
  background: black;
  padding: 60px 20px;
  text-align: center;
}

.parcerias .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;  
  gap: 30px;
}

.parcerias .logo {
  width: 200px;      
  height: 200px;     
  background-size: contain;  
  background-repeat: no-repeat;
  background-position: center;
}

.logo1 { background-image: url("fotos/logo_mar_art.png"); width: 200px; height: 200px; }
.logo2 { background-image: url("fotos/mc_logo.png"); width: 200px; height: 120px; }
.logo3 { background-image: url("fotos/ficlub_logo.png"); width: 250px; height: 180px; }

/*--------------------------------*/

/*--  Criadores --*/
.criadores {
  background: red;
  padding: 60px 20px;
  text-align: center;
}

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

.foto {
  width: 200px;
  height: 200px;
  background-size: cover;
  border-radius: 5px;
  background-position: center;
  justify-content: center;
  align-items: center;  
}

.foto1 { background-image: url("fotos/foto1.png"); }
.foto2 { background-image: url("fotos/foto4.jpeg"); }
.foto3 { background-image: url("fotos/Helio000.jpeg"); }

/*--------------------------------*/

/*--  Rodapé --*/
footer {
  background: red;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/*--------------------------------*/

/*-- Responsividade --*/
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .button { font-size: 0.9rem; padding: 10px 18px; }
  .sobre { flex-direction: column; text-align: center; }
  .grid-criadores {
    flex-direction: row;   
    justify-content: center;
  }
}
.sobre p {
  font-size: 20px; 
  color: #ffffff;     
  line-height: 1.6; 
}
.criador a i {
  font-size: 36px; 
  margin: 5px; 
} 