@font-face {
  font-family: "Amigo";
  src: url("../fontes/feelfree-font/FeelfreePersonalUseRegular-lg2Bw.ttf");
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color:chartreuse;
}

header {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.foto-container {
  flex: 0 0 calc(50% - 20px); /* 2 colunas com gap de 20px aparentemente ne*/
  max-width: calc(50% - 20px);
  position: relative;
  cursor: pointer;
}

.foto-container img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.foto-container:hover img {
  transform: scale(1.03);
}

.icono {
  position:absolute;
  top: 5px;
  right: 5px;
  width: 90px !important;             /* Ajuste o tamanho que quiser aqui */
  height: auto;            /* Mantém proporção original */
  object-fit: contain;     /* Evita corte ou deformação */
  pointer-events: none; 
  pointer-events: none;
}

/* Modal para tela cheia */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.legenda{
  font-family: "Amigo";
  text-align: left;
  margin-top: 5px;
  margin-left: 10px;
  font-size: 50px;
  color: #333;
}

a{

  font-family: "Amigo";
  font-size: 100px;
  text-align: center;
}