.site-header {
    position: fixed;
    top: 24px !important;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: top 0.3s ease;
}

body.logged-in .site-header {
    top: 56px !important;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 6px 8px 6px 28px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    box-sizing: border-box;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo,
.custom-logo-link img {
    display: block;
    height: 34px;
    width: auto;
    content: url('/wp-content/uploads/2026/07/Recurso-2.svg');
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.main-menu li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-menu a {
    text-decoration: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: #2B2B2B;
    transition: color 0.2s ease;
}

.main-menu a:hover {
    color: #1FAF9E;
}

.main-menu li.current-menu-item > a,
.current-menu-item > a {
    color: #1FAF9E !important;
    font-weight: 600;
    background: transparent !important;
}

.main-menu li:last-child {
    margin-left: 12px;
}

.main-menu li:last-child a {
    position: relative;
    background: #FF8A00;
    color: #FFFFFF !important;
    padding: 10px 16px 10px 22px;
    border-radius: 14px;
    font-size: 0 !important;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 9c0 3.31-3.13 6-7 6-1.04 0-2.03-.2-2.92-.56L1 15.5l1.22-2.73C1.47 11.66 1 10.38 1 9c0-3.31 3.13-6 7-6s7 2.69 7 6z'/%3E%3Cpath d='M23 15c0 2.5-2.2 4.5-5 4.5-.75 0-1.46-.14-2.1-.41L13 20l.88-1.97C13.34 17.02 13 16.05 13 15c0-2.5 2.2-4.5 5-4.5s5 2 5 4.5z'/%3E%3Ccircle cx='5' cy='9' r='0.4' fill='%23ffffff'/%3E%3Ccircle cx='8' cy='9' r='0.4' fill='%23ffffff'/%3E%3Ccircle cx='11' cy='9' r='0.4' fill='%23ffffff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 26px;
    padding-right: 48px;
}

.main-menu li:last-child a::before {
    content: "Contáctanos";
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 600;
    position: relative;
    z-index: 3;
    margin-right: 18px;
}

.main-menu li:last-child a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 73%;
    height: 100%;
    background: #D46900;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.main-menu li:last-child a:hover::after {
    left: 0;
}

@media (max-width: 991px) {
    .site-header {
        top: 12px !important;
    }

    body.logged-in .site-header {
        top: 44px !important;
    }

    .container {
        padding: 0 15px;
    }

    .header-wrapper {
        height: 54px;
        padding: 0 12px 0 20px;
        border-radius: 10px;
    }

    .site-logo,
    .custom-logo-link img {
        height: 28px;
    }

    .main-navigation {
        display: none;
    }
}