body{
    width: 100%;
    background-color: #2a2a2a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav{
    background-color: #000000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    border-bottom: solid 2px #666;
}

nav a{
    color: white;
    font-weight: bold;
    box-sizing: border-box; /* Garante que o padding seja incluído na largura e altura do elemento */
}

nav .titulo-site{
    width: 200px;
}

.menu {
    flex-wrap: wrap;
    display: flex;
    list-style: none
}

.menu a {
    padding: 10px 20px; /* Define um padding padrão */
    border-radius: 15px; /* Adiciona bordas arredondadas, opcional */
    box-sizing: border-box; /* Garante que o padding seja incluído na largura e altura do elemento */
}

.menu a:hover{
    background-color: #f6e965;
    color: #000000;
}

.menu a.active {
color: #f6e965;
}

.menu a.active:hover{
    color: #000;

}

.menu li {
    padding-block: 0;
    letter-spacing: 3px;
    margin-left: 20px;
}
.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}


footer {
    border-top: solid 2px #666;
    background-color: #000000;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

#rodape h3{
    font-size: 50px;
    color: #f6e965;
    box-shadow: #000000;
}

.nomerodape h2,
.nomerodape p {
    margin: 0;
    display: inline-block;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #f6e965;
}
.container {
    background: #2a2a2a;
    display: flex;
    align-content: center;
    width: 95%;
    min-height: 60vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
.left, .right {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.left,
.right,
.about-text{
    border: solid 1px rgba(0, 0, 0, 0.1);
    background-color: #333333;
    color: #ffffff;
    text-align: center;
}
.right h2,
.left h2,
.operation h2{
    font-size: 30px;
    font-weight: 700;
}

.btn-whatsapp img{
    width: 20px;
    margin-right: 10px;
}
.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 35px;
    display: inline-flex; 
    align-items: center; 
    font-weight: 700;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}
.operation{
    margin-top: 35px;
    background-color: #2a2a2a;
    opacity: 0.85;
    border-radius: 20px;
    width: 450px;
    height: auto;
}
.social-icons ul{
    margin:25px 0 25px 0;
}
.social-icons li{
    display: inline-block;
    margin: 0 10px;
}
.social-icons a {
    text-decoration: none;
    color: #008cba;
    font-size: 20px;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    min-height: 60vh;
    background: #2a2a2a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}
.about-image {
    background-color: #333333;
    width: 450px;
    height: auto;
    border-radius: 10px;
    margin: 0 25px 0 25px;
    border: solid 3px #666;
}
.about-text {
    max-width: 550px;
}
.about-text h2 {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 30px;
    margin-bottom: 25px;
}
.highlight {
    font-style: italic;
    font-weight: bold;
}
.about-text p {
    margin-left: 45px;
    font-size: 14px;
    line-height: 1.5;
}

main{
    flex: 1;
}