/* ============ Scoped: Staycation Showcase ============ */

.staycation-showcase {
    --msc-bg: var(--casa-forest);
    --msc-text: var(--casa-ivory);
    --msc-muted: var(--casa-ivory-soft);
    --msc-line: rgba(244, 239, 230, 0.045);
    --msc-card: rgba(255, 255, 255, 0.012);
    --msc-accent: var(--casa-champagne);
    --msc-accent-2: var(--casa-terracotta);
    --msc-ghost: transparent;
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding: 100px 0 120px;
    background: var(--casa-forest);
}

.staycation-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/sessao-quarto.webp");
    background-size: cover;
    background-position: center 35%;
    opacity: 0.60;
    filter: saturate(1.04) contrast(1.07) brightness(0.92) blur(0.3px);
    transform: scale(1.015);
    z-index: 0;
    pointer-events: none;
}

.staycation-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 20, 15, 0.48) 0%, rgba(16, 20, 15, 0.18) 18%, transparent 42%),
        radial-gradient(120% 100% at 15% 5%, rgba(52, 78, 108, 0.19) 0%, transparent 50%),
        linear-gradient(180deg, rgba(20, 33, 28, 0.52) 0%, rgba(22, 29, 25, 0.55) 55%, rgba(16, 20, 15, 0.66) 100%);
    z-index: 1;
    pointer-events: none;
}

.staycation-showcase > * {
    position: relative;
    z-index: 2;
}

/* Decorative background */

.msc-bg .msc-blob {
    position: absolute;
    inset: auto;
    filter: blur(50px);
    opacity: .45;
    pointer-events: none;
}

.msc-blob-a {
    width: 40vmax;
    height: 40vmax;
    top: -12vmax;
    right: -10vmax;
    background: radial-gradient(circle at 30% 30%, var(--msc-accent), transparent 60%);
    animation: msc-float 18s ease-in-out infinite;
}

.msc-blob-b {
    width: 35vmax;
    height: 35vmax;
    bottom: -10vmax;
    left: -8vmax;
    background: radial-gradient(circle at 60% 50%, var(--msc-accent-2), transparent 60%);
    animation: msc-float 22s ease-in-out infinite reverse;
}

@keyframes msc-float {
    0%,
    100% {
        transform: translate(0, 0)
    }
    50% {
        transform: translate(16px, -10px)
    }
}

.msc-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 95%, rgba(0, 0, 0, .04) 95%) 0 0/ 28px 28px, linear-gradient(90deg, transparent 95%, rgba(0, 0, 0, .04) 95%) 0 0/ 28px 28px;
    mask-image: radial-gradient(1000px 600px at 70% 10%, #000 0%, transparent 70%);
    opacity: .25;
    pointer-events: none;
}

.msc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.msc-head {
    text-align: center;
    margin-bottom: 28px;
}

.msc-head h2 {
    margin: 0 0 24px;
    color: var(--msc-text);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0;
}

.msc-head p {
    margin: 0;
    color: var(--msc-muted);
    font-size: clamp(14px, 1.8vw, 18px);
}

/* Cards grid — empilhado full-width */

.msc-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Card base: layout interno zig-zag (imagem | texto) */
.msc-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    background: var(--msc-card);
    backdrop-filter: none;
    border: 1px solid var(--msc-line);
    border-radius: 4px;
    box-shadow: none;
    overflow: hidden;
    transition: transform .4s ease, border-color .4s ease;
    min-height: 420px;
}

/* Card reverso: texto à esquerda, imagem à direita */
.msc-card--reverse {
    direction: rtl;
}
.msc-card--reverse > * {
    direction: ltr;
}

.msc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(195, 154, 91, 0.25);
}

/* Media */

.msc-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: unset;
    background: #000;
    min-height: 320px;
}

.msc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform .6s ease;
}

.msc-card:hover .msc-media img {
    transform: scale(1.06);
}

/* Corner badge */

.msc-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
    color: #7a3a12;
    background: rgba(255, 244, 233, .92);
    border: 1px solid rgba(255, 184, 120, .6);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(255, 122, 24, .18);
}

/* Body */

.msc-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.msc-body h3 {
    margin: 4px 0 8px;
    color: var(--msc-text);
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 800;
}

.msc-body p {
    margin: 0 0 12px;
    color: var(--msc-muted);
    line-height: 1.7;
}

/* Points */

.msc-points {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.msc-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--msc-text);
    margin: 6px 0;
    white-space: normal !important;
    word-break: break-word;
}

.msc-points li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--msc-accent), #f6cf7a);
    box-shadow: 0 0 0 3px #fff, 0 3px 12px rgba(255, 122, 24, .35);
}

/* Buttons */

.msc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.msc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    border: 1px solid transparent;
}

.msc-btn-primary {
    background: linear-gradient(135deg, var(--msc-accent), #f6cf7a);
    color: #1b120a;
    box-shadow: 0 10px 24px rgba(255, 122, 24, .28);
}

.msc-btn-primary:hover {
    filter: brightness(1.03);
    color: #ffffff;
}

.msc-btn-ghost {
    background: var(--msc-ghost);
    color: var(--msc-text);
    border-color: var(--msc-line);
}

.msc-btn-ghost:hover {
    background: #fff;
}


/* Responsive — mobile: cada card empilha (imagem em cima, texto embaixo) */

@media (max-width: 992px) {
    .msc-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        min-height: unset;
    }
    /* Reseta o zig-zag reverso no mobile */
    .msc-card--reverse {
        direction: ltr;
    }
    .msc-card--reverse > * {
        direction: ltr;
    }
    .msc-media {
        border-right: none;
        border-bottom: 1px solid var(--msc-line);
        aspect-ratio: 4/3;
    }
    .msc-body {
        padding: 24px 20px 28px;
    }
}



.msc-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.msc-image-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.msc-image-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.msc-slider-pagination {
    position: absolute;
    left: 0 !important;
    right: 0;
    bottom: 14px !important;
    z-index: 3;
    text-align: center;
}

.msc-slider-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, 0.75);
    opacity: 1;
    margin: 0 4px !important;
}

.msc-slider-pagination .swiper-pagination-bullet-active {
    background: #d4af37;
    transform: scale(1.15);
}

/* ====== Scoped styling for this section ====== */

.space-up .before-after-left-area {
    padding: clamp(20px, 4vw, 48px);
    background: linear-gradient(180deg, #0f0f14 0%, #1b1f2a 100%);
    color: #fff;
    border-radius: 10px;
}

.space-up .pbmit-title {
    margin-bottom: 6px;
}

.space-up .pbmit-heading-desc {
    color: #e5e7eb;
    margin-top: 10px;
    line-height: 1.7;
}

/* Swiper container fills height nicely */

.events-swiper-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #0b0e14;
}

