/* ============================================================
   POUSADA FILHOS DA TERRA — Landing Page
   Design: Luxury Travel aesthetic
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
    --dark:       #0C1B2E;
    --dark-2:     #091524;
    --dark-3:     #060E18;
    --gold:       #C4A45A;
    --gold-light: #D4B870;
    --cream:      #F4F7FB;
    --cream-2:    #F8FAFD;
    --white:      #FFFFFF;
    --text:       #1A1F2E;
    --text-muted: #5A6478;
    --serif:      'Cormorant Garamond', Georgia, serif;
    --sans:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --dur:        0.4s;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
.section-tag {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.section-tag--gold { color: var(--gold); }

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
}
.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold-light); }

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 600px;
    margin: 1.25rem auto 0;
}

/* ---- LAYOUT ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.75rem;
}
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header--light .section-tag { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 3px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold);
    color: var(--dark-2);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,164,90,0.35);
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.btn-dark:hover {
    background: var(--dark-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--white);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 0.95rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                padding var(--dur) var(--ease);
}
.navbar.scrolled {
    background: var(--dark-2);
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
    padding: 0.875rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: opacity var(--dur);
    /* sem filtro — logo exibe suas cores originais */
}
.nav-logo img:hover { opacity: 0.8; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.03em;
    transition: color var(--dur) var(--ease);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--dur) var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(6,14,24,0.45) 0%,
        rgba(9,21,36,0.62) 50%,
        rgba(6,14,24,0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 880px;
    padding: 0 1.5rem;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(196,164,90,0.35);
    border-radius: 2px;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor {
    display: inline-block;
    color: var(--gold);
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    font-weight: 200;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 2.25rem;
    font-weight: 300;
}

/* ---- HERO GLASS BAR (glassmorphism) ---- */
.hero-glass-bar {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: 2.5rem;
    padding: 1.1rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.glass-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0 2rem;
}
.glass-num {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}
.glass-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}
.glass-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
}
.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(196,164,90,0.7), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(1.25); opacity: 1; }
}

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
    background: var(--dark);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(196,164,90,0.15);
}
.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0 3.5rem;
}
.proof-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.01em;
}
.proof-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.proof-divider {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.section-benefits { background: var(--cream-2); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.benefit-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    cursor: default;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.benefit-img-wrap {
    height: 225px;
    overflow: hidden;
}
.benefit-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
}
.benefit-card:hover .benefit-img-wrap img {
    transform: scale(1.08);
}

.benefit-content {
    padding: 1.5rem 1.5rem 1.75rem;
    border-top: 2px solid transparent;
    transition: border-color var(--dur) var(--ease);
}
.benefit-card:hover .benefit-content {
    border-top-color: var(--gold);
}
.benefit-content h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.benefits-cta { text-align: center; }

/* ============================================================
   VIDEO — layout vertical portrait + duas colunas
   ============================================================ */
.section-video { background: var(--dark); }

.video-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 5rem;
    align-items: center;
}

.video-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.video-text .section-tag { margin-bottom: 1rem; }
.video-text .section-title { margin-bottom: 1.5rem; }

.video-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    font-weight: 300;
    max-width: 420px;
}

.video-arrow {
    margin-top: 2.5rem;
    align-self: flex-end;
    width: 180px;
    opacity: 0.8;
}
.video-arrow svg { width: 100%; height: auto; }

/* portrait iframe container — 9:16 */
.video-portrait-wrap {
    position: relative;
    width: 300px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(196,164,90,0.2);
}
.video-portrait-wrap::before {
    content: '';
    display: block;
    padding-top: 177.78%; /* 16/9 ratio */
}
.video-portrait-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* video card inside portrait container */
.video-card-portrait {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
}
.video-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.video-card-portrait:hover .video-card-bg { transform: scale(1.05); }

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,14,24,0.52);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    transition: background var(--dur) var(--ease);
}
.video-card-portrait:hover .video-card-overlay { background: rgba(6,14,24,0.38); }

