:root {
    --vvs-green: #097324;
    --vvs-green-dark: #05581a;
    --vvs-mint: #daf2c2;
    --vvs-white: #ffffff;
    --vvs-ink: #12381e;
    --vvs-safe-top: max(16px, env(safe-area-inset-top));
    --vvs-safe-right: max(18px, env(safe-area-inset-right));
    --vvs-safe-bottom: max(14px, env(safe-area-inset-bottom));
    --vvs-safe-left: max(18px, env(safe-area-inset-left));
    --vvs-radius-xl: 30px;
    --vvs-radius-lg: 22px;
    --vvs-radius-md: 16px;
    --vvs-shadow: 0 18px 60px rgba(6, 45, 18, .16);
    --vvs-ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

.vvs-skin {
    position: fixed;
    z-index: 20;
    inset: 0;
    width: 100%;
    height: -webkit-fill-available;
    height: 100svh;
    height: 100dvh;
    overflow: hidden;
    pointer-events: none;
    color: var(--vvs-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

.vvs-skin button,
.vvs-skin a {
    font: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.vvs-skin button:focus-visible,
.vvs-skin a:focus-visible {
    outline: 3px solid var(--vvs-mint);
    outline-offset: 3px;
}

.vvs-header {
    position: absolute;
    z-index: 30;
    top: var(--vvs-safe-top);
    right: var(--vvs-safe-right);
    left: var(--vvs-safe-left);
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 180px;
    align-items: center;
    min-height: 58px;
    padding: 7px 8px 7px 18px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 20px;
    background: rgba(255, 255, 255, .91);
    box-shadow: 0 12px 42px rgba(5, 55, 20, .12);
    pointer-events: auto;
}

@supports (backdrop-filter: blur(12px)) {
    .vvs-header,
    .vvs-dock,
    .vvs-whatsapp,
    .vvs-panel {
        background: rgba(255, 255, 255, .84);
        -webkit-backdrop-filter: blur(14px) saturate(125%);
        backdrop-filter: blur(14px) saturate(125%);
    }
}

.vvs-logo {
    display: block;
    width: 100px;
    height: 38px;
    object-fit: contain;
    object-position: left center;
}

.vvs-location {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(44vw, 520px);
    min-width: 0;
    text-align: center;
    line-height: 1;
    transform: translate(-50%, -50%);
}

.vvs-location span {
    margin-bottom: 5px;
    color: rgba(18, 56, 30, .58);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.vvs-location strong {
    overflow: hidden;
    max-width: min(38vw, 420px);
    color: var(--vvs-green);
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vvs-round-button,
.vvs-panel-close {
    display: inline-grid;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    place-items: center;
    border: 0;
    border-radius: 14px;
    background: var(--vvs-green);
    color: white;
    cursor: pointer;
    transition: transform .25s var(--vvs-ease), background-color .25s ease, box-shadow .25s ease;
}

.vvs-menu-button {
    grid-column: 3;
    justify-self: end;
}

.vvs-round-button svg,
.vvs-panel-close svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.vvs-menu-button .vvs-close-icon {
    display: none;
}

.vvs-menu-button[aria-expanded="true"] .vvs-menu-icon {
    display: none;
}

.vvs-menu-button[aria-expanded="true"] .vvs-close-icon {
    display: block;
}

.vvs-quick-tools {
    position: absolute;
    z-index: 31;
    top: calc(var(--vvs-safe-top) + 70px);
    right: calc(var(--vvs-safe-right) + 6px);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 8px;
    pointer-events: auto;
    transition: opacity .25s ease, visibility .25s;
}

.vvs-tool-button {
    position: relative;
    display: grid;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 15px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 10px 30px rgba(5, 55, 20, .13);
    color: var(--vvs-green);
    cursor: pointer;
    transition: color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s var(--vvs-ease);
}

.vvs-tool-button[aria-pressed="true"] {
    background: var(--vvs-green);
    color: white;
}

.vvs-tool-button:disabled {
    cursor: not-allowed;
    opacity: .48;
}

.vvs-tool-icon {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vvs-audio-off-icon,
.vvs-contract-icon {
    display: none;
}

.vvs-tool-button[aria-pressed="false"] .vvs-audio-on-icon {
    display: none;
}

.vvs-tool-button[aria-pressed="false"] .vvs-audio-off-icon {
    display: block;
}

#vvsFullscreenButton[aria-pressed="true"] .vvs-expand-icon {
    display: none;
}

#vvsFullscreenButton[aria-pressed="true"] .vvs-contract-icon {
    display: block;
}

.vvs-tool-label {
    position: absolute;
    top: 50%;
    right: calc(100% + 9px);
    visibility: hidden;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(5, 68, 20, .92);
    box-shadow: 0 8px 24px rgba(2, 35, 11, .18);
    color: white;
    font-size: 9px;
    font-weight: 750;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(5px, -50%);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    white-space: nowrap;
}

.vvs-toast {
    position: absolute;
    z-index: 120;
    bottom: calc(var(--vvs-safe-bottom) + 82px);
    left: 50%;
    visibility: hidden;
    max-width: min(90vw, 420px);
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 14px;
    background: rgba(5, 68, 20, .94);
    box-shadow: 0 12px 36px rgba(2, 35, 11, .24);
    color: white;
    font-size: 11px;
    font-weight: 750;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transform: translate(-50%, 8px);
    transition: opacity .22s ease, transform .22s var(--vvs-ease), visibility .22s;
}

.vvs-toast.vvs-show {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.vvs-dock {
    position: absolute;
    z-index: 30;
    bottom: var(--vvs-safe-bottom);
    left: 50%;
    display: flex;
    align-items: stretch;
    gap: 2px;
    min-height: 68px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--vvs-shadow);
    pointer-events: auto;
    transform: translateX(-50%);
}

.vvs-dock-item {
    display: flex;
    width: 78px;
    min-width: 64px;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 6px 8px;
    border: 0;
    border-radius: 15px;
    background: transparent;
    color: #315c3c;
    text-decoration: none;
    cursor: pointer;
    transition: color .22s ease, background-color .22s ease, transform .22s var(--vvs-ease);
}

.vvs-dock-item svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vvs-dock-item span {
    font-size: 9px;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
}

.vvs-dock-item[href*="facebook"] svg {
    fill: currentColor;
    stroke: none;
}

.vvs-whatsapp {
    position: absolute;
    z-index: 31;
    right: var(--vvs-safe-right);
    bottom: var(--vvs-safe-bottom);
    display: flex;
    min-width: 150px;
    min-height: 68px;
    align-items: center;
    gap: 9px;
    padding: 8px 15px 8px 8px;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 22px;
    background: rgba(255, 255, 255, .93);
    box-shadow: var(--vvs-shadow);
    color: var(--vvs-green);
    pointer-events: auto;
    text-decoration: none;
    transition: transform .25s var(--vvs-ease), box-shadow .25s ease;
}

.vvs-whatsapp-icon {
    display: grid;
    width: 50px;
    height: 50px;
    overflow: hidden;
    flex: 0 0 50px;
    place-items: center;
    border-radius: 16px;
    background: var(--vvs-mint);
}

.vvs-whatsapp-icon img {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.vvs-whatsapp-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vvs-whatsapp-copy small {
    color: rgba(18, 56, 30, .56);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vvs-whatsapp-copy strong {
    font-size: 12px;
    white-space: nowrap;
}

.vvs-intro {
    position: absolute;
    z-index: 150;
    inset: 0;
    display: grid;
    overflow: hidden;
    place-items: center;
    padding: max(28px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
    background:
        linear-gradient(105deg, rgba(4, 68, 22, .94) 0%, rgba(9, 115, 36, .78) 48%, rgba(9, 115, 36, .38) 100%),
        url("tour-cover.png") center/cover no-repeat;
    pointer-events: auto;
    transition: opacity .55s var(--vvs-ease), visibility .55s;
}

.vvs-intro::after {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 40px 40px;
    content: "";
    pointer-events: none;
}

.vvs-intro-card {
    position: relative;
    z-index: 2;
    width: min(590px, 100%);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: var(--vvs-radius-xl);
    background: rgba(6, 68, 23, .31);
    box-shadow: 0 30px 90px rgba(0, 32, 10, .28);
    color: white;
}

@supports (backdrop-filter: blur(12px)) {
    .vvs-intro-card {
        -webkit-backdrop-filter: blur(16px) saturate(110%);
        backdrop-filter: blur(16px) saturate(110%);
    }
}

.vvs-intro-logo {
    display: block;
    width: 165px;
    height: 74px;
    margin: 0 0 28px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.vvs-eyebrow,
.vvs-panel-kicker {
    margin: 0 0 14px;
    color: var(--vvs-mint);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .2em;
}

.vvs-intro-card h1 {
    max-width: 510px;
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 730;
    letter-spacing: -.055em;
    line-height: .98;
}

.vvs-intro-copy {
    max-width: 440px;
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.55;
}

.vvs-enter {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 16px 0 23px;
    border: 0;
    border-radius: 18px;
    background: var(--vvs-mint);
    box-shadow: 0 13px 38px rgba(2, 39, 13, .2);
    color: var(--vvs-green-dark);
    cursor: pointer;
    font-weight: 800;
    transition: transform .25s var(--vvs-ease), background-color .25s ease, box-shadow .25s ease;
}

.vvs-enter svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s var(--vvs-ease);
}

.vvs-enter:disabled {
    cursor: wait;
    opacity: .62;
    box-shadow: none;
    transform: none;
}

.vvs-loading-message {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
}

.vvs-tour-ready .vvs-loading-message {
    display: none;
}

.vvs-intro-hint {
    position: absolute;
    z-index: 2;
    right: max(36px, env(safe-area-inset-right));
    bottom: max(34px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, .66);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .04em;
}

.vvs-intro-hint span {
    position: relative;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
}

.vvs-intro-hint span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: white;
    content: "";
    animation: vvs-look-around 2s ease-in-out infinite;
}

.vvs-intro-glow {
    position: absolute;
    border-radius: 50%;
    background: rgba(218, 242, 194, .2);
    filter: blur(3px);
    pointer-events: none;
}

.vvs-intro-glow-one {
    top: -18vw;
    right: -12vw;
    width: 52vw;
    height: 52vw;
}

.vvs-intro-glow-two {
    bottom: -30vw;
    left: -16vw;
    width: 50vw;
    height: 50vw;
}

.vvs-intro-complete .vvs-intro {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.vvs-backdrop {
    position: absolute;
    z-index: 100;
    inset: 0;
    visibility: hidden;
    background: rgba(2, 34, 11, .56);
    opacity: 0;
    pointer-events: auto;
    transition: opacity .28s ease, visibility .28s;
}

@supports (backdrop-filter: blur(4px)) {
    .vvs-backdrop {
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }
}

.vvs-overlay-open .vvs-backdrop {
    visibility: visible;
    opacity: 1;
}

.vvs-panel {
    position: absolute;
    z-index: 110;
    top: var(--vvs-safe-top);
    bottom: var(--vvs-safe-bottom);
    width: min(430px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 28px;
    background: rgba(250, 253, 248, .96);
    box-shadow: 0 28px 100px rgba(2, 34, 11, .28);
    pointer-events: auto;
    transition: transform .38s var(--vvs-ease), visibility .38s;
}

.vvs-environment-panel {
    right: var(--vvs-safe-right);
    visibility: hidden;
    transform: translateX(calc(100% + 32px));
}

.vvs-environment-panel.vvs-active,
.vvs-menu-panel.vvs-active {
    visibility: visible;
    transform: translateX(0);
}

.vvs-menu-panel {
    right: var(--vvs-safe-right);
    visibility: hidden;
    padding-bottom: 20px;
    transform: translateX(calc(100% + 32px));
}

.vvs-panel-head,
.vvs-modal-head {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 20px 18px 24px;
    border-bottom: 1px solid rgba(9, 115, 36, .1);
}

.vvs-panel-kicker {
    display: block;
    margin-bottom: 7px;
    color: rgba(9, 115, 36, .58);
    font-size: 8px;
}

.vvs-panel-head h2,
.vvs-modal-head h2 {
    margin: 0;
    color: var(--vvs-ink);
    font-size: 22px;
    letter-spacing: -.035em;
}

.vvs-panel-close {
    flex: 0 0 auto;
    background: #edf6e8;
    color: var(--vvs-green);
}

.vvs-environment-list {
    height: calc(100% - 92px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 14px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.vvs-environment-card {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 92px;
    grid-template-columns: 112px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 14px;
    margin: 0 0 9px;
    padding: 7px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: #f2f8ef;
    color: var(--vvs-ink);
    cursor: pointer;
    text-align: left;
    transition: transform .22s var(--vvs-ease), border-color .22s ease, background-color .22s ease;
}

.vvs-environment-card img {
    width: 112px;
    height: 78px;
    border-radius: 13px;
    background: #c9dfbe;
    object-fit: cover;
}

.vvs-environment-card small {
    display: block;
    margin-bottom: 5px;
    color: rgba(18, 56, 30, .48);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .14em;
}

.vvs-environment-card strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.vvs-environment-card svg {
    width: 18px;
    fill: none;
    stroke: var(--vvs-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.vvs-environment-card[aria-current="true"] {
    border-color: rgba(9, 115, 36, .3);
    background: var(--vvs-mint);
}

.vvs-environment-card[aria-current="true"]::before {
    position: absolute;
    top: 13px;
    left: 13px;
    width: 9px;
    height: 9px;
    border: 2px solid white;
    border-radius: 50%;
    background: var(--vvs-green);
    box-shadow: 0 2px 8px rgba(5, 70, 21, .25);
    content: "";
}

.vvs-menu-links {
    display: flex;
    flex-direction: column;
    padding: 18px 18px 8px;
}

.vvs-menu-links button {
    display: grid;
    min-height: 66px;
    grid-template-columns: 32px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
    padding: 5px 12px;
    border: 0;
    border-bottom: 1px solid rgba(9, 115, 36, .1);
    background: transparent;
    color: var(--vvs-ink);
    cursor: pointer;
    text-align: left;
}

.vvs-menu-links button > span {
    color: rgba(9, 115, 36, .46);
    font-size: 10px;
    font-weight: 800;
}

.vvs-menu-links button strong {
    font-size: 14px;
}

.vvs-menu-links button svg {
    width: 20px;
    fill: none;
    stroke: var(--vvs-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform .22s var(--vvs-ease);
}

.vvs-menu-social {
    margin: 18px;
    padding: 18px;
    border-radius: 18px;
    background: var(--vvs-green);
    color: white;
}

.vvs-menu-social p {
    margin: 0 0 12px;
    color: var(--vvs-mint);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.vvs-menu-social a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.vvs-content-modal {
    position: absolute;
    z-index: 115;
    top: var(--vvs-safe-top);
    right: var(--vvs-safe-right);
    bottom: var(--vvs-safe-bottom);
    left: var(--vvs-safe-left);
    display: flex;
    visibility: hidden;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 28px;
    background: #f9fcf7;
    box-shadow: 0 30px 120px rgba(0, 35, 11, .34);
    opacity: 0;
    pointer-events: auto;
    transform: translateY(14px) scale(.985);
    transition: opacity .3s ease, transform .3s var(--vvs-ease), visibility .3s;
}

.vvs-content-modal.vvs-active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.vvs-modal-head {
    flex: 0 0 78px;
    min-height: 78px;
    background: white;
}

.vvs-modal-head > div > span {
    display: block;
    margin-bottom: 5px;
    color: rgba(9, 115, 36, .55);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .17em;
}

.vvs-modal-head h2 {
    font-size: 19px;
}

.vvs-modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vvs-modal-actions > a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 17px;
    border-radius: 14px;
    background: #edf6e8;
    color: var(--vvs-green);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.vvs-modal-actions > a span {
    margin-left: 7px;
}

.vvs-frame-wrap {
    position: relative;
    min-height: 0;
    flex: 1;
    background: #edf6e8;
}

.vvs-frame-wrap iframe {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: white;
}

.vvs-frame-status {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    color: var(--vvs-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.vvs-frame-status span {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(9, 115, 36, .15);
    border-top-color: var(--vvs-green);
    border-radius: 50%;
    animation: vvs-spin .8s linear infinite;
}

.vvs-overlay-open .vvs-dock,
.vvs-overlay-open .vvs-whatsapp,
.vvs-overlay-open .vvs-quick-tools {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .vvs-round-button:hover,
    .vvs-panel-close:hover {
        background: var(--vvs-green-dark);
        box-shadow: 0 10px 24px rgba(5, 68, 20, .2);
        transform: translateY(-2px);
    }

    .vvs-tool-button:not(:disabled):hover {
        background: var(--vvs-mint);
        box-shadow: 0 14px 34px rgba(5, 68, 20, .2);
        color: var(--vvs-green);
        transform: translateY(-2px);
    }

    .vvs-tool-button:not(:disabled):hover .vvs-tool-label,
    .vvs-tool-button:focus-visible .vvs-tool-label {
        visibility: visible;
        opacity: 1;
        transform: translate(0, -50%);
    }

    .vvs-dock-item:hover {
        background: var(--vvs-mint);
        color: var(--vvs-green);
        transform: translateY(-2px);
    }

    .vvs-whatsapp:hover {
        box-shadow: 0 22px 60px rgba(4, 55, 18, .22);
        transform: translateY(-3px);
    }

    .vvs-enter:hover {
        background: white;
        box-shadow: 0 18px 44px rgba(2, 39, 13, .26);
        transform: translateY(-2px);
    }

    .vvs-enter:hover svg,
    .vvs-menu-links button:hover svg {
        transform: translateX(4px);
    }

    .vvs-environment-card:hover {
        border-color: rgba(9, 115, 36, .24);
        background: #e8f4e2;
        transform: translateX(-3px);
    }

    .vvs-menu-links button:hover {
        color: var(--vvs-green);
    }
}

@media (max-width: 760px) {
    :root {
        --vvs-safe-top: max(10px, env(safe-area-inset-top));
        --vvs-safe-right: max(10px, env(safe-area-inset-right));
        --vvs-safe-bottom: max(8px, env(safe-area-inset-bottom));
        --vvs-safe-left: max(10px, env(safe-area-inset-left));
    }

    .vvs-header {
        grid-template-columns: 112px minmax(0, 1fr) 48px;
        min-height: 58px;
        padding: 6px 7px 6px 13px;
        border-radius: 18px;
    }

    .vvs-logo {
        width: 82px;
        height: 34px;
    }

    .vvs-location span {
        margin-bottom: 4px;
        font-size: 7px;
    }

    .vvs-location strong {
        max-width: 100%;
        font-size: 11px;
    }

    .vvs-round-button,
    .vvs-panel-close {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .vvs-quick-tools {
        top: calc(var(--vvs-safe-top) + 67px);
        right: calc(var(--vvs-safe-right) + 6px);
        gap: 6px;
    }

    .vvs-tool-button {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        border-radius: 14px;
    }

    .vvs-tool-label {
        display: none;
    }

    .vvs-toast {
        bottom: calc(var(--vvs-safe-bottom) + 78px);
        font-size: 10px;
    }

    .vvs-dock {
        right: var(--vvs-safe-right);
        bottom: var(--vvs-safe-bottom);
        left: var(--vvs-safe-left);
        display: grid;
        min-height: 66px;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0;
        padding: 5px;
        border-radius: 19px;
        transform: none;
    }

    .vvs-dock-item {
        width: auto;
        min-width: 0;
        min-height: 54px;
        gap: 4px;
        padding: 5px 2px;
        border-radius: 13px;
    }

    .vvs-dock-item svg {
        width: 20px;
        height: 20px;
    }

    .vvs-dock-item span {
        max-width: 100%;
        overflow: hidden;
        font-size: 7px;
        text-overflow: ellipsis;
    }

    .vvs-whatsapp {
        right: var(--vvs-safe-right);
        bottom: calc(var(--vvs-safe-bottom) + 76px);
        min-width: 56px;
        min-height: 56px;
        padding: 5px;
        border-radius: 18px;
    }

    .vvs-whatsapp-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
    }

    .vvs-whatsapp-icon img {
        width: 44px;
        height: 44px;
    }

    .vvs-whatsapp-copy {
        display: none;
    }

    .vvs-intro {
        align-items: end;
        padding: max(22px, env(safe-area-inset-top)) max(15px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(15px, env(safe-area-inset-left));
        background:
            linear-gradient(180deg, rgba(4, 68, 22, .38) 0%, rgba(4, 68, 22, .78) 50%, rgba(4, 68, 22, .97) 100%),
            url("tour-cover.png") center/cover no-repeat;
    }

    .vvs-intro-card {
        width: 100%;
        padding: 27px 24px 25px;
        border-radius: 26px;
    }

    .vvs-intro-logo {
        width: 120px;
        height: 52px;
        margin-bottom: 18px;
    }

    .vvs-eyebrow {
        margin-bottom: 10px;
        font-size: 8px;
    }

    .vvs-intro-card h1 {
        font-size: clamp(38px, 12.5vw, 57px);
        line-height: .99;
    }

    .vvs-intro-copy {
        margin: 18px 0 22px;
        font-size: 14px;
        line-height: 1.45;
    }

    .vvs-enter {
        width: 100%;
        min-height: 58px;
        justify-content: space-between;
        border-radius: 17px;
    }

    .vvs-intro-hint {
        display: none;
    }

    .vvs-panel,
    .vvs-content-modal {
        top: var(--vvs-safe-top);
        right: var(--vvs-safe-right);
        bottom: var(--vvs-safe-bottom);
        left: var(--vvs-safe-left);
        width: auto;
        border-radius: 24px;
    }

    .vvs-environment-panel,
    .vvs-menu-panel {
        transform: translateY(calc(100% + 24px));
    }

    .vvs-environment-panel.vvs-active,
    .vvs-menu-panel.vvs-active {
        transform: translateY(0);
    }

    .vvs-panel-head {
        min-height: 82px;
        padding: 16px 15px 14px 19px;
    }

    .vvs-panel-head h2 {
        font-size: 20px;
    }

    .vvs-environment-list {
        height: calc(100% - 82px);
        padding: 10px;
    }

    .vvs-environment-card {
        min-height: 84px;
        grid-template-columns: 96px minmax(0, 1fr) 26px;
        gap: 11px;
        padding: 6px;
        border-radius: 16px;
    }

    .vvs-environment-card img {
        width: 96px;
        height: 70px;
        border-radius: 12px;
    }

    .vvs-modal-head {
        min-height: 68px;
        flex-basis: 68px;
        padding: 10px 10px 10px 17px;
    }

    .vvs-modal-head h2 {
        max-width: 45vw;
        overflow: hidden;
        font-size: 15px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vvs-modal-actions {
        gap: 6px;
    }

    .vvs-modal-actions > a {
        width: 44px;
        min-width: 44px;
        padding: 0;
        justify-content: center;
        font-size: 0;
    }

    .vvs-modal-actions > a span {
        margin: 0;
        font-size: 18px;
    }
}

@media (max-width: 370px) {
    .vvs-header {
        grid-template-columns: 88px minmax(0, 1fr) 46px;
    }

    .vvs-logo {
        width: 70px;
    }

    .vvs-dock-item span {
        display: none;
    }

    .vvs-dock-item {
        min-height: 48px;
    }

    .vvs-dock {
        min-height: 60px;
    }

    .vvs-whatsapp {
        bottom: calc(var(--vvs-safe-bottom) + 69px);
    }
}

@media (orientation: landscape) and (max-height: 520px) {
    .vvs-header {
        right: max(10px, env(safe-area-inset-right));
        left: max(10px, env(safe-area-inset-left));
    }

    .vvs-dock {
        min-height: 58px;
        border-radius: 18px;
    }

    .vvs-dock-item {
        min-height: 44px;
    }

    .vvs-dock-item span {
        display: none;
    }

    .vvs-whatsapp {
        min-height: 58px;
    }

    .vvs-intro {
        align-items: center;
        justify-items: start;
    }

    .vvs-intro-card {
        width: min(570px, 72vw);
        padding: 22px 28px;
    }

    .vvs-intro-logo {
        width: 104px;
        height: 42px;
        margin-bottom: 10px;
    }

    .vvs-intro-card h1 {
        font-size: 34px;
    }

    .vvs-intro-copy {
        margin: 11px 0 14px;
        font-size: 12px;
    }

    .vvs-enter {
        min-height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vvs-skin *,
    .vvs-skin *::before,
    .vvs-skin *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@keyframes vvs-spin {
    to { transform: rotate(360deg); }
}

@keyframes vvs-look-around {
    0%, 100% { transform: translate(-12px, -50%); opacity: .45; }
    50% { transform: translate(7px, -50%); opacity: 1; }
}
