:root {
    --color-off-white: #F5F1E8;
    --color-beige: #E8E0D0;
    --color-green: #4A6538;
    --color-brown: #8B6F47;
    --color-gold: #B8956A;
    --spacing-xs: 16px;
    --spacing-s: 32px;
    --spacing-m: 64px;
    --spacing-l: 128px;
    --radius: 24px;
    --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Disable text selection globally - FORCED */
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    /* Disable element dragging */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

/* Prevent image and link dragging */
img,
a {
    -webkit-user-drag: none;
    pointer-events: auto;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #333;
    /* Force non-selectable */
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-touch-callout: none !important;
}

.fill-viewport {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.fill-viewport.landscape-left {
    left: env(safe-area-inset-left);
}

.fill-viewport.landscape-right {
    right: env(safe-area-inset-right);
}

#viewer {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
}

#content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 600;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    scroll-behavior: smooth;
    opacity: 0;
    transform: scale(0.98);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

#content.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            var(--color-gold) 0%,
            var(--color-brown) 50%,
            var(--color-gold) 100%);
    background-size: 100% 200%;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 10px rgba(184, 149, 106, 0.6),
        0 0 20px rgba(184, 149, 106, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    animation: scrollbarGlow 3s ease-in-out infinite;
}

@keyframes scrollbarGlow {

    0%,
    100% {
        box-shadow:
            0 0 10px rgba(184, 149, 106, 0.6),
            0 0 20px rgba(184, 149, 106, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.3);
        background-position: 0% 0%;
    }

    50% {
        box-shadow:
            0 0 15px rgba(184, 149, 106, 0.8),
            0 0 30px rgba(184, 149, 106, 0.6),
            0 0 40px rgba(184, 149, 106, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.3);
        background-position: 0% 100%;
    }
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
            #d4b585 0%,
            #b88c5e 50%,
            #d4b585 100%);
    background-size: 100% 200%;
    animation: scrollbarShimmer 1.5s ease-in-out infinite;
    box-shadow:
        0 0 20px rgba(212, 181, 133, 0.9),
        0 0 35px rgba(212, 181, 133, 0.7),
        0 0 50px rgba(212, 181, 133, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4);
}

@keyframes scrollbarShimmer {

    0%,
    100% {
        background-position: 0% 0%;
        filter: brightness(1);
    }

    50% {
        background-position: 0% 100%;
        filter: brightness(1.2);
    }
}

::-webkit-scrollbar-thumb:active {
    animation: scrollbarPulse 0.3s ease-out;
    background: linear-gradient(180deg,
            var(--color-brown) 0%,
            #6d5434 50%,
            var(--color-brown) 100%);
}

@keyframes scrollbarPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
        box-shadow:
            0 0 25px rgba(139, 111, 71, 1),
            0 0 40px rgba(139, 111, 71, 0.8);
    }

    100% {
        transform: scale(1);
    }
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) transparent;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 48px;
    transition: var(--transition);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

