.container-hcor-header {
    width: 100%;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 8px;
}

.container-hcor-header .hcor-header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1272px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.06);
    padding: 20px 24px;
}

.container-hcor-header .hcor-header-desktop-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px;
}

.container-hcor-header .hcor-header-logo img {
    display: block;
    width: 160px;
    height: auto;
}

.container-hcor-header .hcor-header-desktop-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.container-hcor-header .hcor-header-desktop-link {
    color: #472A33;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.container-hcor-header .hcor-header-desktop-link:hover {
    color: #866f76;
}

.container-hcor-header .hcor-header-button {
    background-color: #C51B53;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 56px;
    gap: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.container-hcor-header .hcor-header-button:hover {
    background-color: #a41645;
}

.container-hcor-header .hcor-header-button-text {
    color: #FFEFE5;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.container-hcor-header .hcor-header-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFEFE5;
    font-size: 16px;
    font-weight: 600;
}

.container-hcor-header .hcor-header-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.container-hcor-header .hcor-header-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    flex-direction: column;
    padding: 24px;
}

.container-hcor-header .hcor-header-mobile-overlay.active {
    display: flex;
    animation: fadeIn 0.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.container-hcor-header .hcor-header-mobile-topbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.container-hcor-header .hcor-header-mobile-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-hcor-header .hcor-header-mobile-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 56px;
    gap: 32px;
    width: 100%;
}

.container-hcor-header .hcor-header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.container-hcor-header .hcor-header-mobile-link {
    color: #64748B;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    text-decoration: none;
}

.container-hcor-header .hcor-header-button-mobile {
    background-color: #C51B53;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 56px;
    gap: 12px;
    border-radius: 12px;
    text-decoration: none;
}


@media (max-width: 1024px) {

    .container-hcor-header .hcor-header-inner {
        padding: 20px 24px;
        max-width: 100%;
    }

    .container-hcor-header .hcor-header-desktop-actions {
        display: none;
    }

    .container-hcor-header .hcor-header-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}