:root {
    --theme-primary: #126b8e;
    --theme-primary-strong: #0a4d69;
    --theme-primary-soft: #e4f3f8;
    --theme-accent: #27a8d1;
    --theme-dark: #071a24;
    --theme-surface: #ffffff;
    --theme-background: #f5f8fa;
    --theme-text: #17242c;
    --theme-muted: #687780;
    --theme-line: #dce5e9;

    --public-font:
        "Inter",
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --public-container: 1380px;
    --public-header-height: 6.25rem;

    --public-radius-small: 0.65rem;
    --public-radius: 0.9rem;
    --public-radius-large: 1.2rem;

    --public-control-height: 3.55rem;

    --public-shadow-small:
        0 0.45rem 1.4rem
        rgba(7, 25, 36, 0.07);

    --public-shadow:
        0 1rem 2.8rem
        rgba(7, 25, 36, 0.1);

    --public-shadow-large:
        0 1.8rem 5rem
        rgba(7, 25, 36, 0.17);
}

html {
    min-width: 320px;
    font-size: 100%;
    scroll-padding-top:
        calc(
            var(--public-header-height)
            + 1.25rem
        );
    scroll-behavior: auto;
}

body.public-site {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--theme-text);
    background: var(--theme-background);
    font-family: var(--public-font);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.public-site *,
body.public-site *::before,
body.public-site *::after {
    box-sizing: border-box;
}

body.public-site a {
    color: inherit;
    text-decoration: none;
}

body.public-site button,
body.public-site input,
body.public-site select,
body.public-site textarea {
    font: inherit;
}

body.public-site button,
body.public-site a {
    -webkit-tap-highlight-color: transparent;
}

body.public-site img,
body.public-site svg {
    display: block;
}

body.public-site img {
    max-width: 100%;
}

html.is-premium-menu-open,
body.is-premium-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.public-container {
    width:
        min(
            calc(100% - 3.5rem),
            var(--public-container)
        );
    margin-inline: auto;
}

.public-main {
    position: relative;
    min-height: 55vh;
    background: var(--theme-background);
}

.public-skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 9999;
    padding: 0.85rem 1.1rem;
    color: #ffffff;
    background: var(--theme-dark);
    border-radius: var(--public-radius-small);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.public-skip-link:focus {
    transform: translateY(0);
}

