nav {
    display: block;
    padding: 20px 0;
    width: 100%;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    background-color: #d4c6e1;
}

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

nav ul li {
    display: inline-block;
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #5a4737;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #D22E9F;
}

.imgLogo { 
    width: 8%;
    float: left;
}

body {
    background-color: rgb(32, 30, 30);
    font-family: "Montserrat", sans-serif;
    color: #f3e9e5
}

section {
    display: block
}

.olaSouMi {
    display: inline-block;
    text-align: center;
    padding: 80px 20px;
}

.olaSouMi h1 {
    font-size: 2.5em;
    margin-bottom: 0.3em;
    font-family: 'Stoke', serif;
}

.olaSouMi h3 {
    background-color: #5a4737;
    width: 100%;
    padding: 10px;
}

.olaSouMi p {
  font-size: 16px;
  margin: 0.3em 0;
  line-height: 1.6;
}

.blocoPrincipal {
    display: flex; 
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: 40px auto; 
    padding: 0 20px;
    gap: 20px;
    box-sizing: border-box;
}

.divisaoEsq {
    flex: 1;
    padding: 30px;
    border: dashed 4px #5a4737;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fotoMi {
    flex: 1;
    padding: 30px 0 30px 0;
    border: dashed 4px #5a4737;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #d4c6e1; 
    padding: 10px 10px;
    color: #5a4737;
    bottom: 0;
    position: relative;
    width: 99%;
    height: 50px;
}

footer .imgFot {
    display: inline;
    float: right;
    height: 100%;
    transition: transform 0.3s ease;
}

footer .imgFot:hover {
    transform: scale(1.1);
}

footer p {
    margin: 5px 0 0;
    font-size: 14px;
}