/* ============================================================
   Hotel Jalim — Premium Stylesheet
   Luxury hotel quality design upgrade
   ============================================================ */

/* Google Fonts loaded via <link rel="preload"> in HTML for better performance */

/* ======================== CSS VARIABLES ======================== */
:root {
    --gold: #ffbe5c;
    --gold-light: rgba(255,190,92,0.15);
    --gold-border: rgba(255,190,92,0.3);
    --navy: #0e47a1;
    --navy-deep: #082044;
    --orange: #ffbe5c;
    --orange-dark: #f5a623;
    --cream: #faf8f4;
    --cream-warm: #f5f0e8;
    --text-muted: #5a6270;
    --text-light: #888;
    --border-light: #eee;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.16);
    --shadow-gold: 0 8px 32px rgba(255,190,92,0.25);
    --radius: 18px;
    --transition: 0.25s ease;
}

/* ======================== RESET & BASE ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

h1, h2 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ======================== SCROLL REVEAL ======================== */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.65s ease;
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
}


/* ======================== ANIMATIONS ======================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.55); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.08); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.7s ease both;
}

.fade-in {
    animation: fadeIn 0.5s ease both;
}

/* ======================== SECTION DIVIDER ======================== */
.section-divider {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--orange);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ======================== NAVBAR ======================== */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--orange) 60%, transparent 100%);
    opacity: 0.5;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 76px;
    position: relative;
}
.navbar-brand {
    position: absolute;
    left: 40px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.01em;
}
.navbar-brand:hover { opacity: 0.8; }
.navbar-logo a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.navbar-logo img {
    height: 46px; width: 46px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 3px 14px rgba(0,0,0,0.14);
    transition: transform 0.25s ease;
}
.navbar-logo a:hover img { transform: scale(1.04); }
.logo-text span,
.site-name {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: 0.01em;
}
.logo-text small {
    font-size: 0.67rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.navbar-nav { display: flex; align-items: center; gap: 8px; list-style: none; }
.navbar-nav > li:last-child { position: absolute; right: 40px; }
.navbar-nav > li > a {
    font-size: 0.86rem;
    font-weight: 500;
    color: #444;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.01em;
    position: relative;
}
.navbar-nav > li > a:hover {
    color: var(--orange);
    background: rgba(255,190,92,0.06);
}
.btn-reservar {
    background: var(--navy);
    color: #fff !important;
    padding: 11px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.84rem;
    transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(13,30,43,0.25);
    margin-left: 8px;
}
.btn-reservar:hover {
    background: var(--orange) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,190,92,0.35);
}
.navbar-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; transition: background 0.2s; }
.navbar-toggle:hover { background: rgba(0,0,0,0.05); }
.navbar-toggle span { display: block; width: 22px; height: 2px; background: #333; margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ======================== HERO ======================== */
.hero {
    background: linear-gradient(
        135deg,
        #0a2a5e 0%,
        #1256b4 35%,
        #0e47a1 65%,
        #082044 100%
    );
    padding: 120px 28px 100px;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 55%, rgba(255,190,92,0.13) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(14,100,180,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(255,190,92,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,190,92,0.4), transparent);
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.hero-text { flex: 1; max-width: 580px; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.71rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    background: rgba(255,190,92,0.1);
    border: 1px solid rgba(255,190,92,0.3);
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.hero-tag::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.8;
}
.hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.1rem, 4.2vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-text h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.62);
    margin-bottom: 32px;
    line-height: 1.75;
    font-weight: 300;
    max-width: 480px;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.hero-badges span {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    letter-spacing: 0.03em;
    transition: background 0.2s, border-color 0.2s;
}
.hero-badges span:hover {
    background: rgba(255,190,92,0.15);
    border-color: rgba(255,190,92,0.4);
    color: var(--gold);
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--orange) 0%, #f5a623 100%);
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 32px rgba(255,190,92,0.45), 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
}
.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 42px rgba(255,190,92,0.55), 0 4px 12px rgba(0,0,0,0.2);
}
.btn-hero svg { width: 20px; height: 20px; fill: #fff; }

/* btn-reserva — WhatsApp green (for inner pages) */
.btn-reserva {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #fff;
    padding: 15px 34px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
    letter-spacing: 0.02em;
}
.btn-reserva:hover {
    background: linear-gradient(135deg, #1ebe5d, #17a852);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.btn-reserva svg { width: 20px; height: 20px; fill: #fff; }

/* Phone mockup */
.hero-phone-wrap { flex-shrink: 0; position: relative; }
.phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(255,190,92,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.phone-frame {
    width: 240px;
    height: 480px;
    border: 10px solid #1a2e3b;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.08) inset,
        0 0 60px rgba(255,190,92,0.06);
    background: #000;
}
.phone-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 88px; height: 22px;
    background: #1a2e3b;
    border-radius: 0 0 16px 16px;
    z-index: 3;
}
.phone-frame video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

/* ======================== AMENITIES STRIP ======================== */
.amenities-strip {
    background: var(--navy);
    padding: 0 28px;
    position: relative;
    overflow: hidden;
}
.amenities-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,190,92,0.05) 0%, transparent 40%, rgba(255,190,92,0.05) 100%);
    pointer-events: none;
}
.amenities-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.am-item {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    padding: 18px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: default;
    position: relative;
    white-space: nowrap;
}
.am-item::before {
    content: '·';
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 10px;
    opacity: 0.7;
    line-height: 1;
}
.am-item:last-child { border-right: none; }
.am-item:hover { color: var(--gold); background: rgba(255,190,92,0.06); }
.am-icon {
    color: var(--gold);
    stroke: var(--gold);
    flex-shrink: 0;
}