/* Tour mode - allow interaction with 3DVista viewer */
header.tour-mode {
    pointer-events: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

header.tour-mode .brand-logo-container,
header.tour-mode .nav {
    pointer-events: auto;
}

@media (max-width: 768px) {
    header {
        height: 72px;
        padding: 0 24px;
    }
}

.nav {
    position: absolute;
    right: 48px;
    z-index: 20;
    display: flex;
    align-items: center;
}

.nav .reservar {
    background: var(--color-brown);
    color: var(--color-off-white);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(139, 111, 71, 0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav .reservar:hover {
    background: var(--color-gold);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(184, 149, 106, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .nav .reservar {
        padding: 10px 20px;
        font-size: 14px;
    }

    .header-shortcuts {
        display: none !important;
    }
}

/* VOLTAR AO SITE BUTTON - Same style as Explorar */
.btn-voltar-site {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 800;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
}

.btn-voltar-site.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.btn-voltar-site:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
}

.btn-voltar-site i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .btn-voltar-site {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 10px;
        letter-spacing: 1px;
        gap: 6px;
    }

    .btn-voltar-site i {
        font-size: 12px;
    }
}

.header-shortcuts {
    position: absolute;
    left: 50%;
    display: flex;
    gap: 32px;
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.header-shortcuts.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition-delay: 0.5s;
}

.brand-logo-container {
    position: absolute;
    left: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    cursor: pointer;
}

.logo-icon {
    height: 29px;
    width: auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text {
    height: 53px;
    width: auto;
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-container.split .logo-text {
    transform: translateX(calc(50vw - 100px - 50%));
}

@media (max-width: 768px) {
    .brand-logo-container {
        left: 24px;
    }

    .logo-icon {
        height: 20px;
    }

    .logo-text {
        height: 40px;
    }

    .brand-logo-container.split .logo-text {
        transform: none;
    }
}

.header-shortcuts a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
    opacity: 0.8;
}

.header-shortcuts a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.header-shortcuts a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.header-shortcuts a:hover::after {
    width: 100%;
}

.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 500;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.glass-overlay.active {
    opacity: 1;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    z-index: 600;
    padding: 0 32px;
}

.hero-content {
    text-align: center;
    padding: 0 32px;
    max-width: 1000px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 32px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    font-weight: 200;
    letter-spacing: 0.5px;
}

.hero-location {
    font-size: clamp(11px, 1.2vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero button:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .hero button {
        padding: 16px 32px;
        font-size: 16px;
    }
}

section {
    position: relative;
    z-index: 600;
    padding: 80px 64px;
    background: transparent;
}

@media (max-width: 1024px) {
    section {
        padding: 64px 48px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 48px 24px;
    }
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 2px;
}

section>p {
    font-size: clamp(14px, 1.5vw, 17px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    line-height: 1.8;
    margin: 0 auto 56px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 200;
    letter-spacing: 0.5px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 40px 28px;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #fff;
    margin-bottom: 14px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.card p {
    font-size: clamp(13px, 1.3vw, 15px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 200;
    letter-spacing: 0.3px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.grid-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.grid-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.grid-item:hover {
    transform: translateY(-6px) scale(1.01);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.grid-item:hover::after {
    width: 200%;
    height: 200%;
}

.grid-item h3 {
    font-size: clamp(17px, 2vw, 22px);
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.grid-item p {
    font-size: clamp(12px, 1.2vw, 14px);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 200;
    letter-spacing: 0.3px;
}

#sobre {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.2);
}

footer {
    position: relative;
    z-index: 600;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 64px 64px 32px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    footer {
        padding: 48px 24px 24px;
    }
}

footer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 300;
}

footer .social {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}

footer .social a {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

footer .social a:hover {
    color: #fff;
    transform: scale(1.2);
}

footer .social .whatsapp {
    color: #25D366;
}

footer .social .whatsapp:hover {
    filter: drop-shadow(0 0 8px #25D366);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.fade-in {
    animation: fadeInUp 1s ease-out;
}

.magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic:hover {
    transform: scale(1.05);
}

.magnetic:active {
    transform: scale(0.98);
}

.card-elegant {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
}

.card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-elegant:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-elegant:hover::before {
    opacity: 1;
}

.card-elegant h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-elegant p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 200;
    letter-spacing: 0.5px;
}

.card-elegant .btn-link {
    margin-top: auto;
    padding-top: 24px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.card-elegant .btn-link:hover {
    border-color: #fff;
    transform: translateX(5px);
}

/* Card content and buttons structure */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
}

.card-buttons .btn-suite {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 8px;
    display: block;
    text-align: left;
}

.amenities-row {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.amenities-row i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.grid-item i {
    font-size: 32px;
    margin-bottom: 12px;
    display: inline-block;
}

.card i {
    font-size: 24px;
    margin-right: 8px;
    vertical-align: middle;
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 700;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    z-index: 10000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cookie-btn.accept {
    background: var(--color-brown);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: var(--color-gold);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 120px;
    height: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* REVIEWS CAROUSEL */
.reviews-carousel {
    position: relative;
    height: 80px;
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-item {
    position: absolute;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.review-item.active {
    opacity: 1;
}

.review-item i {
    font-size: 28px;
    color: var(--color-gold);
}

.review-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 500px;
}

.review-item strong {
    color: #fff;
}

.review-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-logo-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-transform: lowercase;
    opacity: 0.9;
}

/* GOOGLE MAPS MODAL */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.map-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.map-modal-content {
    position: relative;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

.map-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.map-modal-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 400;
}

.map-modal-content h3 i {
    color: var(--color-gold);
    margin-right: 8px;
}

.map-modal-content>p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.map-modal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--color-brown);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.map-modal-link:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@media (max-width: 768px) {
    .map-modal-content {
        padding: 24px 16px;
    }

    .map-modal-content iframe {
        height: 300px;
    }
}