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

body {
    font-family: 'Orbitron', sans-serif;
    background-color: #0a0a0a;
    color: #00e0ff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(90deg, #1e003a, #001242);
    border-bottom: 3px solid #ff4081;
}

h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 10px #00e0ff;
}

h2 {
    color: #ff4081; 
    text-shadow: 0 0 5px #ff4081;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.imagens, .videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.imagens img, .videos video {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.4);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: block;
}

.imagens img:hover, .videos video:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 1);
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 25px;
    background-color: #111;
    border-top: 2px solid #6a0dad;
    color: #aaa;
    font-size: 0.9rem;
}

.modal {
  position: fixed;
  top:0; left:0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 224, 255, 0.7);
}

#fechar {
  position: absolute;
  top: 30px; right: 40px;
  font-size: 2.5rem;
  color: #00e0ff;
  cursor: pointer;
  font-weight: bold;
}