/* Ensure slides are neat and consistent */

.events-swiper {
    width: 100%;
    height: 100%;
    min-height: 420px;
    /* desktop comfort */
}

@media (max-width: 767.98px) {
    .events-swiper {
        min-height: 300px;
    }
}

.events-swiper .swiper-slide {
    display: grid;
    place-items: center;
    background: #0b0e14;
}

.events-swiper .swiper-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Pagination & arrows styling */

.events-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .7);
    opacity: 1;
}

.events-swiper .swiper-pagination-bullet-active {
    background: #ff9f43;
    /* warm accent */
}

.events-swiper .swiper-button-prev,
.events-swiper .swiper-button-next {
    color: #ffffff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.events-swiper .swiper-button-prev:hover,
.events-swiper .swiper-button-next:hover {
    color: #ff9f43;
}

/* Section skin */

.mrb-two-cta {
    padding: 36px 0;
    background: #fff;
}

.mrb-two-cta h3 {
    margin: 0 0 8px;
    font-weight: 800;
}

.mrb-two-cta .lead-note {
    color: #636e72;
    margin-bottom: 16px;
}

/* Button row */

.mrb-links {
    display: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Buttons */

.mrb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}

.mrb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
}

.mrb-btn i {
    font-size: 1.1rem;
}

/* Brand skins */

.mrb-ig {
    background: #fff;
    color: #e1306c;
    border-color: #ffd1e1;
}

.mrb-ig:hover {
    filter: brightness(1.05);
}

.mrb-airbnb {
    background: #ff385c;
    color: #fff;
}

.mrb-airbnb:hover {
    filter: brightness(1.03);
    color: #f2f2f2;
}

/* Cards (optional visual separation) */

.mrb-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 16px 16px 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .05);
    text-align: center;
}

/* Tabs */

.ss-tabs {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.ss-tabs li {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.ss-tabs li.active {
    color: #d4af37;
    /* gold highlight */
    font-weight: 600;
}

/* Grid */

.ss-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.s-s-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.s-s-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.s-s-item:hover img {
    transform: scale(1.05);
}

/* Overlay */

.s-s-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #bb9a65;
    /* gold overlay */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.s-s-item:hover .s-s-overlay {
    opacity: 1;
}

.s-s-overlay span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.s-s-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 0;
    color: #fff;
}

.s-s-overlay::after {
    content: "↗";
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 18px;
    font-weight: bold;
}

/* Popup */

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup.active {
    display: flex;
}

.popup img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

/* Controls */

.popup .close,
.popup .prev,
.popup .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    user-select: none;
}

.popup .close {
    top: 30px;
    right: 30px;
    transform: none;
    font-size: 35px;
}

.popup .prev {
    left: 40px;
}

.popup .next {
    right: 40px;
}

.space-up {
    margin-top: 10%;
}

.events {
    margin-top: 2%;
}

.space-in-up {
    margin-top: 8%;
}

.about-nine-left-box {
    padding: 0px 15px 0px 0px;
}

.about-nine-right-box {
    padding: 0px 0px 0px 15px;
}

.pbmit-ihbox-style-22 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-22 .pbmit-ihbox-svg-wrapper {
    font-size: 25px;
    line-height: 35px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: var(--pbmit-light-color);
    color: var(--pbmit-global-color);
}

.pbmit-ihbox-style-22 .pbmit-ihbox-icon,
.pbmit-ihbox-style-22 .pbmit-ihbox-svg {
    margin-right: 15px;
    position: relative;
    display: inline-block;
}

.pbmit-slider-one .pbmit-slider-item {
    display: flex;
    align-items: center;
    height: 590px !important;
    background-color: rgba(64, 50, 38, 0.2);
}

.venue-premium-section {
    position: relative;
    padding: 120px 20px;
    background: radial-gradient(ellipse at 50% 45%, rgba(98, 105, 77, 0.18), rgba(41, 49, 38, 0.48) 45%, rgba(17, 23, 19, 0.98) 100%);
    overflow: hidden;
}

.venue-premium-container {
    max-width: 1380px;
    margin: 0 auto;
}

.venue-premium-layout {
    display: flex;
    justify-content: center;
    align-items: center;
}

.venue-premium-visual {
    width: 100%;
}

.venue-premium-circle-wrap {
    position: relative;
    width: 100%;
    max-width: 1180px;
    min-height: 760px;
    margin: 0 auto;
}

/* luxury orbit rings */

.venue-premium-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-one {
    width: 590px;
    height: 590px;
    border: 1px solid rgba(195, 154, 91, 0.15); /* very subtle champagne */
}

.orbit-two {
    width: 545px;
    height: 545px;
    border: 1px dashed rgba(195, 154, 91, 0.1);
}

/* main circle */

.venue-premium-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    padding: 10px;
    box-shadow: 0 20px 50px rgba(22, 29, 25, 0.05); /* very subtle shadow */
    z-index: 3;
}

.venue-premium-circle::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(22, 29, 25, 0.05);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.venue-premium-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* text points */

.venue-premium-point {
    position: absolute;
    max-width: 290px;
    color: #2f231d;
    z-index: 5;
}

/* dot */

.vp-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #5d3725, #9a6a4c);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(154, 106, 76, 0.1);
}

/* connector line */