/* ======================== CONTAINER ======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ======================== GALLERY SLIDER ======================== */
.gallery-slider-section {
    background: #f0ede8;
    padding: 72px 0 40px;
    overflow: hidden;
    position: relative;
}
.gallery-slider-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--orange), var(--gold), transparent);
    opacity: 0.5;
}
.gallery-section-header {
    text-align: center;
    padding: 0 28px 40px;
    max-width: 640px;
    margin: 0 auto;
}
.gallery-section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    margin: 8px 0 12px;
    letter-spacing: -0.02em;
}
.gallery-section-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.gallery-slider-track-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}
.gallery-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-slide {
    flex-shrink: 0;
    width: 33.333%;
    padding: 0 4px;
    position: relative;
    overflow: hidden;
}
.gallery-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 6px;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-slide:hover img { transform: scale(1.04); }
.gallery-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(13,30,43,0.35) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.gallery-slide:hover::after { opacity: 1; }

/* ======================== SLIDER BUTTONS & DOTS ======================== */
.gsl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.94);
    border: none;
    cursor: pointer;
    width: 46px; height: 46px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 16px rgba(0,0,0,0.2);
    z-index: 10;
    color: #333;
    transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
}
.gsl-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 5px 24px rgba(0,0,0,0.25);
}
.gsl-prev { left: 16px; }
.gsl-next { right: 16px; }
.gallery-dots, .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 18px 0 6px;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.25s, width 0.25s;
    padding: 0;
}
.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ======================== SECTION LABELS ======================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.69rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

