body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.main-header {
    background-color: #c90000;
    color: white;
    padding: 20px 20px;
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.menu-btn i {
    margin-right: 5px;
    font-size: 18px;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-wrapper img {
    max-height: 80px;
    height: auto;
    width: auto;
    display: block;
}


.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: transparent;
}

.right-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.right-tools i {
    font-size: 16px;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img, .logo-wrapper {
    user-select: none;
}

/* Oculta o texto "Continue lendo" no mobile */
@media (max-width: 600px) {
    .right-tools a {
        display: none;
    }
}