.public-admin-bar {
    position: relative;
    z-index: 150;
    color: rgba(255, 255, 255, 0.78);
    background: var(--theme-dark);
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.public-admin-bar-inner {
    display: flex;
    min-height: 2.8rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.public-admin-bar a {
    color: var(--theme-accent);
}

.premium-header {
    position: sticky;
    top: 0;
    z-index: 140;
    width: 100%;
    background: var(--theme-surface);
    border-bottom: 1px solid var(--theme-line);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.premium-header.is-scrolled {
    border-bottom-color: transparent;
    box-shadow: var(--public-shadow-small);
}

.premium-header-inner {
    display: flex;
    min-height: var(--public-header-height);
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.premium-brand,
.premium-sidebar-brand,
.premium-footer-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 1rem;
}

.premium-brand {
    max-width: 19rem;
    flex: 0 1 19rem;
}

.premium-brand-logo {
    width: auto;
    max-width: 18rem;
    height: 4.55rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    object-position: left center;
}

.premium-brand-symbol {
    display: grid;
    width: 3.65rem;
    height: 3.65rem;
    flex: 0 0 3.65rem;
    place-items: center;
    color: #ffffff;
    background: var(--theme-primary);
    border-radius: 0.8rem;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.premium-brand-text,
.premium-sidebar-brand > span:last-child,
.premium-footer-brand > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.premium-brand-text strong,
.premium-sidebar-brand strong,
.premium-footer-brand strong {
    overflow: hidden;
    color: var(--theme-dark);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.premium-brand-text small,
.premium-sidebar-brand small,
.premium-footer-brand small {
    margin-top: 0.22rem;
    overflow: hidden;
    color: var(--theme-muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.premium-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.premium-nav-link {
    position: relative;
    display: inline-flex;
    min-height: 3.45rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--theme-muted);
    background: transparent;
    border: 0;
    border-radius: 0.7rem;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    transition:
        color 150ms ease,
        background-color 150ms ease;
}

.premium-nav-link::after {
    position: absolute;
    right: 1rem;
    bottom: 0.38rem;
    left: 1rem;
    height: 2px;
    content: "";
    background: var(--theme-primary);
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.45);
    transition:
        opacity 150ms ease,
        transform 150ms ease;
}

.premium-nav-link:hover,
.premium-nav-link.is-active,
.premium-services-menu.is-open
.premium-services-trigger {
    color: var(--theme-primary-strong);
    background: var(--theme-primary-soft);
}

.premium-nav-link.is-active::after,
.premium-services-menu.is-open
.premium-services-trigger::after {
    opacity: 1;
    transform: scaleX(1);
}

.premium-services-menu {
    position: relative;
}

.premium-services-menu::after {
    position: absolute;
    top: 100%;
    right: -1.2rem;
    left: -1.2rem;
    height: 1.2rem;
    content: "";
}

.premium-services-trigger svg {
    transition: transform 170ms ease;
}

.premium-services-menu.is-open
.premium-services-trigger svg {
    transform: rotate(180deg);
}

.premium-services-panel {
    position: absolute;
    top: calc(100% + 0.95rem);
    left: 50%;
    width: min(57rem, 86vw);
    visibility: hidden;
    overflow: hidden;
    background: var(--theme-surface);
    border: 1px solid var(--theme-line);
    border-radius: 1.1rem;
    box-shadow: var(--public-shadow-large);
    opacity: 0;
    pointer-events: none;
    transform:
        translate(-50%, 0.75rem);
    transform-origin: top center;
    transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 180ms ease;
}

.premium-services-menu.is-open
.premium-services-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform:
        translate(-50%, 0);
}

.premium-services-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.8rem 1.9rem 1.45rem;
    background:
        linear-gradient(
            135deg,
            var(--theme-primary-soft),
            color-mix(
                in srgb,
                var(--theme-primary-soft) 30%,
                var(--theme-surface)
            )
        );
    border-bottom: 1px solid var(--theme-line);
}

.premium-menu-eyebrow {
    display: block;
    color: var(--theme-primary-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.premium-services-panel-header h2 {
    max-width: 34rem;
    margin: 0.65rem 0 0;
    color: var(--theme-dark);
    font-size: 1.58rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.premium-service-count {
    flex: 0 0 auto;
    padding: 0.55rem 0.82rem;
    color: var(--theme-primary-strong);
    background: var(--theme-surface);
    border: 1px solid var(--theme-line);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 750;
}

.premium-services-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: 0.65rem;
    max-height: min(34rem, 62vh);
    overflow-y: auto;
    padding: 1.2rem;
    overscroll-behavior: contain;
}

.premium-service-menu-link {
    display: grid;
    grid-template-columns:
        3.55rem
        minmax(0, 1fr)
        auto;
    min-width: 0;
    align-items: center;
    gap: 0.95rem;
    padding: 1rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    transition:
        background-color 150ms ease,
        border-color 150ms ease;
}

.premium-service-menu-link:hover,
.premium-service-menu-link.is-active {
    background: var(--theme-primary-soft);
    border-color:
        color-mix(
            in srgb,
            var(--theme-primary) 20%,
            var(--theme-line)
        );
}

.premium-service-menu-icon {
    display: grid;
    width: 3.55rem;
    height: 3.55rem;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
    background: var(--theme-primary);
    border-radius: 0.72rem;
    font-size: 1rem;
    font-weight: 800;
}

.premium-service-menu-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.premium-service-menu-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.premium-service-menu-copy strong {
    overflow: hidden;
    color: var(--theme-dark);
    font-size: 0.92rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.premium-service-menu-copy small {
    display: -webkit-box;
    margin-top: 0.3rem;
    overflow: hidden;
    color: var(--theme-muted);
    font-size: 0.75rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.premium-service-menu-arrow {
    color: var(--theme-muted);
    transition:
        color 150ms ease,
        transform 150ms ease;
}

.premium-service-menu-link:hover
.premium-service-menu-arrow {
    color: var(--theme-primary);
    transform: translateX(0.18rem);
}

.premium-services-empty {
    grid-column: 1 / -1;
    padding: 2.4rem;
    color: var(--theme-muted);
    text-align: center;
}

.premium-services-panel-footer {
    display: flex;
    min-height: 4.25rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.6rem;
    color: var(--theme-muted);
    background:
        color-mix(
            in srgb,
            var(--theme-background) 70%,
            var(--theme-surface)
        );
    border-top: 1px solid var(--theme-line);
    font-size: 0.82rem;
}

.premium-services-panel-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--theme-primary-strong);
    font-weight: 750;
}

.premium-header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.75rem;
}

.premium-header-phone {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.premium-header-phone-icon {
    display: grid;
    width: 3.1rem;
    height: 3.1rem;
    place-items: center;
    color: var(--theme-primary);
    background: var(--theme-primary-soft);
    border:
        1px solid
        color-mix(
            in srgb,
            var(--theme-primary) 16%,
            var(--theme-line)
        );
    border-radius: 0.68rem;
}

.premium-header-phone-copy {
    display: flex;
    flex-direction: column;
}

.premium-header-phone-copy small {
    color: var(--theme-muted);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.premium-header-phone-copy strong {
    margin-top: 0.12rem;
    color: var(--theme-dark);
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
}

.premium-account-button,
.premium-header-cta {
    display: inline-flex;
    min-height: var(--public-control-height);
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    border-radius: 0.7rem;
    font-size: 0.82rem;
    font-weight: 750;
    white-space: nowrap;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease;
}

.premium-account-button {
    color: var(--theme-primary-strong);
    background: var(--theme-surface);
    border: 1px solid var(--theme-line);
}

.premium-account-button:hover {
    color: var(--theme-primary-strong);
    background: var(--theme-primary-soft);
    border-color:
        color-mix(
            in srgb,
            var(--theme-primary) 25%,
            var(--theme-line)
        );
}

.premium-header-cta {
    color: #ffffff;
    background: var(--theme-primary);
    border: 1px solid var(--theme-primary);
}

.premium-header-cta:hover {
    background: var(--theme-primary-strong);
    border-color: var(--theme-primary-strong);
}

.premium-mobile-menu-button {
    display: none;
    width: 3.55rem;
    height: 3.55rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.36rem;
    color: var(--theme-dark);
    background: var(--theme-surface);
    border: 1px solid var(--theme-line);
    border-radius: 0.72rem;
    cursor: pointer;
}

.premium-mobile-menu-button span {
    width: 1.42rem;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.premium-sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 180;
    visibility: hidden;
    background: rgba(4, 13, 19, 0.64);
    opacity: 0;
    pointer-events: none;
    touch-action: none;
    transition:
        opacity 190ms ease,
        visibility 190ms ease;
}

.premium-mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 190;
    display: flex;
    width: min(32rem, 94vw);
    height: 100dvh;
    flex-direction: column;
    visibility: hidden;
    color: var(--theme-text);
    background: var(--theme-surface);
    border-left: 1px solid var(--theme-line);
    box-shadow:
        -1.8rem 0 5rem
        rgba(3, 14, 21, 0.22);
    pointer-events: none;
    transform: translateX(102%);
    transition:
        transform 220ms ease,
        visibility 220ms ease;
}

body.is-premium-menu-open
.premium-sidebar-overlay {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

body.is-premium-menu-open
.premium-mobile-sidebar {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.premium-sidebar-header {
    display: flex;
    min-height: 7rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.35rem;
    background:
        color-mix(
            in srgb,
            var(--theme-primary-soft) 45%,
            var(--theme-surface)
        );
    border-bottom: 1px solid var(--theme-line);
}

.premium-sidebar-brand {
    max-width: calc(100% - 4.5rem);
}

.premium-sidebar-brand img {
    width: auto;
    max-width: 16rem;
    height: 4rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    object-position: left center;
}

.premium-sidebar-close {
    display: grid;
    width: 3.4rem;
    height: 3.4rem;
    flex: 0 0 3.4rem;
    place-items: center;
    color: var(--theme-dark);
    background: var(--theme-surface);
    border: 1px solid var(--theme-line);
    border-radius: 0.72rem;
    cursor: pointer;
}

.premium-sidebar-close:hover {
    color: var(--theme-primary-strong);
    background: var(--theme-primary-soft);
}

.premium-sidebar-scroll {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem 1.35rem 2rem;
    -webkit-overflow-scrolling: touch;
}

.premium-mobile-nav {
    display: flex;
    flex-direction: column;
}

.premium-mobile-nav-link {
    display: flex;
    width: 100%;
    min-height: 4.7rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.2rem;
    color: var(--theme-text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--theme-line);
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 750;
    text-align: left;
}

.premium-mobile-nav-link small {
    color: var(--theme-muted);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.premium-mobile-nav-link.is-active {
    color: var(--theme-primary-strong);
}

.premium-mobile-nav-link.is-active
> small {
    color: var(--theme-primary);
}

.premium-mobile-service-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.premium-mobile-service-meta svg {
    color: var(--theme-muted);
    transition: transform 170ms ease;
}

.premium-mobile-services.is-open
.premium-mobile-service-meta svg {
    transform: rotate(180deg);
}

.premium-mobile-services-panel {
    display: grid;
    gap: 0.5rem;
    padding: 0.9rem 0 1.2rem;
    border-bottom: 1px solid var(--theme-line);
}

.premium-mobile-services-panel[hidden] {
    display: none;
}

.premium-mobile-service-link {
    display: grid;
    grid-template-columns:
        2.4rem
        minmax(0, 1fr)
        auto;
    min-height: 3.75rem;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    color: var(--theme-muted);
    background:
        color-mix(
            in srgb,
            var(--theme-background) 66%,
            var(--theme-surface)
        );
    border: 1px solid var(--theme-line);
    border-radius: 0.68rem;
    font-size: 0.87rem;
    font-weight: 700;
}

.premium-mobile-service-link.is-active {
    color: var(--theme-primary-strong);
    background: var(--theme-primary-soft);
    border-color:
        color-mix(
            in srgb,
            var(--theme-primary) 24%,
            var(--theme-line)
        );
}

.premium-mobile-service-index {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    color: var(--theme-primary-strong);
    background: var(--theme-surface);
    border: 1px solid var(--theme-line);
    border-radius: 0.5rem;
    font-size: 0.64rem;
    font-weight: 800;
}

.premium-sidebar-account {
    display: grid;
    grid-template-columns:
        3.25rem
        minmax(0, 1fr)
        auto;
    min-height: 5.4rem;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.35rem;
    padding: 0.85rem;
    color: var(--theme-primary-strong);
    background: var(--theme-primary-soft);
    border:
        1px solid
        color-mix(
            in srgb,
            var(--theme-primary) 20%,
            var(--theme-line)
        );
    border-radius: 0.85rem;
}

.premium-sidebar-account-icon {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    color: #ffffff;
    background: var(--theme-primary);
    border-radius: 0.7rem;
}

.premium-sidebar-account > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.premium-sidebar-account small {
    color: var(--theme-muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-sidebar-account strong {
    margin-top: 0.2rem;
    color: var(--theme-dark);
    font-size: 0.88rem;
    font-weight: 800;
}

.premium-sidebar-contact {
    margin-top: 2rem;
}

.premium-sidebar-section-label {
    display: block;
    color: var(--theme-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.premium-sidebar-action-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.premium-sidebar-action {
    display: flex;
    min-width: 0;
    min-height: 5.1rem;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem;
    color: var(--theme-primary-strong);
    background: var(--theme-primary-soft);
    border:
        1px solid
        color-mix(
            in srgb,
            var(--theme-primary) 20%,
            var(--theme-line)
        );
    border-radius: 0.78rem;
}

.premium-sidebar-action.is-whatsapp {
    color: #126c45;
    background: #e7f7ef;
    border-color: #ccecdf;
}

.premium-sidebar-action > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.premium-sidebar-action small {
    color: inherit;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.premium-sidebar-action strong {
    margin-top: 0.22rem;
    overflow: hidden;
    color: var(--theme-dark);
    font-size: 0.78rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.premium-sidebar-footer {
    padding: 1.2rem 1.35rem 1.4rem;
    background: var(--theme-dark);
    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.premium-sidebar-footer > span {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.7rem;
}

.premium-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.68);
    background: var(--theme-dark);
}

.premium-footer-accent {
    height: 0.32rem;
    background:
        linear-gradient(
            90deg,
            var(--theme-primary-strong),
            var(--theme-primary),
            var(--theme-accent)
        );
}

.premium-footer-main {
    display: grid;
    grid-template-columns:
        minmax(20rem, 1.3fr)
        repeat(
            3,
            minmax(10rem, 0.7fr)
        );
    gap: 3.8rem;
    padding-block: 5rem;
}

.premium-footer-brand img {
    width: auto;
    max-width: 17rem;
    height: 4.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    object-position: left center;
}

.premium-footer-brand strong {
    color: #ffffff;
}

.premium-footer-brand small {
    color: rgba(255, 255, 255, 0.46);
}

.premium-footer-description {
    max-width: 30rem;
    margin: 1.45rem 0 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.92rem;
    line-height: 1.75;
}

.premium-footer-column h2 {
    margin: 0 0 1.4rem;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.premium-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.9rem;
}

.premium-footer-links a,
.premium-footer-links span {
    width: fit-content;
    color: rgba(255, 255, 255, 0.62);
    transition:
        color 150ms ease,
        transform 150ms ease;
}

.premium-footer-links a:hover {
    color: var(--theme-accent);
    transform: translateX(0.18rem);
}

.premium-footer-contact-list {
    display: grid;
    gap: 1rem;
}

.premium-footer-contact {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.8rem;
}

.premium-footer-contact-icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    place-items: center;
    color: var(--theme-accent);
    background: rgba(255, 255, 255, 0.055);
    border:
        1px solid
        rgba(255, 255, 255, 0.09);
    border-radius: 0.68rem;
}

.premium-footer-contact > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.premium-footer-contact small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.premium-footer-contact strong {
    margin-top: 0.18rem;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    font-weight: 700;
    text-overflow: ellipsis;
}

.premium-footer-bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.premium-footer-bottom-inner {
    display: flex;
    min-height: 4.8rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.74rem;
}

.premium-footer-bottom nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.premium-footer-bottom a:hover {
    color: var(--theme-accent);
}

.premium-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.premium-footer-socials {
    margin-top: 1.45rem;
}

.premium-social-link {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.055);
    border:
        1px solid
        rgba(255, 255, 255, 0.09);
    border-radius: 0.68rem;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease;
}

.premium-social-link:hover {
    color: var(--theme-dark);
    background: var(--theme-accent);
    border-color: var(--theme-accent);
}

.premium-social-link svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: currentColor;
}

.premium-social-link svg[fill="none"] {
    fill: none;
}

.premium-floating-whatsapp {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 85;
    display: inline-flex;
    min-height: 4.2rem;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    background: #168b55;
    border: 1px solid #168b55;
    border-radius: 0.82rem;
    box-shadow:
        0 0.9rem 2.2rem
        rgba(13, 103, 62, 0.22);
    transition: background-color 150ms ease;
}

.premium-floating-whatsapp:hover {
    background: #117747;
}

.premium-floating-whatsapp-icon {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 0.6rem;
}

.premium-floating-whatsapp-copy {
    display: flex;
    flex-direction: column;
}

.premium-floating-whatsapp-copy small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.64rem;
    font-weight: 650;
}

.premium-floating-whatsapp-copy strong {
    margin-top: 0.14rem;
    font-size: 0.82rem;
    font-weight: 800;
}

@media (max-width: 1320px) {
    .premium-header-inner {
        gap: 1.3rem;
    }

    .premium-nav-link {
        padding-inline: 0.8rem;
    }

    .premium-header-phone-copy {
        display: none;
    }

    .premium-header-phone-icon {
        width: 3.55rem;
        height: 3.55rem;
    }

    .premium-footer-main {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }
}

@media (max-width: 1080px) {
    :root {
        --public-header-height: 5.65rem;
    }

    .public-container {
        width:
            min(
                calc(100% - 2.5rem),
                var(--public-container)
            );
    }

    .premium-desktop-nav,
    .premium-header-cta,
    .premium-header-phone {
        display: none;
    }

    .premium-mobile-menu-button {
        display: flex;
    }

    .premium-brand {
        max-width: 17rem;
        flex-basis: 17rem;
    }

    .premium-brand-logo {
        max-width: 15.5rem;
        height: 4rem;
    }
}

@media (max-width: 700px) {
    :root {
        --public-header-height: 5.1rem;
    }

    .public-container {
        width:
            min(
                calc(100% - 1.5rem),
                var(--public-container)
            );
    }

    .public-admin-bar-inner {
        min-height: 2.45rem;
        font-size: 0.65rem;
    }

    .premium-header-inner {
        gap: 0.7rem;
    }

    .premium-brand {
        max-width: 13.5rem;
        flex-basis: 13.5rem;
    }

    .premium-brand-logo {
        max-width: 11.8rem;
        height: 3.4rem;
    }

    .premium-brand-symbol {
        width: 3rem;
        height: 3rem;
        flex-basis: 3rem;
    }

    .premium-brand-text {
        max-width: 8.5rem;
    }

    .premium-brand-text strong {
        font-size: 0.86rem;
    }

    .premium-brand-text small {
        display: none;
    }

    .premium-account-button {
        width: 3.2rem;
        min-height: 3.2rem;
        padding: 0;
    }

    .premium-account-button span {
        display: none;
    }

    .premium-mobile-menu-button {
        width: 3.2rem;
        height: 3.2rem;
    }

    .premium-sidebar-action-grid {
        grid-template-columns: 1fr;
    }

    .premium-footer-main {
        grid-template-columns: 1fr;
        gap: 2.8rem;
        padding-block: 4rem;
    }

    .premium-footer-bottom-inner {
        min-height: 5.8rem;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding-block: 1.2rem;
    }

    .premium-floating-whatsapp {
        right: 0.9rem;
        bottom: 0.9rem;
        width: 4rem;
        height: 4rem;
        min-height: 0;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }

    .premium-floating-whatsapp-icon {
        width: auto;
        height: auto;
        background: transparent;
    }

    .premium-floating-whatsapp-copy {
        display: none;
    }
}

@media (max-width: 460px) {
    .premium-mobile-sidebar {
        width: 100%;
    }

    .premium-sidebar-header,
    .premium-sidebar-scroll,
    .premium-sidebar-footer {
        padding-inline: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
}