/* ======================== ABOUT ======================== */
.about-section {
    padding: 96px 28px;
    background: #fff;
    position: relative;
}
.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border-radius: 2px;
}
.about-grid.about-text-only {
    display: block;
    max-width: 780px;
    margin: 0 auto;
}
.about-text { align-self: center; }
.about-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
    line-height: 1.22;
}
.about-text p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}
.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    margin: 28px 0 36px;
}
.check-list li {
    font-size: 0.88rem;
    font-weight: 600;
    color: #3d3530;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-list li::after {
    content: '✓';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 14px;
    text-align: center;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    line-height: 14px;
}
.about-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,190,92,0.3);
    box-shadow: 0 32px 72px rgba(0,0,0,0.13), 0 8px 24px rgba(255,190,92,0.1);
    align-self: center;
}
.about-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ======================== FEATURE VIDEO WRAP ======================== */
.feature-video-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,190,92,0.35);
    box-shadow: 0 24px 64px rgba(0,0,0,0.15), 0 8px 24px rgba(255,190,92,0.12);
    width: 260px;
    max-width: 100%;
    aspect-ratio: 9/16;
    flex-shrink: 0;
    position: relative;
}
.feature-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    pointer-events: none;
}
.feature-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.feature-video-wrap.large {
    width: 270px;
    max-width: 100%;
    aspect-ratio: 9/16;
}
.hero-video-wrap {
    aspect-ratio: 9/16;
    max-width: 100%;
    width: auto;
    max-height: 500px;
    flex-shrink: 0;
    margin: 0;
    border: 2px solid rgba(255,190,92,0.4);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,190,92,0.15);
}

/* ======================== VIDEO SECTION ======================== */
.video-section {
    padding: 96px 28px;
    background: linear-gradient(160deg, #fdf8f2 0%, #f8f1e6 50%, #fdf6ee 100%);
    position: relative;
    overflow: hidden;
}
.video-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,190,92,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.video-section-inner {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.video-section-inner.reverse {
    grid-template-columns: 1fr 270px;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange) 0%, #f5a623 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.93rem;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 22px rgba(255,190,92,0.38);
    position: relative;
    overflow: hidden;
}
.btn-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,190,92,0.48);
}

/* ======================== FEATURE SECTIONS ======================== */
.feature-section { padding: 96px 28px; }
.bg-soft {
    background: linear-gradient(160deg, #fdf8f2 0%, #f8f1e6 60%, #fdf6ee 100%);
    position: relative;
    overflow: hidden;
}
.bg-soft::before {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,190,92,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.feature-section:not(.bg-soft) {
    background: #fff;
}
.feature-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }
.feature-text { align-self: center; }
.feature-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.22;
}
.feature-text p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 26px;
}
.feature-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,190,92,0.3);
    box-shadow: 0 24px 60px rgba(0,0,0,0.13), 0 6px 20px rgba(255,190,92,0.1);
    align-self: center;
}
.feature-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
/* Restaurante / Gastronomia usa slider horizontal — grid diferente */
.feature-grid.img-wide {
    grid-template-columns: 1fr 440px;
}
/* Café da manhã — texto à esquerda, vídeo à direita */
.feature-grid.video-right {
    grid-template-columns: 1fr 260px;
}

/* ======================== MINI SLIDER ======================== */
.mini-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(255,190,92,0.3);
    box-shadow: 0 24px 60px rgba(0,0,0,0.14), 0 6px 20px rgba(255,190,92,0.1);
}
.mini-slider-track { display: flex; transition: transform 0.45s ease; }
.mini-slide { flex-shrink: 0; width: 100%; }
.mini-slide img { width: 100%; height: auto; display: block; }
.mini-slider .gsl-btn { background: rgba(255,255,255,0.92); }

/* ======================== PARQUE AQUÁTICO ======================== */
.aquatico-section { position: relative; padding-bottom: 100px; }
.aquatico-bg-slider { position: relative; overflow: hidden; }
.aquatico-track { display: flex; transition: transform 0.5s ease; }
.aq-slide { flex-shrink: 0; width: 33.333%; padding: 0 4px; }
.aq-slide img {
    width: 100%;
    height: 420px;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 8px;
}
.aquatico-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(13,30,43,0.55) 100%
    );
    pointer-events: none;
}
.aquatico-bg-slider .gsl-btn { z-index: 20; top: 40%; }
.aquatico-card {
    position: relative;
    z-index: 5;
    background: #fff;
    border-radius: 24px;
    padding: 52px 60px;
    max-width: 560px;
    margin: -80px auto 0;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,190,92,0.15);
    text-align: center;
    border-top: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}
.aquatico-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--orange), var(--gold), transparent);
    border-radius: 0 0 2px 2px;
}
.aquatico-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.aquatico-card p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 24px; }
.aquatico-card .btn-orange { display: inline-block; }

