@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Rum+Raisin&family=Teko:wght@300..700&family=Tilt+Neon&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Verdana";
    box-sizing: border-box;
}

body {
    font-size: 1.6rem;
    background-color: rgb(1, 7, 26);
    width: 100vw;
    height: 100vh;
}

.container{
    color: white;
    max-width: 100rem;
    margin: 0, auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.texto{
    margin-top: 10px;
    font-size: 16px;
    text-align: justify;
    color: white;
    font-family: "Tahoma";
    text-decoration: none;
}

.sessao {
    min-height: 15vh;  /*vh e vw = view height e width (altura vista)*/
    display: flex;
    justify-content: center;
    color: white;
}

/* Galeria de Fotos */
.texto-fotos{
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 16px;
    text-align: justify;
    color: white;
    font-family: "Tahoma";
    text-decoration: none;
}

.grid-fotos-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    margin: 0, auto;
    justify-content: center;
    overflow-x: hidden;
}

.grade-de-fotos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.conteiner-img {
    width: 100%;
    max-width: 40rem;
    max-height: 40rem;
    overflow: hidden;
}


.conteiner-img img {
    width: 100%; /* A imagem ocupa toda a largura do card */
    height: auto; /* A altura se ajusta automaticamente */
}

.conteiner-img:hover {
    overflow: visible;  /* Permite que a imagem saia do container */
    z-index: 10;       /* Garante que a imagem expandida fique acima de outros elementos */
}

.conteiner-img:hover img {
    transform: scale(1.2); /* Aumenta 50% (ajuste conforme necessário) */
}

