* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ded3bf;
}

.center {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2%;
    flex-wrap: wrap;
}

.about-header {
    width: 100%;
    background-color: #69532c;
}

.about-header p {
    color: white;
    padding: 8px;
}

header h2 span {
    color: #69532c;
}

header h2 {
    font-size: 35px;
    color: #222;
}

.logo {
    right: 1000px;
    font-family: "Old English Text MT", cursive, sans-serif;
    font-size: 100px;
    margin-top: 5px;
}

.wrapper-header {
    padding: 40px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.banner-ads {
    width: 700px;
    max-width: 700px;
    height: 100px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-style: italic;
    padding: 10px;
}

.banner-ads h2 {
    color: white;
    font-size: 15px;
    font-style: italic;
}

/* MENU PRINCIPAL */

.menu-main {
    width: 100%;
    background-color: #69532c;
    padding: 8px;
    display: flex;
    gap: 20px;
    position: relative;
}

.menu-main > a,
.menu-main .dropdown > a {
    display: inline-block;
    margin: 0 10px;
    color: white;
    text-decoration: none;
    position: relative;
    padding: 0;
}

.menu-main a:hover {
    text-decoration: underline;
}

/* DROPDOWN 1º NÍVEL */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background-color: #fff;
    min-width: 150px;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    flex-direction: column;
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-content a {
    padding: 10px;
    display: block;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #eee;
}

/* DROPDOWN 2º NÍVEL */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu:hover .dropdown-subcontent {
    display: flex;
    flex-direction: column;
}

.dropdown-subcontent {
    display: none;
    position: absolute;
    top: 0;
    left: 150px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    min-width: 150px;
}

.dropdown-subcontent a {
    padding: 10px;
    display: block;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
}

.dropdown-subcontent a:hover {
    background-color: #eee;
}

/* NOTÍCIAS */

.noticias-wraper-1 {
    display: flex;
    width: 100%;
    cursor: pointer;
}

.noticia-destaque {
    width: 60%;
    padding-top: 20%;
    background-color: #222;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
}

.noticia-destaque-single {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.noticia-destaque-single h3 {
    padding: 10px;
    color: white;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
}

.outras-noticias-1 {
    display: flex;
    width: 40%;
    flex-wrap: wrap;
}

.outra-noticia-1-single {
    width: 50%;
    padding-top: 30%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid white;
    background-color: #222;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.outra-noticia-1-single h3 {
    padding: 7px;
    color: white;
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
}

.noticia-destaque:hover,
.outra-noticia-1-single:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}
