body {
    margin: 0;
}

/* HEADER */
.topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    padding: 1rem 3rem;
    height: 90px;
}

/* Logo */
#logo {
    width: 7em;
    height: auto;
}

/* Esconde o hambúrguer no desktop */
.hamburger {
    display: none;
}

/* Menu fixo e horizontal */
#nav-menu {
    display: block;
    position: static;
    background: none;
    width: auto;
    height: auto;
}

#nav-menu ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav-menu li {
    margin: 0;
}

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

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

/* BANNER */
#banner {
    width: 0;
    height: auto;
}

#banner-text {
    text-align: center;
    color: black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* GRID DE CAMISAS */
.grid-camisas {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    align-items: start;
    padding: 2rem;
    
}

.grid-camisas > div {
    background: black;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: auto;
}

.grid-camisas img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    cursor: pointer;
    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;
    margin: auto;
    padding-bottom: 5%;
    background: black;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 4%;
}

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

/* MODAL */
.modal {
    display: none;
    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: 70%;
    max-height: 80%;
    border-radius: 8px;
}

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