/* Logo ZTech Chamados Técnicos */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo-graphic {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-headset {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #2c3e50;
    border-radius: 50%;
    background: linear-gradient(145deg, #34495e, #2c3e50);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logo-headset::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 2px solid #ecf0f1;
    border-radius: 50%;
    background: #34495e;
}

.logo-wrench {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 20px;
    height: 20px;
    background: #ecf0f1;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-wrench::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: #ecf0f1;
    border-radius: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin: 0;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #7f8c8d;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsivo */
@media (max-width: 768px) {
    .logo-container {
        gap: 10px;
    }
    
    .logo-graphic {
        width: 40px;
        height: 40px;
    }
    
    .logo-brand {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
}

@media (max-width: 576px) {
    .logo-brand {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.5rem;
    }
} 