*{
    padding: 0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    
}

body{
    background-color: #a49787a5;

}

/*Cabeçalho*/

header{
    background-color: #926E51;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset -3px 1px 6px 0px rgba(0, 0, 0, 0.536);
    height: 100px;
}

header > img {
    width: 110px;
    height: auto;
    margin: auto 50px;
}

header > nav {
    margin: auto 50px;
}

.link {
    text-decoration: none;
    color: black;
    font-size: 20px;
    margin: auto 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.link:hover{
    transform: scale(1.2);
}


/*carossel*/

.carousel{
    background-color: #7A5C40;
    box-shadow: inset -3px 2px 8px 0px rgba(0, 0, 0, 0.589);
}

.carousel > h1{
    padding: 30px 0 0 0;
    margin: 30px auto;
    text-align: center;
}

.carousel > section{
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    margin-bottom: 40px;
    
}

.carousel > section > button{
    width: 50px;
    height: 50px;
    margin: auto 50px;
    background-color: transparent;
    border: none;
    font-size: 40px;
    color: #1D3B5F;
    display: flex;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.carousel > section > button:first-of-type{
    left: 10px;
}

.carousel > section > button:last-of-type{
    right: 10px;
}

.carousel > section > button:hover{
    transform: scale(1.4);
}

.carousel > section > article{
    background-color: #c6ac95;
    width: 1000px;
    height: 500px;
    border-radius: 20px;
    box-shadow: 6px 4px 16px rgba(0, 0, 0, 0.562);
    display: flex;
}



.carousel > section > article > img{
    width: 250px;
    margin: auto;
    height: auto;
    border-radius: 10px;
}

.carousel > section > article > div{
    width: 350px;
    margin: auto;

} 

.carousel > section > article > div > h2{
    font-size: 30px;
    text-align: center;
    
}

.carousel > section > article > div > p{
    font-size: 20px;

}

/*Mini Vestiario*/

.galeria{
    background-color: #7A5C40;
    box-shadow: inset -3px 2px 8px 0px rgba(0, 0, 0, 0.589);
    margin-bottom: 40px;
}

.galeria > h1 {
    text-align: center;
    padding: 40px;
}

.galeria > .card{
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.galeria > .card > article{
    background-color: #c6ac95;
    width: 300px;
    padding: 20px;
    margin: 50px;
    align-items: center;
    display: flex;
    flex-direction: column;
    border-radius: 10px;

    box-shadow: 6px 4px 16px rgba(0, 0, 0, 0.562);
}

.galeria > .card > article > img{
    margin: 10px auto;
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.galeria > .card > article > h2{
    margin: 10px auto;
    font-size: 30px;
}

.galeria > .card > article > button{
    background-color: #1D3B5F;
    color: white;
    text-decoration: none;
    font-size: 20px;
    border: none;
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.galeria > .card > article > button > a{
    color: white;
    text-decoration: none;
}

.galeria > .card > article > button:hover{
    transform: scale(1.09)
}

footer{
    box-shadow: inset -3px 2px 8px 0px rgba(0, 0, 0, 0.589);
    background-color: #7A5C40;
    padding: 20px;
}

footer > h1{
    margin: auto;
    text-align: center;
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    header > img {
        width: 70px;
        margin: 10px auto;
    }

    header > nav {
        margin: 10px auto;
    }

    .link {
        font-size: 16px;
        margin: 5px 10px;
    }

    /* Carrossel */
    .carousel > section {
        flex-direction: column;
        align-items: center;
    }

    .carousel > section > button {
        margin: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .carousel > section > article {
        width: 90%;
        height: auto;
        flex-direction: column;
        padding: 15px;
    }

    .carousel > section > article > img {
        width: 70%;
        margin: 10px auto;
    }

    .carousel > section > article > div {
        width: 100%;
        margin: 10px auto;
        text-align: center;
    }

    .carousel > section > article > div > h2 {
        font-size: 22px;
    }

    .carousel > section > article > div > p {
        font-size: 16px;
    }

    /* Mini Vestiário */
    .galeria > .card {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .galeria > .card > article {
        width: 90%;
        margin: 20px auto;
    }

    .galeria > .card > article > h2 {
        font-size: 22px;
    }

    .galeria > .card > article > button {
        font-size: 16px;
        padding: 8px 12px;
    }

    footer > h1 {
        font-size: 18px;
    }
}