.vp-line {
    position: absolute;
    height: 0.9px;
    /* background: linear-gradient(
          90deg,
          rgba(154, 106, 76, 0.65),
          rgba(154, 106, 76, 0.15)
        ); */
    background: linear-gradient(135deg, #5d3725, #9a6a4c);
    top: 7px;
}

.vp1 {
    top: 150px;
    left: 275px !important;
    text-align: right;
}

.vp1 .vp-dot {
    right: -30px;
    top: 2px;
}

.vp1 .vp-line {
    right: 0px !important;
    width: 0px !important;
}

.vp2 {
    top: 290px;
    left: 160px !important;
    text-align: right;
}

.vp2 .vp-dot {
    right: -28px;
    top: 2px;
}

.vp2 .vp-line {
    right: -112px;
    width: 0px;
}

.vp3 {
    top: 430px;
    left: 132px !important;
    text-align: right;
    max-width: 310px;
}

.vp3 .vp-dot {
    right: -30px;
    top: 0px;
}

.vp3 .vp-line {
    right: -110px;
    width: 0px;
    top: 6px;
}

.vp4 {
    top: 570px;
    left: 90px !important;
    text-align: right;
    max-width: 290px;
}

.vp4 .vp-dot {
    right: -28px;
    top: 0px;
}

.vp4 .vp-line {
    right: -110px;
    width: 0px;
    top: 5px;
}

/* RIGHT SIDE */

.vp5 {
    top: 150px;
    right: 209px !important;
    text-align: left;
}

.vp5 .vp-dot {
    left: -30px;
    top: 2px;
}

.vp5 .vp-line {
    left: -115px;
    width: 0px;
    /* background: linear-gradient(90deg, rgba(154, 106, 76, 0.15), rgba(154, 106, 76, 0.65)); */
    background: linear-gradient(135deg, #5d3725, #9a6a4c);
}

.vp6 {
    top: 290px;
    right: 19px !important;
    text-align: left;
}

.vp6 .vp-dot {
    left: -28px;
    top: 1px;
}

.vp6 .vp-line {
    left: -102px;
    width: 0px;
    background: linear-gradient(135deg, #5d3725, #9a6a4c);
}

.vp7 {
    top: 430px;
    right: 156px !important;
    text-align: left;
    max-width: 290px;
}

.vp7 .vp-dot {
    left: -28px;
    top: 2px;
}

.vp7 .vp-line {
    left: -112px;
    width: 0px;
    top: 8px;
    background: linear-gradient(135deg, #5d3725, #9a6a4c);
}

.vp8 {
    top: 570px;
    right: 92px !important;
    text-align: left;
    max-width: 290px;
}

.vp8 .vp-dot {
    left: -28px;
    top: 2px;
}

.vp8 .vp-line {
    left: -113px;
    width: 0px;
    top: 8px;
    background: linear-gradient(135deg, #5d3725, #9a6a4c);
}

/* subtle floating elegance */

.venue-premium-circle-wrap::before,
.venue-premium-circle-wrap::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.18;
    pointer-events: none;
}

.venue-premium-circle-wrap::before {
    width: 170px;
    height: 170px;
    background: #d9b99b;
    top: 90px;
    left: 220px;
}

.venue-premium-circle-wrap::after {
    width: 140px;
    height: 140px;
    background: #b88d70;
    right: 220px;
    bottom: 100px;
}

/* large tablets */

@media (max-width: 1199px) {
    .venue-premium-circle-wrap {
        max-width: 1000px;
        min-height: 700px;
    }
    .venue-premium-circle {
        width: 430px;
        height: 430px;
    }
    .orbit-one {
        width: 520px;
        height: 520px;
    }
    .orbit-two {
        width: 480px;
        height: 480px;
    }
    .venue-premium-point p {
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    .pbmit-slider-one .pbmit-slider-item {
        display: flex;
        align-items: center;
        height: 325px !important;
        background-color: rgba(64, 50, 38, 0.2);
    }
}

/* tablet/mobile */

@media (max-width: 991px) {
    .pbmit-slider-one .pbmit-slider-item {
        display: flex;
        align-items: center;
        height: 590px !important;
        background-color: rgba(64, 50, 38, 0.2);
    }
    .venue-premium-section {
        padding: 70px 18px;
    }
    .venue-premium-circle-wrap {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .venue-premium-orbit {
        display: none;
    }
    .venue-premium-circle {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 340px;
        height: 340px;
        margin-bottom: 12px;
    }
    .venue-premium-point {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        max-width: 100%;
        width: 100%;
        padding: 0 0 0 28px;
        text-align: left !important;
    }
    .venue-premium-point p {
        font-size: 16px;
        line-height: 1.55;
    }
    .vp-dot {
        left: 0 !important;
        right: auto !important;
        top: 8px !important;
        width: 10px;
        height: 10px;
    }
    .vp-line {
        display: none;
    }
    .venue-premium-circle-wrap::before,
    .venue-premium-circle-wrap::after {
        display: none;
    }
}

/* small mobile */

@media (max-width: 575px) {
    .venue-premium-section {
        padding: 55px 14px;
    }
    .venue-premium-circle {
        width: 280px;
        height: 280px;
        padding: 10px;
    }
    .venue-premium-circle::before {
        inset: 10px;
    }
    .venue-premium-point p {
        font-size: 14px;
    }
    .pbmit-element-title2 {
        font-size: 18px;
        line-height: 34px;
        margin: -4px 0px 0px 0px !important;
        font-weight: 500;
    }
}

.pcrd {
    padding: 70px 45px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
}

.pbmit-btn-outline {
    color: #cacaca;
    background-color: transparent;
    border: 1px solid;
}

.pbmit-btn-outline:hover {
    color: #f1d28f;
}

.casa-spa-amenities-section {
    padding: 90px 0;
    background: #f7f5f2;
}

.casa-spa-amenities-heading {
    max-width: 780px;
    margin: 0 auto 55px;
}

.casa-spa-amenities-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d8ab4c;
    margin-bottom: 12px;
}

.casa-spa-amenities-title {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 500;
    color: #3f2d20;
    margin-bottom: 14px;
}

.casa-spa-amenities-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #6f6b67;
    margin: 0;
}

.casa-spa-amenities-grid {
    justify-content: center;
}

.casa-spa-amenity-item {
    text-align: center;
    padding: 1px 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.casa-spa-amenity-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #111111;
    transition: all 0.3s ease;
}

.casa-spa-amenity-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1b1b1b;
    margin: 0;
    line-height: 1.35;
    text-transform: uppercase;
}

.casa-spa-amenity-item:hover .casa-spa-amenity-icon {
    transform: translateY(-6px);
    color: #d8ab4c;
}

.casa-spa-amenity-item:hover h3 {
    color: #3f2d20;
}

@media (max-width: 1199px) {
    .casa-spa-amenities-title {
        font-size: 40px;
    }
    .casa-spa-amenity-icon {
        width: 85px;
        height: 85px;
        font-size: 48px;
    }
    .casa-spa-amenity-item h3 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .casa-spa-amenities-section {
        padding: 70px 0;
    }
    .casa-spa-amenities-title {
        font-size: 32px;
    }
    .casa-spa-amenities-desc {
        font-size: 15px;
        line-height: 1.7;
    }
    .casa-spa-amenity-icon {
        width: 72px;
        height: 72px;
        font-size: 38px;
        margin-bottom: 14px;
    }
    .casa-spa-amenity-item h3 {
        font-size: 15px;
    }
}

.wild-floating-icons {
    position: fixed;
    right: 18px;
    bottom: 40px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.premium-whatsapp-btn,
.premium-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 240px;
    height: 62px;
    padding: 0 26px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.35s ease;
}

.premium-whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #1faa52);
}

.premium-call-btn {
    background: var(--casa-champagne);
    color: #111713;
}

.premium-whatsapp-btn i,
.premium-call-btn i {
    font-size: 22px;
    flex-shrink: 0;
}

.premium-whatsapp-btn span,
.premium-call-btn span {
    white-space: nowrap;
    line-height: 1;
}

.premium-whatsapp-btn:hover,
.premium-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    color: #fff;
}

@media (max-width: 767px) {
    .wild-floating-icons {
        right: 12px;
        bottom: calc(18px + env(safe-area-inset-bottom));
    }
    .premium-whatsapp-btn,
    .premium-call-btn {
        min-width: 200px;
        height: 54px;
        padding: 0 20px;
        font-size: 14px;
        gap: 10px;
    }
    .premium-whatsapp-btn i,
    .premium-call-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .premium-whatsapp-btn,
    .premium-call-btn {
        min-width: 54px;
        width: 54px;
        height: 54px;
        padding: 0;
        border-radius: 50%;
    }
    .premium-whatsapp-btn span,
    .premium-call-btn span {
        display: none;
    }
    .premium-whatsapp-btn i,
    .premium-call-btn i {
        font-size: 22px;
    }
    .mobile-mgn-top {
        margin-top: 0px !important;
    }
}

.fnt-style {
    font-size: 16px !important;
    line-height: 26px !important;
}

.head-fnt-style {
    font-weight: 900;
    font-size: 42px;
    line-height: 50px;
}

.para-fnt-style {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: 500;
}

.mgn-minus {
    margin-top: -40px;
}

.pbmit-subtitle {
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-style: normal;
    position: relative;
    display: inline-block;
    padding: 0 0 0 15px;
    margin-bottom: 5px;
    color: var(--pbmit-global-color);
}

.pbmit-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    border-left: 7px solid var(--pbmit-global-color);
    height: 14px;
    width: 14px;
    border-radius: 50%;
}

