html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

header {
    position: fixed !important;
    width: 100vw;
    top: 0;
    z-index: 50;
}
.strong {
    font-weight: 550;
}

li svg {
    display: block;
    margin-top: 2px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.language-selector {
    position: relative;
}
.language-dropdown {
    position: absolute;
    display: none;
    right: 0px;
    top: 100%;
    margin-top: 0.5rem;
    width: max-content;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.language-selector:hover .language-dropdown {
    display: block;
}
.language-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}
.language-option:hover {
    background-color: #f9f7f3;
}
.flag-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    object-fit: cover;
}
.transition-color {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.link-animado {
    display: inline-block;
    position: relative;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.5s ease;
}

.link-animado:hover {
    color: #3a5a40;
}

.link-animado::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #f8b400;
    transform-origin: bottom left;
    transition: transform 0.5s ease-out;
}

.link-animado:hover::after {
    transform: scaleX(1);
}

.hover-target.hover-ativo {
    color: #3a5a40;
}

.hover-target.hover-ativo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #f8b400;
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: transform 0.5s ease-out;
}