/* ======================== REVIEWS ======================== */
.reviews-footer-wrap {
    background: linear-gradient(135deg, #0a2a5e 0%, #1256b4 35%, #0e47a1 65%, #082044 100%);
    position: relative;
}
.reviews-footer-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 55%, rgba(255,190,92,0.13) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(14,100,180,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(255,190,92,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.reviews-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
}
.reviews-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.google-g { display: block; margin: 0 auto 16px; }
.reviews-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.reviews-header p { color: rgba(255,255,255,0.5); font-size: 0.96rem; }
.reviews-row {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}
.reviews-row .gsl-btn {
    position: static;
    transform: none;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(10px);
}
.reviews-row .gsl-btn:hover {
    background: rgba(255,190,92,0.25);
    border-color: var(--gold-border);
    transform: scale(1.08);
}
.reviews-viewport { flex: 1; overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.45s ease; gap: 20px; padding: 6px 0; }
.review-card {
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    margin: 0;
    transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
    backdrop-filter: blur(10px);
}
.review-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,190,92,0.3);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
@media (hover: hover) {
    .review-card:hover { transform: translateY(-3px); }
}
.rv-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rv-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    border: 2px solid rgba(255,255,255,0.2);
}
.rv-head strong { display: block; font-size: 0.93rem; color: rgba(255,255,255,0.9); font-weight: 700; }
.stars { color: #f5c542; font-size: 0.95rem; margin-top: 4px; letter-spacing: 0.06em; }
.review-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
.reviews-dots .dot { background: rgba(255,255,255,0.25); }
.reviews-dots .dot.active { background: var(--gold); }

/* ======================== FOOTER BANNER ======================== */
.footer-banner {
    background: transparent;
    padding: 72px 28px;
    position: relative;
    overflow: hidden;
}
.footer-banner-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.fb-logo-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.fb-logo-block img {
    width: 92px; height: 92px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 2px rgba(255,190,92,0.3);
}
.fb-logo-block strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.fb-logo-block span {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.65);
    display: block;
    margin-top: 4px;
    letter-spacing: 0.05em;
}
.fb-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
}
.fb-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 32px;
    border-radius: 16px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    min-width: 110px;
    flex: 1 1 110px;
    max-width: 160px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    letter-spacing: 0.03em;
    text-align: center;
}
.fb-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
.fb-card svg { width: 32px; height: 32px; fill: #fff; }
.fb-instagram { background: linear-gradient(135deg, #f77737, #e1306c, #833ab4); }
.fb-youtube { background: linear-gradient(135deg, #ff2400, #cc0000); }
.fb-whatsapp { background: linear-gradient(135deg, #25d366, #1a9e4e); }
.fb-reservar { background: linear-gradient(135deg, var(--orange), #f5a623); }
.fb-reservar svg { fill: none; stroke: #fff; stroke-width: 2; }

/* ======================== CONTACT STRIP ======================== */
.contact-strip {
    background: linear-gradient(135deg, #faf7f0 0%, #f5f0e8 50%, #f8f4ec 100%);
    padding: 96px 28px;
    position: relative;
    overflow: hidden;
}
.contact-strip::after {
    content: '';
    position: absolute;
    top: 50%; right: -100px;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,190,92,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.contact-strip-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.28;
    letter-spacing: -0.02em;
}
.contact-strip-text p {
    font-size: 0.96rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.6;
}
.btn-whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #fff;
    padding: 17px 38px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.btn-whatsapp-contact:hover {
    background: linear-gradient(135deg, #1ebe5d, #17a852);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.btn-whatsapp-contact svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

/* ======================== FOOTER ======================== */
.site-footer {
    background: linear-gradient(135deg, #0a2a5e 0%, #1256b4 35%, #0e47a1 65%, #082044 100%);
    color: rgba(255,255,255,0.6);
    padding: 80px 28px 36px;
    border-top: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--orange), var(--gold), transparent);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.6fr 1fr;
    gap: 56px;
    margin-bottom: 52px;
}
.footer-brand img {
    height: 56px; width: 56px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.footer-brand p { font-size: 0.87rem; line-height: 1.75; margin-bottom: 8px; }
.footer-cnpj { font-size: 0.76rem; color: rgba(255,255,255,0.32); }
.footer-tagline {
    font-size: 0.82rem;
    font-style: italic;
    color: rgba(255,255,255,0.42);
    margin-top: 6px;
    line-height: 1.5;
}
.footer-col h4 {
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
}
.footer-col p { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-map-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: 0.02em;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    transition: background var(--transition), color var(--transition), transform 0.15s;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    border-color: transparent;
}
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.footer-bottom p { font-size: 0.77rem; color: rgba(255,255,255,0.28); }
.footer-bottom p a { color: var(--gold); transition: opacity var(--transition); }
.footer-bottom p a:hover { opacity: 0.75; }
.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-bottom-links a {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.35);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
    animation: pulse-wa 2.5s infinite;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ======================== INNER PAGES ======================== */
.page-hero {
    padding: 130px 28px 70px;
    background: linear-gradient(
        160deg,
        #0a2a5e 0%,
        #1256b4 30%,
        #0e47a1 60%,
        #082044 100%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(255,190,92,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 25%, rgba(20,100,200,0.15) 0%, transparent 55%);
    pointer-events: none;
}
.page-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}
.page-hero p {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.breadcrumb a,
.breadcrumb span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.03em;
    transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}
.breadcrumb .current {
    color: var(--gold);
    font-weight: 600;
}

/* Page content */
.page-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 90px 28px;
}
.page-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    font-size: 1.7rem;
    margin: 44px 0 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.page-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 0.97rem;
}

/* Legal content */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 90px 28px;
}
.legal-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.legal-meta {
    font-size: 0.84rem;
    color: var(--text-light);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,190,92,0.2);
    letter-spacing: 0.02em;
}
.legal-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    font-size: 1.2rem;
    margin: 32px 0 12px;
    font-weight: 600;
}
.legal-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 0.96rem;
}
.legal-content ul {
    color: var(--text-muted);
    line-height: 1.9;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 0.96rem;
}

/* ======================== ABOUT PAGE GALLERY ======================== */
.gallery {
    padding: 80px 28px;
    background: var(--cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(255,190,92,0.28) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(5,13,22,0.96);
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; animation: fadeIn 0.3s ease; }
.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ======================== CONTACT PAGE ======================== */
.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 28px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.contact-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.contact-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 0.97rem;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-light);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--gold);
}
.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
}
.contact-detail-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
    margin-bottom: 3px;
}
.contact-detail-text span,
.contact-detail-text a {
    font-size: 0.96rem;
    color: var(--navy);
    font-weight: 500;
    transition: color var(--transition);
}
.contact-detail-text a:hover { color: var(--orange); }

/* Contact form */
.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,190,92,0.12);
}
.contact-form h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
}
.contact-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    margin-bottom: 7px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0dbd4;
    border-radius: 10px;
    font-size: max(16px, 0.94rem); /* 16px mínimo evita zoom no iOS */
    font-family: inherit;
    color: #333;
    background: #fdfcfb;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    margin-bottom: 20px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255,190,92,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), #f5a623);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.96rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(255,190,92,0.35);
    transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
    letter-spacing: 0.02em;
    width: 100%;
    justify-content: center;
}
.contact-form .btn-submit:hover {
    background: linear-gradient(135deg, var(--orange-dark), #f5a623);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(255,190,92,0.45);
}

/* Map wrap */
.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 36px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255,190,92,0.18);
}
.map-wrap iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: none;
}

