header {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--primary-background-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 16px;
    position: fixed;
    z-index: 9999;
}

nav {
    width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name a {
    font-size: 24px;
    color: var(--company-name-color);
}

.links {
    display: flex;
    background-color: #eeeeee;
    border-radius: 24px;
    margin: 0px 0px 0px 16px;
    padding: 8px;
}

.links a {
    background-color: #eeeeee;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 24px;
}

.links a:hover {
    background-color: #FFFFFF;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.whatsapp button {
    background-color: #25D366;
    padding: 10px 12px;
}

.call button {
    background-color: #282828;
    padding: 10px 12px;
}

.language {
    position: relative;
    display: flex;
    background-color: #EEEEEE;
    padding: 8px 12px;
    border-radius: 24px;
    gap: 4px;
}

.language a {
    background-color: #EEEEEE;
}

.languages svg {
    vertical-align: middle;
    cursor: pointer;
}

.dropdown-language {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background-color: #EEEEEE;
    border-radius: 24px;
    z-index: 1000;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    gap: 4px;
}

.dropdown-language a {
    padding: 6px 12px;
    border-radius: 24px;
    background-color: #EEEEEE;
}

.dropdown-language a:hover {
    background-color: #FFFFFF;
}

.drop-down {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-down-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.drop-down-icon .bar {
    background-color: #282828;
    height: 3px;
    width: 100%;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 4px 0;
}

.drop-down-links {
    position: fixed;
    left: 0;
    top: 70px;
    width: 100vw;
    height: auto;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

.drop-down-links.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.drop-down-links a {
    font-size: 16px;
    padding: 24px 16px 16px 16px;
}

.drop-down-links a:hover {
    background-color: #EEEEEE;
}

.drop-down-icon.open .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.drop-down-icon.open .bar:nth-child(2) {
    opacity: 0;
}

.drop-down-icon.open .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media screen and (max-width: 620px) {
    nav {
        flex-direction: column;
        gap: 16px;
    }

    .buttons {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .drop-down-links {
        top: 122px;
    }
}

@media screen and (max-width: 1115px) {
    .links {
        display: none;
    }

    .drop-down {
        display: flex;
    }
}

@media screen and (min-width: 1115px) {
    .drop-down {
        display: none;
    }
}