:root{
    --color-neutral-0: #0e0c0c;
    --color-neutral-10: #171717;
    --color-neutral-30: #a8a29e;
    --color-neutral-40: #f5f5f5;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    height: 80vh;
}

body {
    background-color: var(--color-neutral-0);
}

.center{
    font-family: 'Comic Sans MS';
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2%;
    flex-wrap: wrap;
}

.about-header{
    width: 100%;
    background-color: gray;
}

.about-header p{
    color: var(--color-neutral-40);
    padding: 8px;
}

header h2 span{
    color: gray;
}

header h2{
    font-size: 35px;
    color: #444;
}

.logo{
    margin-top: 10px;
}

.wraper-header{
    padding: 40px, 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: var(--color-neutral-40);
}

.banner-ads{
    width: 60%;
    height: 100px;
    background-color: var(--color-neutral-10);
    position: relative;
}
.banner-ads h2{
    position: absolute;
    left: 10px;
    top: 10px;
    color: var(--color-neutral-40);
    font-size: 15px;
    font-style: italic;
}

.menu-main{
    width: 100%;
    background-color: gray;
    padding: 8px;
}

.menu-main a{
    display: inline-block;
    margin: 0 10px;
    color: var(--color-neutral-40);
    text-decoration: none;
}

.menu-main a:hover{
    text-decoration: underline;
}

.noticia-wraper-1{
    display: flex;
    width: 100%;
}

.noticia-destaque{
    width: 100%;
    padding-top: 20%;
    background-color: var(--color-neutral-10);
    border: 2px solid var(--color-neutral-40);
    position: relative;
}

.noticia-destaque-single{
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.noticia-destaque-single h3{
    padding: 10px;
    color: var(--color-neutral-40);
}

.outras-noticias-1{
    display: flex;
    width: 40%;
    flex-wrap: wrap;
}

.outras-noticias-2{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.outra-noticia-1-single{
    width: 50%;
    padding-top: 30%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--color-neutral-40);
    background-color: var(--color-neutral-10);
    position: relative;
}

.outra-noticia-2-single{
    width: 25%;
    padding-top: 14%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--color-neutral-40);
    background-color: var(--color-neutral-10);
    position: relative;
}

.outra-noticia-1-single h3{
    padding: 10px;
    color: var(--color-neutral-40);
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
}

.outra-noticia-2-single h3{
    padding: 10px;
    color: var(--color-neutral-40);
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
}

footer{
    font-family: 'Minecraft';
    width: 100%;
    color: var(--color-neutral-40);
}

.footer_link {
    text-decoration: none;
}

#footer_content{
    background-color: var(--color-neutral-10);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 3.5rem;
}

#footer_contacts h1{
    margin-left: 2rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

#footer_contacts h1 img {
    height: 150px;
    width: 200px;
}

#footer_contacts p{
    font-size: 20px;
}

#footer_social_media{
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

#footer_social_media .footer_link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: var(--color-neutral-40);
    border-radius: 50%;
    transition: all 0.4s;
}

#footer_social_media .footer_link:hover {
    opacity: 0.8;
}

#footer_social_media .footer_link i{
    font-size: 1.25rem;
}

#instagram {
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}

#facebook {
    background-color: #4267b3;
}

#whatsapp {
    background-color: #25d366;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list .footer-link {
    color: var(--color-neutral-30);
    text-decoration: none;
    transition: all 0.4s;
}

.footer-list .footer-link:hover {
    color: #7f37c9;
}

#footer_subscribe {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#footer_subscribe p {
    color: var(--color-neutral-30);
}

#input_group {
    display: flex;
    align-items: center;
    background-color: var(--color-neutral-0);
    border-radius: 4px;
}

#input_group input {
    all: unset;
    padding: 0.75rem;
}

#input_group button {
    background-color: #7f37c9;
    border: none;
    color: var(--color-neutral-40);
    padding: 0.75rem 1.25rem; /* Ajuste de padding para incluir altura e largura */
    border-radius: 0px 4px 4px 0px;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto; /* Certifique-se de que o botão tenha altura automática */
}

#input_group button i {
    font-size: 1rem; /* Ajuste do tamanho do ícone dentro do botão */
}

#input_group button:hover {
    opacity: 0.8;
}

#footer_copyright {
    display: flex;
    justify-content: center;
    background-color: var(--color-neutral-0);
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 100;
}