/* ======================== TOAST ======================== */
.toast {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9999;
    background: var(--navy);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--gold);
    max-width: 320px;
    animation: fadeInUp 0.4s ease both;
    pointer-events: none;
}
.toast.success { border-left-color: #25d366; }
.toast.error { border-left-color: #e74c3c; }

/* ======================== AMENITY CARDS ======================== */
.amenities-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 16px;
}
.amenity-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,190,92,0.12);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: default;
}
.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    border-color: var(--gold-border);
}
.amenity-card strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.amenity-card small {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* about-grid com imagem (sobre-nos) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.about-map {
    margin-top: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255,190,92,0.18);
}

/* ======================== RESPONSIVE ======================== */

/* Prevent ALL horizontal overflow */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; }
/* Prevent double-tap zoom on all interactive elements */
a, button, input, select, label { touch-action: manipulation; }

@media (max-width: 1024px) {
    .gallery-slide { width: 50%; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .navbar { padding: 0 24px; }
}

@media (max-width: 900px) {
    /* Hero: remove delays de animação para aparecer tudo de uma vez */
    .hero-text > *, .hero-text [style*="animation"] {
        animation-delay: 0s !important;
        animation-duration: 0.3s !important;
    }

    /* Hero */
    .hero-inner { flex-direction: column; text-align: center; gap: 40px; }
    .hero-text { max-width: 100%; }
    .hero-badges { justify-content: center; }
    .hero-video-wrap { display: none; }

    /* Layouts de 2 colunas → 1 coluna */
    .about-grid,
    .feature-grid,
    .feature-grid.img-wide,
    .feature-grid.video-right,
    .video-section-inner,
    .video-section-inner.reverse,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }
    .about-grid { max-width: 100%; }
    .feature-grid.reverse { direction: ltr; }

    /* Vídeos verticais: largura total da coluna, proporção mais curta */
    .feature-video-wrap,
    .feature-video-wrap.large {
        width: 100%;
        max-width: 100%;
        margin: 0;
        aspect-ratio: 3/4;
    }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-strip-inner { flex-direction: column; align-items: center; text-align: center; gap: 28px; }
    .btn-whatsapp-contact { max-width: 340px; justify-content: center; }
    .reviews-row .gsl-btn { display: none; }
    .contact-form { padding: 32px 24px; }
    .aquatico-card { padding: 40px 32px; }
}

