body
{
    margin: 0;
}

/*HEADER*/
.topo {
    display: flex;
    align-items: center;
    justify-content: center; /* logo centralizado */
    background-color: black;
    position: relative;
    padding: 1rem;
    height: 80px;
}

/* Hamburger */
.hamburger {
    position: absolute;
    left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 4px;
    background: white;
    border-radius: 2px;
}

/* Logo centralizado */
.logo-container {
    text-align: center;
    width: 100%;
}

/* Menu */
#nav-menu {
    position: absolute;
    top: 100px; /* abaixo do header */
    left: 0;
    width: 250px;
    height: 761%;
    background-color: black;
    display: none; /* escondido por padrão */
    text-align: center;
}

#nav-menu ul {
    list-style: none;
    padding: 0;
}

#nav-menu li {
    margin: 1rem 0;
}

#nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

#nav-menu a:hover
{
    color: rgb(53, 153, 53);
}

/* Mostrar menu quando ativo */
#nav-menu.active {
    display: block;
}
#logo
{
    width: 6.5em;
    height: auto;
    padding-top: 2.5%;
}

#banner
{
    margin: 0;
    width: 100%;
    height: auto;
}
#banner-text
{
    text-align: center;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.grid-camisas {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    align-items: start;
    padding: 1rem;
}

.grid-camisas > div {
    background: black;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* imagem em cima, texto embaixo */
    align-items: center;
    justify-content: center;
}

/*folder*/
.grid-camisas > a {
    background: black;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* imagem em cima, texto embaixo */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.grid-camisas img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    cursor: pointer; /* mostra que é clicável */
    transition: transform 0.3s ease;
}

.grid-camisas img:hover {
    transform: scale(1.05);
}

.grid-camisas a {
    text-decoration: none;
    cursor: pointer;
    color: white;
    margin-top: 0.5rem;
    padding-bottom: 5%;
}

.grid-camisas label
{
    cursor: pointer;
    font-size: 115%;
}

/* --- Modal --- */
.modal {
    display: none; /* escondido por padrão */
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

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