* {
    margin: 0;
    padding: 0;
}

.menu ul {

    list-style: none;

}

.menu ul li {
    width: 150px;
    float: left;
}

header {
    background-color: rgba(128, 111, 111, 0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: white;

}

.menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    color: white;
    padding: 10px;

}

.menu li a {
    padding: 10px;
    display: inline;
    text-decoration: none;
    color: #b42321;
    /*letra menu*/
    height: 20px;
    width: 40px;
}

.menu li img {
    width: 70%;
    height: 100%;
    float: right;
    margin-left: 10px;
    border-radius: 20px;

}


.logoT {
    height: 96px;
    margin-left: 0px;
    border-radius: 15px;
}


.ant {
    width: 20%;
    height: 20%;
    background-color: #FAEBD7;
    margin-left: 700px;
}

.menu ul li:hover ul {
    visibility: visible
}

.menu a:hover {
    background-color: #FAEBD7;
    /*fundo ao passar o mause*/
    color: #b42321;
    /*letra ao passar o mause*/
}

.menu ul li:hover ul {
    height: auto;
    max-height: 420px;
}

body {
    background-image: url('Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: black;
    font-size: 23px;
    text-align: center;
}

.foto {
    width: 10%;
    height: 25%;
    margin-left: 100px;
    margin-right: auto;
    display: inline-block;
    text-decoration: none;
}



.titulo {
    font-size: 40px;
    text-decoration: none;
    padding: 10px;
    text-align: center;
    color: white;
    background-color: #a35943;
    border: 2px solid #b42321;
    border-radius: 10px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    main {
        padding: 20px;
    }

    section {
        margin-bottom: 40px;
    }

    .galeria {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .galeria .foto {
        margin: 0;
    }
}

.titulo:hover {
    background-color: #b42321;
}


.linha {
    text-decoration: none;
}


footer {
    background-color: #a35943;
    color: white;
    text-align: center;
    padding: 15px;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .menu {
        height: 60px;
    }

    .titulo {
        font-size: 30px;
    }

    body {
        font-size: 18px;
        padding-top: 70px;
    }

    .imagem {
        width: 50%;
        height: auto;
    }

    .foto {
        width: 20%;
        height: 15%;
        margin-left: 20px;
    }

    .menu li img {
        width: 50%;
    }

    .logoT {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .titulo {
        font-size: 25px;
    }

    .imagem {
        width: 70%;
    }

    .foto {
        width: 25%;
        margin-left: 10px;
    }

    body {
        font-size: 16px;
    }
}