/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}

/* Header */
header {
  padding: 20px 0 0 0;
  background-color: #000;
}

.logo-top {
    width: 100px;
    max-width: 80%;
    display: block;
    margin: 0 auto;
    margin-bottom: -111px;
    margin-top: 30px;
    position: relative;
    z-index: 100;
}

main {
  padding: 0px 10px;
}

/* Vídeo */
.video iframe {
  width: 100%;
  max-width: 560px;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
}

.sobre {
  margin: 20px 0;
  font-size: 16px;
  opacity: 0.4;
}

.contato, .instagram {
  margin: 20px 0;
}

.contato a, .instagram a {
  color: #db003b;
  text-decoration: none;
  font-weight: bold;
}

footer {
  padding: 15px 0;
  font-size: 14px;
  color: #888;
}

/* Membros da banda 
.membros {
  margin: 30px 0;
  padding: 0 10px;
}

.membros h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ff4c4c;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

.grid-membros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  grid-auto-rows: auto;
  gap: 15px;
  justify-items: center;
  align-items: start;
}

.membro {
  padding: 10px;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  border-radius: 12px;
}

.membro img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.membro:hover img {
  transform: scale(1.05);
}

.membro h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #fff;
}

.membro p {
  font-size: 0.95rem;
  color: #ccc;
  letter-spacing: 0.5px;
}

.membro:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255,76,76,0.7);
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, #ff4c4c, #ffb347);
  border-style: solid;
}
  */

/* Fade-in */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Materiais */
.materiais {
  margin: 30px 10px;
  padding: 20px 0;
}

.materiais h2 {
    font-size: 1rem;
    color: #db003b;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.grid-materiais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-auto-rows: auto;
  gap: 15px;
  justify-items: center;
  align-items: center;
}

.material {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  text-decoration: none;
  color: #fff;
}

.material:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255,76,76,0.5);
}

.icon-download {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.material p {
  font-size: 0.95rem;
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .video iframe {
    width: 100%;
    height: 56vw;
  }
}



.image-container {
  width: auto;
  /* overflow: hidden; */
  margin: 0 -15px;
}

.image-container2 {
  width: auto;
  margin: 0 -15px;
}

.image-container img{
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
}

.image-container2 img {
  width: 100%;
  height: auto;
}

section.video{
  margin: 0 -15px;
}