@media (max-width: 900px) {
    /* ===== NAVBAR ===== */
    .navbar { padding: 0 16px; height: 64px; justify-content: space-between; }
    .navbar-brand { position: static; font-size: 1.05rem; }
    .navbar-nav > li:last-child { position: static; }
    .navbar-nav {
        display: none;
        position: fixed;
        top: 64px; left: 0; right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 12px 16px 16px;
        gap: 2px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.14);
        border-top: 1px solid #eee;
        z-index: 999;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }
    .navbar-nav.open { display: flex; }
    .navbar-nav > li { width: 100%; }
    .navbar-nav > li > a {
        display: block;
        padding: 13px 14px;
        font-size: 0.97rem;
        border-radius: 8px;
        width: 100%;
    }
    .navbar-toggle { display: block; }
    .btn-reservar {
        margin: 8px 0 0;
        padding: 13px 20px;
        font-size: 0.92rem;
        width: 100%;
        text-align: center;
        display: block;
    }

    /* ===== HERO ===== */
    .hero { padding: 88px 16px 56px; min-height: auto; }
    .hero-inner { gap: 32px; }
    .hero-text h1 { font-size: clamp(1.65rem, 6.5vw, 2.2rem); }
    .hero-sub { font-size: 0.94rem; max-width: 100%; }
    .hero-badges { gap: 8px; }
    .hero-badges span { font-size: 0.73rem; padding: 6px 11px; }
    .btn-hero { width: 100%; justify-content: center; font-size: 0.92rem; padding: 14px 20px; }
    .hero-video-wrap { display: none; }

    /* ===== AMENITIES ===== */
    .amenities-strip { padding: 0; }
    .amenities-list { flex-direction: column; }
    .am-item {
        padding: 13px 20px;
        font-size: 0.78rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .am-item:last-child { border-bottom: none; }

    /* ===== GALLERY SLIDER ===== */
    .gallery-slider-section { padding: 48px 0 28px; }
    .gallery-section-header { padding: 0 16px 28px; }
    .gallery-slider-track-wrap { padding: 0 36px; }
    .gallery-slide { width: 100%; }
    .gallery-slide img { height: 200px; }

    /* ===== ABOUT / FEATURE / VIDEO SECTIONS ===== */
    .about-section { padding: 56px 16px; }
    .feature-section { padding: 56px 16px; }
    .video-section { padding: 56px 16px; }
    .about-section::before { display: none; }
    .check-list { grid-template-columns: 1fr; gap: 8px; }
    .btn-orange { width: 100%; justify-content: center; }
    .btn-hero { width: 100%; justify-content: center; }

    /* Imagens de feature: fluidas */
    .about-img-wrap,
    .feature-img-wrap { width: 100%; }
    .about-img-wrap img,
    .feature-img-wrap img { width: 100%; height: auto; }

    /* Vídeos verticais no mobile: largura total, altura limitada */
    .feature-video-wrap,
    .feature-video-wrap.large {
        width: 100%;
        max-width: 100%;
        margin: 0;
        aspect-ratio: 3/4;
    }

    /* Mini slider restaurante */
    .mini-slide img { width: 100%; height: auto; display: block; }

    /* ===== AQUÁTICO ===== */
    .aquatico-section { padding-bottom: 60px; }
    .aq-slide img { height: 260px; aspect-ratio: auto; }
    .aquatico-card {
        padding: 28px 16px 24px;
        margin: -36px 12px 0;
        border-radius: 16px;
        box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    }
    .aquatico-card h2 { font-size: 1.4rem; }
    .aquatico-card p { font-size: 0.9rem; }

    /* ===== REVIEWS ===== */
    .reviews-section { padding: 56px 0; }
    .reviews-header { margin-bottom: 36px; padding: 0 16px; }
    .reviews-row { gap: 0; padding: 0; }
    .reviews-row .gsl-btn { display: none !important; }
    .reviews-viewport {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .reviews-viewport::-webkit-scrollbar { display: none; }
    .reviews-track {
        display: flex;
        transform: none !important;
        width: max-content;
    }
    .review-card {
        width: 85vw;
        min-width: 85vw;
        max-width: 85vw;
        padding: 22px 18px;
        margin: 0 8px;
        box-sizing: border-box;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    .review-card:first-child { margin-left: 16px; }
    .review-card:last-child { margin-right: 16px; }
    .review-card p { font-size: 0.85rem; }
    .reviews-dots { margin-top: 24px; display: flex; }

    /* ===== FOOTER BANNER ===== */
    .footer-banner { padding: 48px 16px; }
    .fb-logo-block { flex-direction: column; gap: 10px; text-align: center; }
    .fb-logo-block img { width: 64px; height: 64px; margin: 0 auto; }
    .fb-logo-block strong { font-size: 1.25rem; }
    .fb-cards { gap: 8px; flex-wrap: wrap; justify-content: center; }
    .fb-card {
        min-width: 72px;
        max-width: 88px;
        padding: 14px 8px;
        flex: 1 1 72px;
        font-size: 0.68rem;
        border-radius: 12px;
    }
    .fb-card svg { width: 24px; height: 24px; }

    /* ===== CONTACT STRIP ===== */
    .contact-strip { padding: 56px 16px; }
    .contact-strip-text h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
    .btn-whatsapp-contact { font-size: 0.95rem; padding: 14px 20px; width: 100%; max-width: 100%; }

    /* ===== FOOTER ===== */
    .site-footer { padding: 52px 16px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; }

    /* ===== INNER PAGES ===== */
    .page-hero { padding: 100px 16px 44px; }
    .contact-inner { padding: 40px 16px; }
    .page-content { padding: 48px 16px; }
    .legal-content { padding: 48px 16px; }
    .gallery { padding: 48px 16px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 22px 14px; }

    /* ===== LIGHTBOX ===== */
    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }
    .lightbox img { max-width: 96vw; max-height: 80vh; }

    /* ===== FLOAT & TOAST ===== */
    .whatsapp-float { bottom: 18px; right: 14px; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
    .toast { right: 10px; bottom: 80px; max-width: calc(100vw - 20px); }
}

@media (max-width: 400px) {
    .hero { padding: 80px 12px 48px; }
    .hero-text h1 { font-size: 1.5rem; }
    .navbar { height: 60px; }
    .navbar-nav { top: 60px; }
    .feature-video-wrap,
    .feature-video-wrap.large { width: 100%; max-width: 100%; }
    .fb-card { min-width: 64px; max-width: 76px; font-size: 0.62rem; padding: 12px 6px; }
    .aquatico-card { margin: -28px 8px 0; padding: 24px 12px 20px; }
}

/* ======================== MODAL RESERVA ======================== */
.reserva-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9100;
    background: rgba(5, 13, 22, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.reserva-overlay.active {
    display: flex;
    animation: fadeIn 0.2s ease both;
}
.reserva-modal {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px 36px;
    width: 100%;
    max-width: 460px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    animation: reservaSlideUp 0.28s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes reservaSlideUp {
    from { opacity: 0; transform: translateY(32px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes reservaSlideUpSheet {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
.reserva-close {
    position: absolute;
    top: 16px; right: 16px;
    background: #f4f4f4;
    border: none;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
    line-height: 1;
}
.reserva-close:hover { background: #e8e8e8; color: #111; }
.reserva-header {
    text-align: center;
    margin-bottom: 28px;
}
.reserva-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--orange), #f5a623);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(255,190,92,0.35);
}
.reserva-icon svg {
    width: 26px; height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}
.reserva-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.reserva-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.reserva-form { display: flex; flex-direction: column; gap: 16px; }
.reserva-field { display: flex; flex-direction: column; gap: 6px; }
.reserva-field label {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}
.reserva-field input {
    padding: 12px 14px;
    border: 1.5px solid #e0dbd4;
    border-radius: 10px;
    font-size: max(16px, 0.95rem); /* 16px mínimo evita zoom no iOS */
    font-family: inherit;
    color: #222;
    background: #fdfcfb;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}
.reserva-field input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255,190,92,0.12);
}
.reserva-field input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}
.reserva-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.reserva-resumo {
    background: linear-gradient(135deg, #fdf6ee, #f9efe2);
    border: 1px solid rgba(255,190,92,0.25);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.87rem;
    color: var(--navy);
    font-weight: 600;
    text-align: center;
}
.reserva-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #fff;
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
    letter-spacing: 0.02em;
    margin-top: 4px;
    font-family: inherit;
}
.reserva-btn-wa:hover {
    background: linear-gradient(135deg, #1ebe5d, #17a852);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}
.reserva-btn-wa svg {
    width: 22px; height: 22px;
    fill: #fff;
    flex-shrink: 0;
}
.reserva-nota {
    text-align: center;
    font-size: 0.78rem;
    color: #aaa;
    margin-top: -4px;
}
@media (max-width: 640px) {
    .reserva-overlay {
        padding: 0;
        align-items: flex-end;
        background: rgba(5, 13, 22, 0.65);
    }
    .reserva-modal {
        padding: 24px 16px 32px;
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        width: 100%;
        max-height: 92vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: reservaSlideUpSheet 0.3s ease both;
    }
    .reserva-dates { grid-template-columns: 1fr; gap: 10px; }
    .reserva-field input { font-size: 16px; padding: 13px 14px; }
    .reserva-header { margin-bottom: 20px; }
    .reserva-header h2 { font-size: 1.2rem; }
    .reserva-header p { font-size: 0.82rem; }
    .reserva-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
    .reserva-btn-wa { font-size: 0.95rem; padding: 14px 20px; }
    .reserva-form { gap: 12px; }
}

/* ======================== ACESSIBILIDADE ======================== */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ======================== REDUCED MOTION ======================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }
    .whatsapp-float { animation: none; }
}