.pbmit-element-title2 {
    font-size: 18px;
    line-height: 34px;
    margin: -10px 0px 0px 0px;
    font-weight: 500;
}


/* ==================================================
   CASA SPA — TROPICAL DUSK LUXURY
   Homepage Editorial Refinements
================================================== */

body {
    background-color: #111713 !important;
}

/* 1. Staycation Section Headline & Spacing */
.staycation-showcase .msc-head {
    margin-top: 10px;
    margin-bottom: 50px;
}
.staycation-showcase .msc-head h2 {
    color: var(--casa-ivory-soft) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    font-size: clamp(42px, 4.5vw, 62px) !important;
    line-height: 1.0 !important;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 23, 19, 0.05) 0%, rgba(17, 23, 19, 0.10) 45%, rgba(17, 23, 19, 0.55) 78%, rgba(17, 23, 19, 0.85) 100%),
        linear-gradient(90deg, rgba(17, 23, 19, 0.55) 0%, rgba(17, 23, 19, 0.15) 35%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.hero-caption-block {
    position: absolute;
    left: 6%;
    bottom: 9%;
    z-index: 3;
    max-width: 44%;
    margin: 0;
}

.hero-caption-title {
    font-family: 'Cormorant Garamond', serif !important;
    color: var(--casa-ivory-soft) !important;
    font-size: clamp(1.5rem, 2.6vw, 2.4rem) !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.01em !important;
    margin: 0 0 0.5rem !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-caption-subtitle {
    color: var(--casa-ivory) !important;
    opacity: 0.88;
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(0.95rem, 1.3vw, 1.15rem) !important;
    font-weight: 300 !important;
    line-height: 1.35 !important;
    max-width: 42ch;
    margin: 0 !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

/* Reusable Casa SPA photo treatment for dark-to-photo transitions. */
.casa-photo {
    filter: saturate(.92) contrast(1.03) brightness(.95);
}

.casa-photo-frame {
    position: relative;
    overflow: hidden;
}

.casa-photo-frame::before {
    content: "";
    position: absolute;
    top: -15%;
    left: -8%;
    right: -8%;
    height: 40%;
    background: linear-gradient(180deg,
        rgba(16, 20, 15, 0.55) 0%,
        rgba(41, 49, 38, 0.22) 55%,
        transparent 100%);
    filter: blur(18px);
    z-index: 2;
    pointer-events: none;
}

.casa-photo-frame--bright::before {
    top: -20%;
    left: -10%;
    right: -10%;
    height: 48%;
    background: linear-gradient(180deg,
        rgba(16, 20, 15, 0.68) 0%,
        rgba(41, 49, 38, 0.30) 50%,
        transparent 100%);
    filter: blur(24px);
}

/* ===== CASA POINTS MARQUEE ===== */
.casa-points-marquee {
    display: flex;
    align-items: center;
    height: 56px;
    background: linear-gradient(160deg, #10140F 0%, var(--casa-forest) 55%, #14211C 100%);
    overflow: hidden;
}

.cpm-label {
    flex: 0 0 200px;
    padding: 0 24px;
    color: var(--casa-champagne);
    border-right: 1px solid rgba(238, 232, 220, 0.12);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.cpm-label .short {
    display: none;
}

.cpm-track {
    display: flex;
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.cpm-list {
    display: flex;
    flex-shrink: 0;
    gap: 48px;
    list-style: none;
    padding: 0 24px;
    margin: 0;
    animation: cpm-scroll 34s linear infinite;
}

.cpm-list li {
    position: relative;
    color: rgba(244, 239, 230, 0.85);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.cpm-list li::after {
    content: "";
    position: absolute;
    right: -28px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(195, 154, 91, 0.7);
    transform: translateY(-50%);
}

.cpm-list li:last-child::after {
    display: none;
}

@keyframes cpm-scroll {
    /* Each duplicated ul moves by its own full width; changing this to -50% breaks the seamless two-list loop. */
    to {
        transform: translateX(-100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cpm-list {
        animation: none;
    }
}

/* ===== CASA STATS ===== */
.casa-stats {
    position: relative;
    overflow: visible; /* allow blurred ::after to extend beyond bounds */
    padding: 72px 24px;
    background:
        radial-gradient(55% 65% at 6% 100%, rgba(98, 105, 77, 0.26) 0%, rgba(98, 105, 77, 0.10) 40%, transparent 65%),
        radial-gradient(70% 90% at 50% 30%, rgba(98, 105, 77, 0.18) 0%, transparent 55%),
        linear-gradient(180deg, var(--casa-forest) 0%, #10140F 100%);
}

.casa-stats::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -5%;
    right: -5%;
    height: 90px;
    background: linear-gradient(100deg,
        rgba(98, 105, 77, 0.20) 0%,
        rgba(16, 20, 15, 0.35) 35%,
        rgba(16, 20, 15, 0.35) 100%);
    filter: blur(20px);
    pointer-events: none;
}


@media (max-width: 767px) {
    .casa-photo-frame::before { filter: blur(10px); }
    .casa-photo-frame--bright::before { filter: blur(14px); }
    .casa-stats::after { filter: blur(12px); }
}

.casa-stats__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

.casa-stats__col {
    position: relative;
    padding: 0 24px;
    text-align: center;
    border-right: none;
}

.casa-stats__col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 80px;
    background: rgba(238, 232, 220, 0.10);
    transform: translateY(-50%);
}

.casa-stats__icon {
    display: block;
    width: 22px;
    height: 22px;
    color: var(--casa-champagne);
    margin: 0 auto 16px;
}

.casa-stats__number {
    display: block;
    min-width: 3ch;
    color: var(--casa-ivory-soft);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-variant-numeric: tabular-nums;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
}

.casa-stats__number--text {
    min-width: 0;
    font-size: clamp(2rem, 3vw, 2.6rem);
    text-transform: uppercase;
}

.casa-stats__line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--casa-champagne);
    margin: 12px auto;
}

.casa-stats__label {
    display: block;
    color: rgba(244, 239, 230, 0.75);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

/* 2. Staycation Cards (Almost Invisible, Photography Dominant) */
.msc-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    background: rgba(255, 255, 255, 0.008) !important;
    border: 1px solid rgba(244, 239, 230, 0.025) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    overflow: hidden;
    transition: transform .4s ease, border-color .4s ease;
    min-height: 420px;
}
.msc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(195, 154, 91, 0.2) !important;
}



.msc-media {
    background: transparent;
}

.msc-card:hover .msc-media img {
    transform: scale(1.04);
}

.msc-badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--casa-ivory-soft);
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(244, 239, 230, .06);
    box-shadow: none;
    text-transform: uppercase;
    z-index: 3;
}

.msc-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.msc-body h3 {
    margin: 4px 0 12px;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(24px, 3vw, 34px) !important;
    font-weight: 400 !important;
    line-height: 1.1;
}

.msc-body p {
    margin: 0 0 16px;
    color: rgba(244, 239, 230, 0.7) !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 300 !important;
    line-height: 1.6;
    font-size: 15px;
    opacity: 0.8;
}

.msc-points {
    margin: 0 0 24px;
}
.msc-points li {
    color: rgba(244, 239, 230, 0.6) !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 300 !important;
    font-size: 13px !important;
    opacity: 0.65;
    white-space: normal !important;
    word-break: break-word;
}
.msc-points li::before {
    width: 5px;
    height: 5px;
    background: var(--casa-champagne);
    box-shadow: none;
    opacity: 0.5;
}

/* Card Actions */
.msc-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.msc-btn {
    transition: all .35s ease;
}
.msc-btn-primary {
    background: var(--casa-champagne) !important;
    color: #1b120a !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 10px 18px !important;
    border: 1px solid transparent !important;
}
.msc-btn-primary:hover {
    background: #e2b470 !important;
    color: #111 !important;
}

.msc-btn-ghost {
    background: transparent !important;
    border: 0 !important;
    padding: 6px 10px !important;
    color: rgba(244, 239, 230, 0.62) !important;
    font-weight: 300 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: none !important;
}
.msc-btn-ghost:hover {
    color: var(--casa-ivory) !important;
    background: transparent !important;
}

/* 3. Amenities Section & Continuous Forest Transition */
.pbmit-sticky-section {
    padding-top: 42px !important;
    padding-bottom: 36px !important;
    margin-bottom: 0 !important;
    border-bottom: 0 !important;
    background:
        radial-gradient(90% 70% at 8% 35%, rgba(98, 105, 77, 0.34) 0%, transparent 55%),
        linear-gradient(160deg, var(--casa-olive) 0%, var(--casa-forest) 55%, #10140F 100%) !important;
    position: relative;
    z-index: 2;
    isolation: isolate;
}

.pbmit-sticky-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    background: linear-gradient(to bottom, rgba(17, 23, 19, 0.78) 0%, rgba(22, 29, 25, 0.38) 58%, rgba(22, 29, 25, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.pbmit-sticky-col {
    padding-right: 42px !important;
}

.pbmit-sticky-section .pbmit-heading-subheading {
    margin-bottom: 0 !important;
    overflow: visible !important;
    clip-path: none !important;
}

.pbmit-heading-subheading .pbmit-subtitle {
    color: var(--casa-champagne) !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
    font-weight: 500 !important;
}

.pbmit-sticky-section .msc-head.text-start h2,
.casa-editorial-headline {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    font-size: clamp(42px, 4.1vw, 60px) !important;
    line-height: 1.04 !important;
    color: var(--casa-ivory-soft) !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.01em !important;
    max-width: 560px;
    white-space: normal;
    overflow: visible !important;
    clip-path: none !important;
}

.pbmit-sticky-section .msc-head.text-start p {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 300 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: rgba(244, 239, 230, 0.62) !important;
    opacity: 1;
}

/* 4. Amenities — ZERO CARDS VISÍVEIS (Eliminar todas as caixas brancas) */
.pbmit-ihbox-style-19,
.pbmit-ihbox-style-19 .pbmit-ihbox-box,
.ihbox-six-right-area .pbmit-miconheading-style-19 .pbmit-ihbox-style-19 .pbmit-ihbox-box,
.ihbox-six-right-area .pbmit-miconheading-style-19:nth-child(n) .pbmit-ihbox-style-19 .pbmit-ihbox-box {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 4px 8px 10px !important;
    margin-bottom: 0 !important;
    transition: transform 0.3s ease;
}

.ihbox-six-right-area .pbmit-miconheading-style-19 {
    margin-bottom: 0 !important;
}

.ihbox-six-right-area {
    padding: 6px 0 18px 34px !important;
}

.ihbox-six-right-area .row {
    row-gap: 16px;
}

.pbmit-ihbox-style-19:hover {
    transform: translateY(-2px);
}

.pbmit-ihbox-style-19 .pbmit-ihbox-icon-wrapper {
    color: var(--casa-champagne) !important;
    background: transparent !important;
    font-size: 22px !important;
    margin-bottom: 4px !important;
}

.pbmit-ihbox-style-19 .pbmit-element-title {
    color: var(--casa-ivory-soft) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 21px !important;
    font-weight: 400 !important;
    margin: 6px 0 4px !important;
    line-height: 1.1 !important;
}

.pbmit-ihbox-style-19 .pbmit-heading-desc {
    color: var(--casa-ivory) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    opacity: 0.9 !important;
}

/* 5. Property Circular (Venue Section) — Protagonismo Fotográfico & Sem Linha Divisória */
.venue-premium-section {
    position: relative;
    padding: 62px 20px 68px !important;
    margin-top: 0 !important;
    border-top: 0 !important;
    background:
        radial-gradient(80% 80% at 50% 45%, rgba(155, 86, 55, 0.10) 0%, transparent 40%),
        radial-gradient(140% 100% at 85% 15%, rgba(52, 78, 108, 0.22) 0%, transparent 55%),
        linear-gradient(200deg, rgba(41, 49, 38, 0.85) 0%, rgba(22, 29, 25, 0.92) 60%, #0C100D 100%) !important;
    overflow: hidden;
}

.venue-premium-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/hero-master.webp");
    background-size: cover;
    background-position: center 35%;
    opacity: 0.62;
    filter: saturate(1.05) contrast(1.08) brightness(.92) blur(.4px);
    transform: scale(1.025);
    pointer-events: none;
    z-index: 0;
}

.venue-premium-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 60% at 50% 48%, rgba(22, 29, 25, 0.20) 0%, rgba(22, 29, 25, 0.45) 35%, rgba(22, 29, 25, 0.78) 62%, rgba(14, 20, 16, 0.94) 100%),
        radial-gradient(90% 70% at 12% 85%, rgba(155, 86, 55, 0.10) 0%, transparent 45%),
        radial-gradient(90% 70% at 88% 10%, rgba(52, 78, 108, 0.18) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.venue-premium-container {
    position: relative;
    z-index: 2;
}

.venue-premium-section .msc-head h2 {
    color: var(--casa-ivory-soft) !important;
    opacity: 0.94;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.55),
        0 1px 2px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
}

.orbit-one {
    width: 610px;
    height: 610px;
    border: 1px solid rgba(195, 154, 91, 0.03) !important;
    opacity: 0.10 !important;
}

.orbit-two {
    width: 575px;
    height: 575px;
    border: 1px solid rgba(195, 154, 91, 0.04) !important;
    opacity: 0.13 !important;
}

.venue-premium-circle-wrap::before,
.venue-premium-circle-wrap::after {
    opacity: 0.08 !important;
    background: rgba(98, 105, 77, 0.18) !important;
}

.venue-premium-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 560px !important;
    height: 560px !important;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    padding: 4px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24) !important;
    border: 1px solid rgba(195, 154, 91, 0.30) !important;
    z-index: 3;
}

.venue-premium-circle::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(195, 154, 91, 0.08);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.vp-dot {
    position: absolute;
    width: 3px !important;
    height: 3px !important;
    background: var(--casa-champagne) !important;
    border-radius: 50%;
    box-shadow: none !important;
}

.vp-line {
    position: absolute;
    height: 1px !important;
    background: rgba(195, 154, 91, 0.14) !important;
    opacity: 0.18 !important;
}

.venue-premium-point h4,
.venue-premium-point .pbmit-element-title2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: var(--casa-ivory-soft) !important;
    font-size: 20px !important;
    margin-bottom: 3px !important;
}

.venue-premium-point p {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 300 !important;
    font-size: 13px !important;
    color: rgba(244, 239, 230, 0.64) !important;
    line-height: 1.45 !important;
    opacity: 0.62 !important;
}

/* 6. Reviews & Footer — editorial finish */
.casa-spa-guest-reviews {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 96px 0 112px !important;
    background:
        radial-gradient(100% 80% at 88% 30%, rgba(52, 78, 108, 0.34) 0%, transparent 55%),
        linear-gradient(160deg, var(--casa-forest) 0%, #0E120F 100%) !important;
}

.casa-spa-guest-reviews::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 130px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(17, 23, 19, 0) 0%, rgba(17, 23, 19, 0.58) 72%, #0B100D 100%);
}

.casa-spa-guest-reviews .pbmit-subtitle {
    color: var(--casa-champagne) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
}

.casa-spa-guest-reviews .msc-head h2 {
    color: var(--casa-ivory-soft) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(42px, 4vw, 58px) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: -0.01em !important;
}

.casa-spa-guest-reviews .fnt-style {
    color: rgba(244, 239, 230, 0.58) !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 300 !important;
}

.casa-spa-guest-reviews .mgr-card {
    background: rgba(98, 105, 77, 0.16) !important;
    border: 1px solid rgba(238, 232, 220, 0.10) !important;
    border-radius: 4px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
    padding: 30px 30px 28px !important;
}

.casa-spa-guest-reviews .mgr-card p {
    color: rgba(244, 239, 230, 0.82) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(21px, 1.7vw, 28px) !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
}

.casa-spa-guest-reviews .mgr-meta {
    border-top-color: rgba(244, 239, 230, 0.055) !important;
}

.casa-spa-guest-reviews .mgr-name {
    color: var(--casa-ivory-soft) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em;
}

.casa-spa-guest-reviews .mgr-role {
    color: rgba(244, 239, 230, 0.5) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 12px !important;
    font-weight: 300 !important;
}

.casa-spa-guest-reviews .mgr-stars {
    gap: 1px !important;
    opacity: 0.72;
}

.casa-spa-guest-reviews .mgr-stars span,
.casa-spa-guest-reviews .mgr-stars span.half {
    width: 13px !important;
    height: 13px !important;
}

.casa-spa-guest-reviews .mgr-stars span::before,
.casa-spa-guest-reviews .mgr-stars span.half::before {
    color: var(--casa-champagne) !important;
    font-size: 13px !important;
    line-height: 13px !important;
}

.casa-spa-guest-reviews .mgr-quote {
    width: 28px !important;
    height: 28px !important;
    border-radius: 4px !important;
    background: rgba(195, 154, 91, 0.78) !important;
    color: #111713 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

.casa-spa-guest-reviews .mgr-thumb {
    background: transparent !important;
    border: 0 !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

.casa-spa-guest-reviews .mgr-thumb img {
    border-radius: 4px !important;
    filter: saturate(.92) contrast(1.03) brightness(.95);
}

.casa-spa-guest-reviews .mgr-nav-btn {
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid rgba(244, 239, 230, 0.08) !important;
    color: var(--casa-ivory-soft) !important;
    box-shadow: none !important;
}

.casa-spa-guest-reviews .mgr-nav-btn:hover {
    background: rgba(195, 154, 91, 0.12) !important;
    border-color: rgba(195, 154, 91, 0.22) !important;
    color: var(--casa-ivory-soft) !important;
}

.footer-container {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 72px 0 66px !important;
    background: linear-gradient(180deg, var(--casa-forest) 0%, #0A0E0B 60%, #080C0A 100%) !important;
    color: var(--casa-ivory-soft) !important;
}

.footer-column h3 {
    color: var(--casa-ivory-soft) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(24px, 2.1vw, 32px) !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
}

.footer-column,
.footer-column li,
.footer-column a {
    color: rgba(244, 239, 230, 0.62) !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 300 !important;
}

.footer-column a:hover {
    color: var(--casa-champagne) !important;
    text-decoration: none !important;
}

.footer-logo img {
    opacity: 0.82;
    height: 48px;
    width: auto;
    max-width: 100%;
}

.site-title img {
    max-height: 54px;
    width: auto;
    max-width: 100%;
}

.footer-map {
    border: 1px solid rgba(244, 239, 230, 0.08) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    overflow: hidden;
}

.footer-map iframe {
    filter: saturate(.6) contrast(.9) brightness(.82);
}

@media (max-width: 991px) {
    .pbmit-sticky-section {
        padding-top: 46px !important;
        padding-bottom: 42px !important;
    }

    .pbmit-sticky-col {
        padding-right: 0 !important;
    }

    .casa-editorial-headline {
        font-size: clamp(36px, 11vw, 46px) !important;
        max-width: none;
        text-align: left;
    }

    .hero-caption-block {
        left: 6%;
        right: 6%;
        bottom: 12%;
        max-width: none;
    }

    .hero-caption-title {
        font-size: 1.4rem !important;
    }

    .casa-points-marquee {
        height: 46px;
    }

    .cpm-label {
        flex-basis: 96px;
        padding: 0 10px;
        overflow: hidden;
        font-size: 8px;
        letter-spacing: 0.08em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .cpm-list {
        gap: 32px;
        animation-duration: 26s;
    }

    .cpm-list li {
        font-size: 14px;
    }

    .cpm-list li::after {
        right: -18px;
    }

    .casa-stats {
        padding: 40px 16px 48px;
    }

    .casa-stats__grid {
        gap: 0;
    }

    .casa-stats__col {
        padding: 0 6px;
    }

    .casa-stats__col:not(:last-child)::after {
        display: block;
        height: 56px;
    }

    .casa-stats__icon {
        width: 16px;
        height: 16px;
        margin-bottom: 8px;
    }

    .casa-stats__number {
        min-width: 0;
        font-size: clamp(1.3rem, 6.5vw, 1.7rem);
    }

    .casa-stats__number--text {
        min-width: 0;
        font-size: clamp(0.95rem, 4.2vw, 1.15rem);
        line-height: 1.15;
    }

    .casa-stats__line {
        display: block;
        width: 20px;
        margin: 8px auto;
    }

    .casa-stats__label {
        font-size: 8.5px;
        letter-spacing: 0.06em;
        line-height: 1.25;
    }

    .ihbox-six-right-area {
        padding: 18px 0 0 !important;
    }

    .ihbox-six-right-area .row {
        row-gap: 10px;
    }

    .pbmit-ihbox-style-19 .pbmit-ihbox-box,
    .pbmit-ihbox-style-19 .pcrd {
        text-align: left;
    }

    .venue-premium-section {
        padding-top: 54px !important;
    }

    .venue-premium-circle {
        width: min(86vw, 360px) !important;
        height: min(86vw, 360px) !important;
    }

    .casa-spa-guest-reviews {
        padding: 68px 0 82px !important;
        background:
            radial-gradient(ellipse at 50% 18%, rgba(98, 105, 77, 0.14) 0%, rgba(41, 49, 38, 0.38) 42%, rgba(17, 23, 19, 0.98) 100%),
            #111713 !important;
    }

    .casa-spa-guest-reviews .mgr-card {
        padding: 24px 22px !important;
    }

    .casa-spa-guest-reviews .mgr-card p {
        font-size: 23px !important;
    }

    .footer-container {
        padding: 56px 0 62px !important;
    }
}

@media (max-width: 420px) {
    .cpm-label {
        flex-basis: 64px;
    }

    .cpm-label .full {
        display: none;
    }

    .cpm-label .short {
        display: inline;
    }
}

/* Mobile Hero Image Override */
@media (max-width: 767px) {
    .hero-section .swiper-slide {
        background-image: url('../images/index/hero-master-mobile.webp') !important;
        background-position: center !important;
    }
    .hero-section, .hero-section .swiper-slider, .hero-section .swiper-slide {
        height: auto !important;
        aspect-ratio: 9/16 !important;
        min-height: unset !important;
    }
}


@media (max-width: 992px) {
    .msc-card {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto 1fr !important;
        min-height: unset !important;
    }
    .msc-card--reverse {
        direction: ltr !important;
    }
    .msc-card--reverse > * {
        direction: ltr !important;
    }
    .msc-media {
        border-right: none !important;
        border-bottom: 1px solid var(--msc-line) !important;
        aspect-ratio: 4/3 !important;
    }
    .msc-body {
        padding: 24px 20px 28px !important;
    }
}


/* ===== Scoped: Casa SPA Gallery ===== */
.mv-gallery { padding: 60px 0; background-color: #f8fafc; }
.mv-gallery .mv-heading { text-align: center; margin-bottom: 40px; }
.mv-gallery .mv-heading h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin-bottom: 12px; }
.mv-gallery .mv-heading p { color: #475569; max-width: 600px; margin: 0 auto; }
.gallery-filter-wrap { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.gallery-filter-btn { 
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    background: transparent; 
    border: 1px solid rgba(22, 29, 25, 0.2); 
    color: var(--casa-forest); 
    padding: 8px 18px; 
    border-radius: 99px; 
    font-weight: 600; 
    font-size: 14px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
}
.gallery-filter-btn:hover, .gallery-filter-btn.active { 
    background: var(--casa-forest); 
    color: var(--casa-ivory); 
    border-color: var(--casa-forest); 
}

/* Ritmo Editorial Base */
.gallery-item {
    --gallery-ratio: 4 / 3;
}

@media (max-width: 991.98px) {
    /* Controle seguro para Mobile e Tablet */
    .gallery-item { --gallery-ratio: 4 / 3 !important; }
}

@media (min-width: 992px) {
    /* Desktop Mosaico Editorial (CSS Grid) */
    .mv-gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
    
    /* Prevent orphaned panoramas when filtering */
    .mv-gallery-grid.is-filtered .gallery-item {
        grid-column: span 1 !important;
        --gallery-ratio: 4 / 3 !important;
    }
    
    .gallery-item.is-featured {
        grid-column: span 2;
        --gallery-ratio: 8 / 3;
    }
    
    /* Anula interferencia do Bootstrap row/col dentro do nosso grid desktop */
    .mv-gallery-grid > .gallery-item {
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

.mv-gallery-card { display: block; position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; }
.mv-gallery-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); }

.mv-gallery-media { 
    width: 100%; 
    aspect-ratio: var(--gallery-ratio); 
    overflow: hidden; 
    position: relative; 
    background-color: #e5e7eb; 
}
.mv-gallery-media img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center;
    transition: transform 0.5s ease; 
}
.mv-gallery-card:hover .mv-gallery-media img { transform: scale(1.05); }
.mv-gallery-badge { position: absolute; top: 16px; left: 16px; background: rgba(15, 23, 42, 0.7); color: #fff; padding: 4px 12px; border-radius: 99px; font-size: 12px; font-weight: 600; z-index: 2; backdrop-filter: blur(4px); }
.mv-gallery-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); padding: 40px 20px 20px; z-index: 2; transition: opacity 0.3s ease; }
.mv-gallery-overlay h4 { color: #fff; margin: 0 0 4px; font-size: 18px; font-weight: 700; }
.mv-gallery-overlay p { color: #cbd5e1; margin: 0; font-size: 14px; line-height: 1.4; }

/* Gallery Lightbox Popup */
.mv-gallery-popup { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(22, 29, 25, 0.92); align-items: center; justify-content: center; }
.mv-gallery-popup.active { display: flex; }
.mv-gallery-popup img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.mv-popup-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--casa-ivory); font-size: 36px; cursor: pointer; line-height: 1; z-index: 1; }
.mv-popup-prev, .mv-popup-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(22, 29, 25, 0.5); border: 1px solid rgba(238,232,220,0.2); color: var(--casa-ivory); font-size: 32px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.mv-popup-prev { left: 16px; }
.mv-popup-next { right: 16px; }
.mv-popup-prev:hover, .mv-popup-next:hover { background: var(--casa-forest); }
@media (max-width: 767.98px) { .mv-popup-prev { left: 8px; } .mv-popup-next { right: 8px; } }

/* ===== Casa SPA Video Tour ===== */
.casa-video-tour {
    background-color: var(--casa-forest);
    color: var(--casa-ivory-soft);
    position: relative;
    z-index: 1;
    padding-block: clamp(88px, 8vw, 130px);
}

.casa-video-tour .container {
    max-width: 1240px;
}

/* Fundo radial sutil atrás da área do vídeo */
.casa-video-tour::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(111, 125, 109, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.casa-video-tour__grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.casa-video-tour__content {
    max-width: 520px;
}

.casa-video-tour__content .pbmit-subtitle {
    color: var(--casa-champagne);
    margin-bottom: 12px;
}

.casa-video-tour__content .casa-editorial-headline {
    color: var(--casa-ivory);
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
    max-width: 400px;
    line-height: 1.1;
}

.casa-video-tour__desc {
    color: rgba(244,239,230,.65);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
}

.casa-video-tour__attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--casa-ivory);
}

.casa-video-tour__attributes .casa-attr {
    position: relative;
}

.casa-video-tour__attributes .casa-attr:not(:last-child)::after {
    content: "·";
    position: absolute;
    right: -14px;
    color: var(--casa-champagne);
}

.casa-video-tour__cta-wrapper {
    margin-top: 36px;
}

.casa-video-tour__cta-wrapper .pbmit-btn-outline {
    border-color: var(--casa-champagne);
    color: var(--casa-champagne);
}

.casa-video-tour__cta-wrapper .pbmit-btn-outline:hover {
    background-color: var(--casa-champagne);
    color: var(--casa-forest);
}

.casa-video-tour__media {
    width: min(84vw, 340px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.casa-video-tour__stage {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.casa-video-tour__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 4px;
    z-index: 2;
    background-color: #000;
}

/* Pseudo-elemento estrutural deslocado */
.casa-video-tour__frame::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(195,154,91,.22);
    z-index: -1;
    pointer-events: none;
}

.casa-video-tour__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    box-shadow: 0 32px 80px rgba(0,0,0,.20);
    transition: filter 0.3s ease;
}

.casa-video-tour__video:not([controls]) {
    filter: saturate(.90) contrast(.97) brightness(.82);
}

.casa-video-tour__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(244,239,230,.92);
    border: 1px solid rgba(195,154,91,.35);
    color: var(--casa-forest);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding-left: 4px;
}

.casa-video-tour__play:hover {
    transform: translate(-50%, -50%) scale(1.04);
}

.casa-video-tour__meta {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    pointer-events: none;
}

.casa-video-tour__meta span {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--casa-ivory-soft);
    position: relative;
    padding-left: 30px;
}

.casa-video-tour__meta span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: var(--casa-champagne);
}

.casa-video-tour__microcopy {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: rgba(244,239,230,.45);
    margin: 0;
    text-align: left;
    width: 100%;
}

@media (min-width: 992px) {
    .casa-video-tour__grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
        column-gap: clamp(56px, 6vw, 96px);
    }
    .casa-video-tour__media {
        width: clamp(340px, 27vw, 390px);
        margin-inline: auto 0;
    }
    .casa-video-tour__content {
        margin-top: -30px; /* Slight optical adjustment upwards */
    }
    .casa-video-tour__play {
        width: 76px;
        height: 76px;
        font-size: 24px;
    }
}
/* ===== WhatsApp Concierge ===== */
/* ===== WhatsApp Concierge ===== */
.casa-whatsapp-concierge {
    position: fixed;
    right: 18px;
    bottom: 100px;
    width: 320px;
    background-color: var(--casa-forest);
    border: 1px solid var(--casa-olive);
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.casa-whatsapp-concierge.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.casa-whatsapp-concierge__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--casa-sage);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}
.casa-whatsapp-concierge__close:hover {
    color: var(--casa-ivory);
}
.casa-whatsapp-concierge__eyebrow {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--casa-champagne);
    margin-bottom: 8px;
}
.casa-whatsapp-concierge__headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--casa-ivory);
    margin-bottom: 8px;
    line-height: 1.2;
}
.casa-whatsapp-concierge__text {
    font-size: 14px;
    color: var(--casa-ivory-soft);
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}
.casa-whatsapp-concierge__cta {
    display: inline-block;
    color: var(--casa-forest);
    background-color: var(--casa-champagne);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}
.casa-whatsapp-concierge__cta:hover {
    background-color: #d4a968;
    color: var(--casa-forest);
}

@media (max-width: 767px) {
    .casa-whatsapp-concierge {
        width: calc(100vw - 36px);
        max-width: 320px;
        right: 18px;
        bottom: calc(84px + env(safe-area-inset-bottom));
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .casa-whatsapp-concierge {
        right: 10px;
        width: calc(100vw - 20px);
    }
}

/* ===== Casa SPA Sticky Navbar ===== */
.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050 !important;
}

.site-header .pbmit-header-overlay {
    transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-bottom 0.35s ease;
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled .pbmit-header-overlay {
    background: rgba(22, 29, 25, 0.90) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(195, 154, 91, 0.10);
}

@media (prefers-reduced-motion: reduce) {
    .site-header .pbmit-header-overlay {
        transition: none !important;
    }
}

/* Fix for anchor links to prevent being hidden under fixed header */
#avaliacoes {
    scroll-margin-top: 90px;
}
