body {
    font-family: "Manrope", sans-serif;
}

h1, h2, h3, .font-display {
    font-family: "Playfair Display", serif;
}

.page-shell {
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.1), transparent 26%),
        linear-gradient(180deg, #08111f 0%, #0f172a 35%, #111827 70%, #0b1120 100%);
}

.hero-card {
    background:
        linear-gradient(135deg, rgba(8, 17, 31, 0.88), rgba(15, 23, 42, 0.64)),
        url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
}

.package-card img {
    transition: transform 0.35s ease;
}

.package-card:hover img {
    transform: scale(1.05);
}

.search-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(22px);
}

.nav-bubble {
    width: 100%;
    max-width: 100%;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
    scrollbar-width: none;
}

.nav-bubble::-webkit-scrollbar {
    display: none;
}

.nav-bubble__link {
    flex: 0 0 auto;
    border: 1px solid rgba(96, 165, 250, 0.1);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.035));
    box-shadow: inset 0 1px 0 rgba(191, 219, 254, 0.03);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.nav-bubble__link:hover,
.nav-bubble__link:focus-visible {
    border-color: rgba(125, 211, 252, 0.18);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.13), rgba(37, 99, 235, 0.06));
    transform: translateY(-1px);
}

.chip {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.section-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.fade-in-pending {
    opacity: 0;
    transform: translateY(18px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-whatsapp {
    position: fixed;
    left: clamp(0.75rem, 2vw, 1.5rem);
    top: 50%;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(3.25rem, 8vw, 4.75rem);
    height: clamp(3.25rem, 8vw, 4.75rem);
    padding: 0.35rem;
    border-radius: 9999px;
    background: rgba(7, 94, 84, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}

.floating-whatsapp:focus-visible {
    outline: 2px solid rgba(74, 222, 128, 0.9);
    outline-offset: 4px;
}

.floating-whatsapp__image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    object-fit: cover;
}

@media (max-width: 640px) {
    .floating-whatsapp {
        left: 0.5rem;
        width: clamp(2.75rem, 14vw, 3.5rem);
        height: clamp(2.75rem, 14vw, 3.5rem);
        padding: 0.2rem;
    }
}