.video-play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--dur) var(--ease);
}
.video-play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.video-card-portrait:hover .video-play-btn {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.08);
}
.video-card-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--sans);
}

@media (max-width: 900px) {
    .video-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .video-text { align-items: center; }
    .video-sub { max-width: 100%; }
    .video-arrow { display: none; }
    .video-portrait-wrap {
        width: min(300px, 80vw);
        margin: 0 auto;
    }
}

/* ============================================================
   ROOMS
   ============================================================ */
.section-rooms { background: var(--cream); }

.rooms-swiper {
    margin-bottom: 2.5rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.room-slide {
    height: 500px;
    overflow: hidden;
}
.room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.rooms-swiper:hover .room-slide img { transform: scale(1.03); }

/* ---- Expand button on hover ---- */
.room-slide {
    position: relative;
    cursor: zoom-in;
}
.room-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6,14,24,0);
    transition: background 0.4s var(--ease);
    pointer-events: none;
}
.room-slide:hover::after {
    background: rgba(6,14,24,0.28);
}
.room-expand-btn {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s var(--ease);
}
.room-expand-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.room-slide:hover .room-expand-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.room-expand-btn:hover {
    background: rgba(196,164,90,0.25);
    border-color: var(--gold);
    color: var(--gold);
}

/* ---- LIGHTBOX ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6,14,24,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}
.lightbox.open {
    opacity: 1;
    pointer-events: all;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.35s var(--ease);
}
.lightbox.open .lightbox-content img { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-close:hover {
    background: rgba(196,164,90,0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-nav:hover {
    background: rgba(196,164,90,0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--sans);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.12em;
}

.rooms-swiper .swiper-button-prev,
.rooms-swiper .swiper-button-next {
    color: var(--white);
    background: rgba(20,31,25,0.65);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: background var(--dur);
}
.rooms-swiper .swiper-button-prev:hover,
.rooms-swiper .swiper-button-next:hover { background: rgba(20,31,25,0.9); }
.rooms-swiper .swiper-button-prev::after,
.rooms-swiper .swiper-button-next::after { font-size: 15px; font-weight: bold; }
.rooms-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.6); opacity: 1; }
.rooms-swiper .swiper-pagination-bullet-active { background: var(--gold); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding: 2rem 2.25rem;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.06);
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.amenity-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.rooms-cta { text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials { background: var(--dark); }

.testimonials-swiper { margin-bottom: 1.5rem; }

.testimonial-slide {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.testimonial-slide img {
    width: 100%;
    border-radius: 3px;
    display: block;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    color: var(--gold);
    background: rgba(14,24,18,0.85);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(196,164,90,0.3);
    transition: all var(--dur);
}
.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
    background: var(--dark);
    border-color: var(--gold);
}
.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after { font-size: 14px; font-weight: bold; }
.testimonials-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.25); opacity: 1; }
.testimonials-swiper .swiper-pagination-bullet-active { background: var(--gold); }

.testimonials-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    margin-top: 0.5rem;
}

/* ============================================================
   LOCATION
   ============================================================ */
.section-location { background: var(--cream-2); }

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

.location-content .section-tag { margin-bottom: 0.75rem; }
.location-content .section-title { margin-bottom: 1.5rem; }
.location-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.location-content p strong { color: var(--text); font-weight: 500; }

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.location-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.location-info-item strong {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}
.location-info-item span {
    font-size: 0.9rem;
    color: var(--text);
}

.location-map {
    border-radius: 6px;
    overflow: hidden;
    height: 460px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ============================================================
   MAPA DE TRINDADE
   ============================================================ */
.section-map { background: var(--cream-2); }

.map-illustration {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.07);
    line-height: 0;
}
.map-illustration img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s var(--ease);
}
.map-illustration:hover img { transform: scale(1.015); }

/* ============================================================
   ABOUT / HISTÓRIA
   ============================================================ */
.section-about { background: var(--dark); }

