.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 100%;
}

/* Estilo para a imagem da logo */
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Torna a logo branca */
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: brightness(0) invert(0.8) sepia(1) saturate(5) hue-rotate(0deg); /* Dourado no hover */
}

/* Estilo para o botão de suporte */
#supportButton {
    cursor: pointer;
    transition: all 0.3s ease;
}

#supportButton:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Ajuste de alinhamento */
.page-title {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

/* ADICIONE ESTE CSS */
.page-title {
    flex: 1;
    text-align: left;
    margin-left: 10px;
}

.header-logo {
    margin-left: auto;
    margin-right: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.logo-icon:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.logo-text {
    font-weight: 700;
    color: #d4af37;
    font-size: 18px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.page-title h2 {
    color: #d4af37;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.header-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Animation for header */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header {
    animation: headerSlideDown 0.6s ease-out;
}

/* Decorative line in header */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0.3;
}

@media (max-width: 420px) {
    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 375px) {
    .header-container {
        padding: 0 16px;
    }
}