/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background: url('https://wallpapers.com/images/high/bayonetta-dark-red-theme-h5hpj2dxla8t3wgk.webp') no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  line-height: 1.7;
}

/* Container padrão */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Cabeçalho */
header {
  background-color: rgba(0, 0, 0, 0.85);
  color: #D4AF37;
  padding: 30px 0;
  border-bottom: 4px solid #571212;
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.6);
}

header h1 {
  font-size: 2.8em;
  text-shadow: 2px 2px #8B0000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu a {
  background-color: #8B0000;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, transform 0.2s;
}

.menu a:hover {
  background-color: #a40000;
  transform: scale(1.05);
}

/* Conteúdo principal */
main {
  padding: 50px 0;
  background-color: rgba(0, 0, 0, 0.0);
  border-top: 1px solid #3d0101;

}

/* Cards */
.card-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: rgba(30, 30, 30, 0.85);
  padding: 25px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  border: 3px solid #D4AF37;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.4);
}

.card h3 {
  margin-bottom: 10px;
  color: #D4AF37;
}

/* Rodapé */
footer {
  background-color: rgba(0, 0, 0, 0.85);
  color: #D4AF37;
  text-align: center;
  padding: 20px 0;
  border-top: 4px solid #551111;
  box-shadow: 0 -4px 20px rgba(139, 0, 0, 0.6);
  justify-content: center;
}
iframe  {
  display: flex;
border-radius: 25px;
   border: 3px solid #8B0000; 
   margin: 15px;
   
}
.card img {
  width: 100%;
   margin: 15px;
}