.about-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.about-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-weight: 300;
}
.about-content p:last-child { margin-bottom: 0; }

/* ---- Collage polaroid ---- */
.about-collage {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.polaroid {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.9rem 0.9rem 3rem;
    width: 240px;
    flex-shrink: 0;
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    cursor: default;
}
.polaroid--left  { transform: rotate(-3.5deg); }
.polaroid--right { transform: rotate(2.8deg); }

.polaroid:hover {
    transform: rotate(0deg) scale(1.04);
    box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 6px 18px rgba(0,0,0,0.4);
    z-index: 2;
}

.polaroid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) brightness(0.95);
}

.polaroid figcaption {
    text-align: center;
    padding-top: 0.85rem;
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.01em;
}

@media (max-width: 600px) {
    .about-collage {
        gap: 1.25rem;
    }
    .polaroid {
        width: 155px;
        padding: 0.6rem 0.6rem 2.25rem;
    }
    .polaroid figcaption { font-size: 0.85rem; padding-top: 0.6rem; }
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq { background: var(--cream-2); }

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: var(--white);
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
    transition: border-color var(--dur) var(--ease);
}
.faq-item[open] {
    border-color: rgba(196,164,90,0.35);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 0.975rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color var(--dur) var(--ease);
    gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item[open] .faq-question { color: var(--dark); }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    padding: 0 1.5rem 1.35rem;
}
.faq-answer p {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-final-cta {
    background: var(--dark-2);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196,164,90,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}
.final-cta-content .section-title { margin-bottom: 1.25rem; }
.final-cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark-3);
    padding: 4.5rem 0 2rem;
    color: rgba(255,255,255,0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.75;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--dur) var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
    font-size: 0.875rem;
    margin-bottom: 0.55rem;
    line-height: 1.5;
}
.footer-contact a {
    color: rgba(255,255,255,0.5);
    transition: color var(--dur) var(--ease);
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}
.footer-bottom a {
    color: var(--gold);
    opacity: 0.8;
    transition: opacity var(--dur);
}
.footer-bottom a:hover { opacity: 1; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--dur) var(--ease);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
}
.floating-whatsapp.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.floating-whatsapp:hover {
    background: #1DB954;
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    transform: translateY(-2px);
}
.floating-whatsapp.visible:hover { transform: translateY(-2px); }
.floating-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .proof-item { padding: 0 2rem; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }

    /* Nav mobile */
    .nav-links,
    .nav-cta { display: none; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--dark-2);
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 999;
    }
    .nav-links.open .nav-link {
        font-size: 1.6rem;
        font-family: var(--serif);
        font-weight: 300;
        letter-spacing: 0.05em;
    }
    .nav-toggle { display: flex; }

    /* Hero */
    .hero-headline { min-height: 3.6em; }
    .hero-scroll-indicator { display: none; }
    .hero-glass-bar { flex-wrap: wrap; justify-content: center; padding: 1rem; }
    .glass-stat { padding: 0.5rem 1.2rem; }
    .glass-divider { display: none; }

    /* Proof bar */
    .proof-items { gap: 0; flex-wrap: wrap; }
    .proof-item { padding: 1rem 1.5rem; flex: 0 0 50%; }
    .proof-divider { display: none; }

    /* Benefits */
    .benefits-grid { grid-template-columns: 1fr; gap: 1.25rem; }

    /* Rooms */
    .room-slide { height: 300px; }

    /* Amenities */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }

    /* Testimonials */
    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next { display: none; }

    /* Location */
    .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .location-map { height: 300px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    /* Floating WA */
    .floating-whatsapp span { display: none; }
    .floating-whatsapp { padding: 1rem; border-radius: 50%; }
    .floating-whatsapp svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
    .amenities-grid { grid-template-columns: 1fr; }
    .location-info { grid-template-columns: 1fr; }
    .proof-item { flex: 0 0 100%; }
    .proof-divider { display: none; }
    .section-final-cta { padding: 80px 0; }
}
