/* ============================================================
   SLAB KRUI — vdesign_style.css
  
============================================================

   ÍNDICE RÁPIDO
   ─────────────
    1. VARIÁVEIS & RESET
    2. HERO — vídeo, overlay, logo animada
    3. BOTÕES GLOBAIS (btn-reserva, btn-contato)
    4. SECTIONS — fundos, texto, bg-image
    5. RESERVAS — seção CTA
    6. BADGE "UNDER CONSTRUCTION"
    7. SELETOR DE IDIOMA
    8. HEADER / NAVBAR
    9. SUBMENU — Surf Trips (dropdown + mobile)
   10. ANIMAÇÕES DE SCROLL — ícones & texto
   11. ZOOM NAS IMAGENS — bg-image::after
   12. TÍTULOS — ajuste fino final
   13. HERO BUNGALOWS + BREADCRUMB
   14. GALERIA ROTATIVA + THUMBNAILS
   15. TABS — bungalows (Design & Amenities)
   16. LIGHTBOX
   17. FOOTER 

============================================================ */


/* ============================================================
   1. VARIÁVEIS & RESET
   ─────────────────────
   Sessão inicial — fundação do site.
   Variáveis CSS do tema oceano.
============================================================ */

:root {
    --oceano:        #8FB3B8;
    --oceano-escuro: #355E63;
    --creme:         #F4F1EA;
    --areia:         #E9E4DA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--creme);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--oceano-escuro);
    line-height: 1.7;
}

/* espaçador invisível para o scroll-spy do hero */
.ghost-section {
    height: 1px;
    margin: 0;
    padding: 0;
}


/* ============================================================
   2. HERO — vídeo, overlay, logo animada
   ─────────────────────────────────────
   Sessão inicial  → estrutura base do hero.
   Sessão polish   → filtro cinemático no iframe,
                     overlay com gradiente, logo com
                     animação logoMove.
============================================================ */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* --- vídeo de fundo (iframe YouTube) --- */
.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.77vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    filter: contrast(1.05) saturate(1.1);   /* polish: filtro cinemático */
}

/* --- overlay com gradiente (polish) --- */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.15)
    );
}

/* --- conteúdo centralizado --- */
.content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* --- logo animada: centro → canto superior esquerdo --- */
.logo {
    position: fixed;
    width: 205px;
    top: 50%;
    left: 50%;
    z-index: 9999;
    opacity: 1;
    animation: logoMove 4.2s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes logoMove {
    0% {                                            /* nasce no centro */
        top: 50%; left: 50%; width: 200px;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    20% {                                           /* pausa total */
        top: 50%; left: 50%; width: 200px;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    55% {                                           /* cresce devagar */
        top: 50%; left: 50%; width: 300px;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {                                          /* sobe girando até o topo */
        top: 10px; left: 10px; width: 46px;
        transform: translate(0, 0) rotate(-360deg);
    }
}

/* --- hero title: inicialmente oculto, aparece após logo --- */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- botão do hero: aparece junto com o título --- */
.hero .btn-reserva {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero .btn-reserva.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   3. BOTÕES GLOBAIS
   ─────────────────
   Sessão inicial  → base btn-reserva / btn-contato.
   Sessão polish   → letter-spacing 4px, blur, hover
                     com translateY.
============================================================ */

.btn-reserva {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid var(--creme);
    color: var(--creme);
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 4px;                            /* polish */
    backdrop-filter: blur(6px);                     /* polish */
    transition: all 0.3s ease, transform 0.3s ease; /* polish */
}

.btn-reserva:hover {
    background: var(--creme);
    color: var(--oceano-escuro);
    border: 3px solid #000000;
    transform: translateY(-2px);                    /* polish */
}

.btn-contato {
    background: var(--oceano-escuro);
    color: var(--creme);
    border: none;
}

.btn-contato:hover {
    background: var(--creme);
    color: var(--oceano-escuro);
    border: 3px solid #000000;
}


/* ============================================================
   4. SECTIONS — fundos, texto, bg-image
   ─────────────────────────────────────
   Sessão inicial  → .section, .text-col, .bg-image base.
   Sessão polish   → gradientes nos fundos, padding
                     aumentado, tipografia editorial,
                     League Spartan nos h2.
============================================================ */

/* --- fundos com gradiente sutil (polish) --- */
.section {
    padding: 0;
}

.section.light {
    background: var(--creme);
}

.section.dark {
    background: #F9F7F3;
}

.section.white {
    background: #ffffff;
}

.section.centro-bg {
    position: relative;
    min-height: 200px;
    background: var(--oceano-escuro);
    color: #ffffff;
    overflow: hidden;
    text-align: center;
}

.section.centro-bg h2 {
    color: #ffffff;
}

.section.centro-bg .text-justify {
    text-align: center;
    font-size: 1.2rem;
}

.section.centro-bg .text-col {
    position: relative;
    z-index: 2;
}

.section .btn-reserva {
    margin-top: 30px;
}

.section.centro-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../logos/onda_azul.png");
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

/* --- colunas de texto (padding final da sessão polish) --- */
.text-col {
    padding: 140px 90px;
}

/* --- h2 das colunas (valor final: ajuste fino) --- */
.text-col h2 {
    margin-bottom: 30px;
    color: var(--oceano-escuro);
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* --- texto justificado (polish: opacity, line-height) --- */
.text-justify {
    text-align: justify;
    font-size: 0.85rem;
    line-height: 1.85;
    opacity: 0.92;
}

/* --- ícone decorativo (imgico) --- */
/* sessão animations sobrescreve opacity para 0 no estado
   inicial; aqui fica só o layout base */
.imgico {
    width: 60px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

/* --- imagens de fundo (consolidado: todas as definições) --- */
.bg-image {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    z-index: 0;
    transition: transform 1.4s ease;
}

/* --- página The Waves --- */
#waves {
    background: #f4f1ea;
}

/* --- títulos com League Spartan (polish) --- */
.section h2,
.section .section-title {
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 1.9rem;
    letter-spacing: 0.06em;
}

.section-subtitle {
    font-family: 'League Spartan', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oceano);
    margin: 4px 0 2px;
}

.section-location {
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: #888;
    margin: 0 0 12px;
}

/* ─── RESPONSIVE — sections & texto ─── */
@media (min-width: 992px) {
    .section .text-justify {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .text-col {
        padding: 90px 40px;
    }
}

@media (max-width: 767px) {
    .text-col {
        padding: 70px 30px;
    }

    .text-col h2 {
        text-align: center;
    }

    .imgico {
        display: block;
        margin: 0 auto 5px auto;
    }

    h2 {
        text-align: center;
    }

    .section h2,
    .section .section-title {
        letter-spacing: 0.08em;
    }

    .bg-image {
        min-height: 250px;
        width: 100%;
    }

    .btn-reserva {
        padding: 12px 32px;
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
}


/* ============================================================
   4B. SPOT TECH INFO & TIPS — páginas de spot detail
   ============================================================ */

.spot-tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

@media (min-width: 1200px) {
    .spot-tech-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.spot-tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f4f0;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spot-tech-item i {
    width: 16px;
    text-align: center;
    color: var(--oceano);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.spot-tech-item strong {
    color: var(--oceano-escuro);
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 600;
}

.spot-tech-item span {
    color: #333;
}

.spot-desc {
    margin-bottom: 24px;
}

.spot-tech-tips {
    background: #f0f4f0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.spot-tech-tips h3 {
    margin: 0 0 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--oceano-escuro);
}

.spot-tech-tips h3 i {
    color: var(--oceano);
    margin-right: 6px;
    font-size: 0.8rem;
}

.spot-tech-tips p {
    margin: 0;
    line-height: 1.6;
    color: #444;
    font-size: 0.8rem;
}

.spot-tech-tips p i {
    color: var(--oceano);
    margin-right: 6px;
    font-size: 0.75rem;
}

.spot-content {
    padding: 0 90px 60px;
}

@media (max-width: 767px) {
    .spot-content {
        padding: 0 15px 30px;
    }
}

/* ============================================================
   5. RESERVAS — seção CTA
   ─────────────────────────
   Sessão inicial — fundo escuro, overlay de imagem,
   botão branco.
============================================================ */

#reservas {
    position: relative;
    min-height: 200px;
    background: var(--oceano-escuro);
    color: #ffffff;
    padding: 140px 20px;
    overflow: hidden;
    text-align: center;
}

/* imagem de fundo com transparência */
#reservas::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../logos/onda_azul.png");
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

/* conteúdo acima da imagem */
#reservas .container {
    position: relative;
    z-index: 2;
}

#reservas h2,
#reservas p {
    color: #ffffff;
}

#reservas .btn-reserva {
    border-color: #ffffff;
    color: #ffffff;
}

#reservas .btn-reserva:hover {
    background: #ffffff;
    color: var(--oceano-escuro);
    border: 3px solid #000000;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
    #reservas {
        margin-top: 80px;
        padding: 100px 20px;
        min-height: 300px;
    }
}


/* ============================================================
   6. BADGE "UNDER CONSTRUCTION"
============================================================ */

.site-construcao {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    max-width: calc(100vw - 32px);
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(53, 94, 99, 0.85);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    pointer-events: none;
    /* polish */
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    /* transição para .hide */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.site-construcao.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

/* --- ícone de barras animadas --- */
.build-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.build-bars span {
    width: 3px;
    height: 6px;
    background: #ffffff;
    opacity: 0.7;
    animation: build 1.2s infinite ease-in-out;
}

.build-bars span:nth-child(2) {
    animation-delay: 0.2s;
    height: 10px;
}

.build-bars span:nth-child(3) {
    animation-delay: 0.4s;
    height: 14px;
}

@keyframes build {
    0%   { opacity: 0.3; }
    50%  { opacity: 1; }
    100% { opacity: 0.3; }
}

.build-text {
    white-space: nowrap;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
    .site-construcao {
        font-size: 0.7rem;
        padding: 7px 12px;
        bottom: 12px;
        right: 12px;
        transform: none;
    }
}


/* ============================================================
   7. SELETOR DE IDIOMA
   ────────────────────
   Sessão inicial — botão fixo canto inferior direito.
============================================================ */

.language-switch {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 10px;
}

.lang-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 0.65rem;
    color: var(--creme);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lang-item img {
    width: 26px;
    height: auto;
    margin-bottom: 3px;
}

.lang-item:hover {
    opacity: 1;
}

/* idioma atual — não clicável */
.lang-item.active {
    opacity: 0.3;
    pointer-events: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
    .language-switch {
        bottom: 15px;
        right: 15px;
    }

    .lang-item img {
        width: 22px;
    }
}


/* ============================================================
   8. HEADER / NAVBAR
   ─────────────────
   Sessão inicial  → header fixo, blur, menu horizontal.
   Sessão polish   → active::after (linha embaixo),
                     letter-spacing 2.5px nos links.
   Sessão nav      → z-index consolidado (100 no header),
                     pointer-events nos links.
   Nota: .main-header tinha 3 definições duplicadas —
         consolidadas aqui em uma única.
============================================================ */

/* --- header fixo com blur --- */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;                                   /* nav: z-index organizado */
    background: rgba(244, 241, 234, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    opacity: 0;                                     /* escondido até JS */
    transform: translateY(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* .visible adicionado pelo JS após a animação da logo */
.main-header.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- container interno --- */
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9998;
}

/* --- logo no header (aparece junto com .main-header.visible) --- */
.nav-logo img {
    width: 46px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

/* --- menu horizontal --- */
.nav-menu {
    display: flex;
    gap: 30px;
}

/* --- links --- */
.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--oceano-escuro);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.7;
    transition: all 0.3s ease;
    letter-spacing: 2.5px;                          /* polish */
    pointer-events: auto;                           /* nav */
    cursor: pointer;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link.active {
    opacity: 1;
    position: relative;
}

/* linha embaixo do link ativo (polish) */
.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--oceano-escuro);
    opacity: 0.6;
}

/* --- ícone 9.png: só aparece no link ativo --- */
.nav-icon {
    width: 14px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-link.active .nav-icon {
    opacity: 1;
    transform: translateX(0);
}

/* --- hamburger mobile --- */
#nav-toggle {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--oceano-escuro);
}

/* ─── RESPONSIVE — navbar ─── */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        pointer-events: auto;
        top: 70px;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--creme);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    #nav-toggle:checked ~ .nav-menu {
        transform: translateX(0);
    }

    .nav-container {
        padding: 10px 18px;
    }

    .nav-logo img {
        width: 42px;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .nav-icon {
        width: 22px;
    }
}


/* ============================================================
   9. SUBMENU — Surf Trips
   ─────────────────────────
   Sessão nav / submenu  → dropdown desktop.
   Sessão modelo14       → mobile: max-height colapsível,
                            centralização do toggle,
                            pointer-events.
   Sessão nav final      → versão com display:none/flex
                            (valor final que funciona),
                            ícone 9.png no active,
                            z-index 1000.
   Nota: .nav-submenu tinha 2 blocos completos
         conflitantes — mantido o segundo (display:none
         → display:flex no .open) que é o que resolve.
============================================================ */

.nav-has-submenu {
    position: relative;
}

/* --- dropdown desktop (valor final) --- */
.nav-submenu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    min-width: 220px;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    pointer-events: none;
    border-radius: 8px;
}

/* aberto */
.nav-has-submenu.open .nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 0;
    pointer-events: auto;
}

/* --- links do submenu --- */
.nav-submenu a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    color: var(--oceano-escuro);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
    cursor: pointer;
    width: 100%;
}

.nav-submenu a:hover {
    opacity: 1;
    background: rgba(143, 179, 184, 0.1);
}

/* --- ícone 9.png no submenu (só no active) --- */
.nav-link .nav-icon,
.nav-submenu a .nav-icon {
    display: none;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.nav-link.active .nav-icon,
.nav-submenu a.active .nav-icon {
    display: inline-block;
    opacity: 1;
    transform: translateX(0);
}

/* --- active state visual --- */
.nav-submenu a.active,
.nav-link.active {
    opacity: 1;
    color: var(--oceano-escuro);
}

/* --- toggle com arrow ▾ --- */
.nav-submenu-toggle {
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
}

.nav-submenu-toggle::after {
    content: '▾';
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-has-submenu.open .nav-submenu-toggle::after {
    transform: rotate(180deg);
}

/* ─── RESPONSIVE — submenu ─── */
@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .nav-menu > .nav-link,
    .nav-menu > .nav-has-submenu {
        display: block !important;
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }

    /* submenu mobile — coluna centrada */
    .nav-submenu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid rgba(143, 179, 184, 0.2);
        flex-direction: column;
        padding: 0;
    }

    .nav-has-submenu.open .nav-submenu {
        display: flex;
    }

    .nav-submenu a {
        justify-content: center;
        padding: 8px 20px;
        text-align: center;
    }

    /* toggle centralizado */
    .nav-submenu-toggle {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* ícone ao lado do texto sem quebra */
    .nav-link,
    .nav-submenu a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        white-space: nowrap;
    }

    .nav-link .nav-icon,
    .nav-submenu a .nav-icon {
        flex-shrink: 0;
    }
}


/* ============================================================
  10. ANIMAÇÕES DE SCROLL — ícones & texto
  ──────────────────────────────────────────
   Sessão animations → IntersectionObserver adiciona
   .show-icons e .icon-visible às sections.
   .imgico começa com opacity:0 e sobe com rotação.
   Texto (h2, p, btn) entra com delay escalonado.
============================================================ */

/* --- imgico: estado inicial escondido --- */
.imgico {
    opacity: 0;
    transform: translateY(25px) rotate(-12deg);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22,.61,.36,1);
}

/* quando a section entra na tela */
.section.show-icons .imgico {
    opacity: 0.6;
    transform: translateY(0) rotate(0deg);
}

/* --- imgico dentro de h2 --- */
.section h2 .imgico {
    opacity: 0;
    transform: translateY(22px) rotate(-10deg);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22,.61,.36,1);
}

.section.icon-visible h2 .imgico {
    opacity: 0.6;
    transform: translateY(0) rotate(0deg);
}

/* --- texto: h2 / p / btn com delay escalonado --- */
.section .text-col h2,
.section .text-col p,
.section .text-col .btn-reserva {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22,.61,.36,1);
}

.section.show-icons .text-col h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
    letter-spacing: 0.5px;     /* micro-movimento polish */
}

.section.show-icons .text-col p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
    line-height: 1.85;         /* micro-movimento polish */
}

.section.show-icons .text-col .btn-reserva {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
    .section .text-col h2,
    .section .text-col p,
    .section .text-col .btn-reserva {
        transform: translateY(20px);
        transition-duration: 0.6s;
    }

    .section.show-icons .text-col h2            { transition-delay: 0.1s; }
    .section.show-icons .text-col p             { transition-delay: 0.2s; }
    .section.show-icons .text-col .btn-reserva  { transition-delay: 0.3s; }
}


/* ============================================================
  11. ZOOM NAS IMAGENS — bg-image::after
  ────────────────────────────────────────
   Sessão polish → pseudo-elemento ::after herda a imagem
   e faz scale quando a section entra ou no hover.
   Mobile: zoom direto no .bg-image (sem ::after).
   Nota: tinha 2 blocos de mobile duplicados
         (com e sem reset) — mantido o com reset.
============================================================ */

/* --- camada animada sobreposta --- */
.bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 1.6s cubic-bezier(.22,.61,.36,1);
    z-index: 1;
}

/* zoom quando a section entra */
.section.show-icons .bg-image::after {
    transform: scale(1.08);
}

/* hover — só em dispositivos que suportam */
@media (hover: hover) {
    .section:hover .bg-image::after {
        transform: scale(1.12);
    }
}

/* ─── RESPONSIVE — zoom mobile com reset ─── */
@media (max-width: 767px) {
    .bg-image {
        transform: scale(1);
        transition: transform 1.6s cubic-bezier(.22,.61,.36,1);
    }

    .section.show-icons .bg-image {
        transform: scale(1.06);
    }

    /* garante altura nas galereia mobile */
    .bg-image {
        min-height: 400px !important;
    }

    .flex-column-reverse .bg-image {
        min-height: 400px !important;
    }
}


/* ============================================================
  12. TÍTULOS — ajuste fino final
  ──────────────────────────────
   Sessão polish (último ajuste) → font-size e
   letter-spacing definitivos para .text-col h2 e
   .section-title.
   Desktop: 1.9rem | Mobile: 2.1rem (mais presença).
============================================================ */

.text-col h2,
.section-title {
    font-size: 1.9rem;
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    .text-col h2,
    .section-title {
        font-size: 2.1rem;
        letter-spacing: 0.1em;
    }
}


/* ============================================================
  13. HERO BUNGALOWS + BREADCRUMB
  ──────────────────────────────
   Sessão bungalows → página de estadias.
   Hero com imagem de fundo, overlay escuro,
   título grande e breadcrumb.
============================================================ */

.hero-bungalows {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('fotos/marcelo01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* overlay escuro */
.hero-bungalows::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* conteúdo centralizado */
.hero-bungalows-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    margin-top: 15px;       /* mais próximo do breadcrumb */
}

/* --- breadcrumb --- */
.breadcrumb {
    font-size: 1rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb .separator {
    opacity: 0.6;
}

.breadcrumb span:last-child {
    opacity: 0.7;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero-bungalows {
        height: 40vh;
        min-height: 300px;
    }

    .hero-bungalows-content {
        margin-top: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .breadcrumb {
        font-size: 0.9rem;
    }
}


/* ============================================================
  14. GALERIA ROTATIVA + THUMBNAILS
  ───────────────────────────────────
   Sessão galeria / bungalows → slideshow com prev/next,
   thumbnails com scroll horizontal, contador de fotos.
============================================================ */

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.gallery-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* --- slides --- */
.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.gallery-slide.active {
    opacity: 1;
}

.photo-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 3px;
    z-index: 5;
    pointer-events: none;
}
.photo-credit:empty {
    display: none;
}

/* --- controles (prev / next + thumbs) --- */
.gallery-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 10;
}

.gallery-nav-btn {
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.gallery-nav-btn:hover {
    background: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.9);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* --- thumbnails --- */
.gallery-thumbs {
    display: flex;
    gap: 8px;
    max-width: 280px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px;
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    min-width: 60px;
    width: 60px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.gallery-thumb:hover {
    opacity: 1;
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.9);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.gallery-thumb.active {
    border-color: #fff;
    opacity: 1;
    box-shadow: 0 0 20px rgba(255,255,255,0.6), 0 4px 12px rgba(0,0,0,0.4);
    transform: scale(1.05);
}

/* --- contador de fotos --- */
.photo-counter {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    letter-spacing: 1px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .gallery-container {
        min-height: 400px !important;
    }

    .gallery-slideshow {
        min-height: 400px !important;
    }

    .gallery-controls {
        bottom: 15px;
        padding: 10px 15px;
        gap: 10px;
    }

    .gallery-thumbs {
        max-width: 200px;
    }

    .gallery-thumb {
        min-width: 50px;
        width: 50px;
        height: 38px;
    }
}





/* ============================================================
  15. TABS — bungalows
  ──────────────────────
   Sessão tabs → "Design & Ambiance" / "Amenities".
   Grid de amenidades com hover + borda esquerda.
============================================================ */

.bungalow-tabs {
    margin-top: 25px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(143, 179, 184, 0.2);
}

.tab-btn {
    background: transparent;
    border: none;
    color: rgba(143, 179, 184, 0.6);
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: rgba(143, 179, 184, 0.9);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(143, 179, 184, 0.15) 0%, rgba(53, 94, 99, 0.15) 100%);
    color: #8FB3B8;
    border-bottom-color: #8FB3B8;
}

/* --- conteúdo das tabs --- */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    color: #355E63 !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- grid de amenidades --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(143, 179, 184, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.amenity-item:hover {
    background: rgba(143, 179, 184, 0.15);
    transform: translateX(5px);
    border-left-color: #8FB3B8;
}

.amenity-icon {
    font-size: 1.3rem;
    color: #8FB3B8;
    min-width: 24px;
    text-align: center;
}

.amenity-text {
    font-size: 0.95rem;
    color: #355E63;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tab-buttons {
        gap: 5px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}


/* ============================================================
  16. LIGHTBOX
  ────────────
   Sessão galeria → overlay tela cheia com prev/next
   e botão fechar.
============================================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9998;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

/* --- botão fechar --- */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* --- prev / next --- */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 40px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.4);
}

.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 30px;
        padding: 15px 20px;
    }

    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
}


/* ============================================================
  17. FOOTER 
  ──────────────────
   Sessão footer 
   Grid 4 colunas | Social com ripple | Newsletter |
   Mapa com Waze/Google | Ondas SVG | Sol (floater-3).
============================================================ */

.premium-footer {
    position: relative;
    background: linear-gradient(135deg, #355E63 0%, #2a4a4e 100%);
    color: #F4F1EA;
    overflow: hidden;
    padding-top: 80px;
}

/* --- container --- */
.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* --- grid 4 colunas --- */
.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* --- brand (coluna 1) --- */
.footer-brand {
    text-align: center;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.footer-address {
    margin: 5px 0;
    font-size: 0.85rem;
	opacity: 0.85;
    color: #E9E4DA;
}

.footer-tagline {
    margin: 10px 0 20px;
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* --- social links com ripple + tooltip --- */
.footer-social-main {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-link {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #F4F1EA;
    font-size: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* tooltip ao hover */
.social-link::before {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    background: rgba(255,255,255,0.95);
    color: #355E63;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-link:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

/* ripple */
.social-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: scale(0);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0%   { transform: scale(0);   opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* --- colunas (Discover / Surf Trips / Get in Touch) --- */
.footer-column {
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.footer-column:nth-child(2) { animation-delay: 0.1s; }
.footer-column:nth-child(3) { animation-delay: 0.2s; }
.footer-column:nth-child(4) { animation-delay: 0.3s; }

/* --- títulos das colunas --- */
.footer-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #8FB3B8;
    font-weight: 600;
    position: relative;
}

/* linha decorativa embaixo do título */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #8FB3B8, transparent);
    border-radius: 2px;
}

.footer-icon {
	padding: 3px 0 0 0;
    width: 24px;
    height: 25px;
    filter: brightness(1.2);
}

/* --- links das colunas --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
	  font-size: 0.9rem;
}

.footer-links a {
    color: #E9E4DA;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    display: none;
}

/* ícone aparece no hover com slide */
.footer-links a .footer-icon {
    width: 18px;
    height: 18px;
    opacity: 0;
    transform: translateX(-10px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-links a:hover .footer-icon {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.footer-links a:hover {
    color: #8FB3B8;
    padding-left: 25px;
}

/* --- "Book Now" highlight com pulse --- */
.highlight-link {
    background: linear-gradient(135deg, #8FB3B8, #6a9da3);
    padding: 10px 20px !important;
    border-radius: 25px;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(143,179,184,0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.highlight-link:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(143,179,184,0.6);
    padding-left: 20px !important;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(143,179,184,0.4); }
    50%      { box-shadow: 0 4px 25px rgba(143,179,184,0.7); }
}

/* --- newsletter --- */
.footer-newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.newsletter-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    color: #F4F1EA;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(244,241,234,0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #8FB3B8;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 20px rgba(143,179,184,0.3);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, #8FB3B8, #6a9da3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(143,179,184,0.4);
}

.newsletter-form button:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 25px rgba(143,179,184,0.6);
}

/* --- mapa (Find Us) --- */
.footer-map {
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 60px;
    padding: 40px 0 60px;
}

.footer-map .footer-title {
    margin-bottom: 15px;
}

.map-address {
    color: #E9E4DA;
    font-size: 0.8rem;
    margin: 10px auto 25px;
    opacity: 0.9;
    max-width: 800px;
    padding: 0 30px;
}

.map-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.map-btn.google {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
}

.map-btn.waze {
    background: linear-gradient(135deg, #33CCFF, #0099CC);
    color: white;
}

.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.map-container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.map-container iframe {
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

/* --- bottom bar --- */
.footer-bottom {
    background: transparent;
    padding: 15px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* ícone de onda animado no crédito */
.footer-credits .fa-water {
    color: #8FB3B8;
    animation: wave-icon 2s ease-in-out infinite;
}

@keyframes wave-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25%      { transform: translateY(-3px) rotate(-5deg); }
    75%      { transform: translateY(3px) rotate(5deg); }
}

.vdesign-link {
    color: #8FB3B8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vdesign-link:hover {
    color: #F4F1EA;
    text-shadow: 0 0 10px rgba(143,179,184,0.5);
}

/* --- sol (floater-3): desce até as ondas e sobe --- */
.footer-floaters {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* floater-1 e floater-2 desativados */
.floater-1,
.floater-2 {
    display: none;
}

.floater-3 {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 50%;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255,200,100,0.4),
        rgba(244,241,234,0.3),
        rgba(143,179,184,0.15),
        transparent
    );
    animation: sunset-rise 15s ease-in-out infinite;
}

@keyframes sunset-rise {
    0% {
        bottom: 180px;
        box-shadow: 0 0 40px rgba(255,200,100,0.5);
        opacity: 1;
        transform: translateX(-50%);
    }
    50% {
        bottom: -50px;
        box-shadow: 0 0 80px rgba(255,150,50,0.7);
        opacity: 0.7;
        transform: translateX(-50%);
    }
    100% {
        bottom: 180px;
        box-shadow: 0 0 40px rgba(255,200,100,0.5);
        opacity: 1;
        transform: translateX(-50%);
    }
}

/* --- ondas SVG (3 camadas animadas) --- */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 200px;
    pointer-events: none;
    z-index: 0;
}

.wave-container svg {
    width: 100%;
    height: 100%;
}

.wave {
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform, opacity;
}

.wave path {
    fill: #8fb4bb;
}

.wave1 {
    animation: waveStrongFade 26s linear infinite;
    opacity: 1;
}

.wave2 {
    animation: waveLoop 34s linear infinite;
    opacity: 0.6;
    animation-delay: -10s;
}

.wave3 {
    animation: waveLoop 42s linear infinite;
    opacity: 0.4;
    animation-delay: -18s;
}

@keyframes waveLoop {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

@keyframes waveStrongFade {
    0%   { transform: translateX(-50%); opacity: 0; }
    12%  { opacity: 1; }
    82%  { opacity: 1; }
    100% { transform: translateX(0);    opacity: 0; }
}

/* --- animação de entrada (usada pelo footer e outros) --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE — footer ─── */
@media (max-width: 768px) {
    .footer-container {
        padding: 40px 20px;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .footer-social-main {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .floater-3 {
        width: 100px;
        height: 100px;
    }

    .map-buttons {
        flex-direction: column;
        align-items: center;
    }

    .map-btn {
        width: 250px;
        justify-content: center;
    }

    .map-address {
        font-size: 0.9rem;
    }
}


/* =============================================
   Z-INDEX CORRECTIONS
============================================= */

/* 1. Logo sempre na frente de tudo */
.logo {
    z-index: 99999 !important;
}

/* 2. Sol atrás das ondas */
.floater-3 {
    z-index: 1 !important;
}

/* Ondas em camadas na frente do sol */
.wave-container {
    z-index: 10 !important;
}

.wave1 {
    z-index: 13 !important;
}

.wave2 {
    z-index: 12 !important;
}

.wave3 {
    z-index: 11 !important;
}


/* =============================================
   ACTIVE NO FOOTER
============================================= */

.footer-links a.active {
    color: #8FB3B8 !important;
}

.footer-links a.active .footer-icon {
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
}



/* ============================================================
   FAQ — Slab Krui Accordion
   ============================================================ */

.faq-section {
    max-width: 980px;
    margin: 120px auto;
    padding: 0 24px;
}

.faq-section h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
   
    text-align: center;
    color: var(--oceano-escuro);
    margin-bottom: 60px;
}

/* --- ITEM --- */
.faq-item {
    border-bottom: 1px solid rgba(53, 94, 99, 0.15);
}

/* --- PERGUNTA --- */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 26px 10px;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--oceano-escuro);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.faq-question:hover {
    opacity: 1;
}

/* --- ÍCONE ▾ --- */
.faq-question::after {
    content: "▾";
    font-size: 14px;
    margin-left: 20px;
    transition: transform 0.35s ease;
    opacity: 0.6;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* --- RESPOSTA --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(.22,.61,.36,1);
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--oceano-escuro);
    opacity: 0.9;
    padding: 0 10px 26px 10px;
}

/* --- ABERTO --- */
.faq-item.active .faq-answer {
    max-height: 500px;
}

/* --- RESPONSIVE --- */
@media (max-width: 767px) {
    .faq-section {
        margin: 90px auto;
    }

    .faq-section h2 {
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 0.85rem;
        letter-spacing: 0.14em;
        padding: 22px 6px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding-bottom: 22px;
    }
}


/* ============================================================
   CONTACT US — reformatado no padrão do site
   ────────────────────────────────────────────
   Títulos com 9.png  → mesmo padrão das outras páginas.
   Cards de info      → grid 3 colunas com hover sutil.
   Social             → reutiliza .social-link + .social-ripple
                        do footer; cores adaptadas para fundo
                        claro (areia/creme).
   Formulário         → labels League Spartan uppercase,
                        inputs linha inferior, btn-reserva.
============================================================ */

/* --- intro (subtitulo após hero) --- */
.contact-intro-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
}

.contact-intro-wrap h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--oceano-escuro);
    margin-bottom: 28px;
}

.contact-intro-wrap .imgico {
    width: 28px;
    opacity: 0.55;
    vertical-align: middle;
    margin-right: 10px;
}

.contact-intro-wrap p {
    font-size: 0.96rem;
    line-height: 1.85;
    opacity: 0.88;
    color: var(--oceano-escuro);
}

/* --- wrapper interno (centra conteúdo) --- */
.contact-page-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 100px 24px;
}

/* ─── TÍTULO COM 9.PNG ─── */
.contact-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

/* 9.png — mesmo comportamento do nav */
.contact-9 {
    width: 20px;
    opacity: 0.7;
}

.contact-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.9rem;
    font-weight: 300;
    letter-spacing: 0.08em;
   
    color: var(--oceano-escuro);
    margin: 0;
}

/* linha decorativa embaixo */
.contact-title-wrap + .contact-cards,
.contact-title-wrap + .contact-form {
    position: relative;
}

.contact-title-wrap::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 2px;
    background: var(--oceano);
    border-radius: 2px;
}

/* espaço entre a linha e o conteúdo abaixo */
.contact-title-wrap {
    padding-bottom: 20px;
    margin-bottom: 48px;
    position: relative;
}

/* ─── CARDS 3 COLUNAS ─── */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-cards a {
	text-decoration: none;
	display: flex;
    height: 100%;
}

.contact-card {
    background: rgba(143, 179, 184, 0.07);
    border: 1px solid rgba(143, 179, 184, 0.2);
    border-radius: 16px;
    padding: 40px 18px 34px;
    text-align: center;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    flex: 1;
}

.contact-card:hover {
    background: rgba(143, 179, 184, 0.14);
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(53, 94, 99, 0.1);
    border-color: rgba(143, 179, 184, 0.4);
}

.contact-card-emoji {
    font-size: 1.9rem;
    margin-bottom: 16px;
    line-height: 1;
	color: #355E63;
}

.contact-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oceano);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--oceano-escuro);
    opacity: 0.82;
    margin: 0;
}

/* ─── SOCIAL BLOCK (abaixo dos cards) ─── */
.contact-social-block {
    margin-top: 68px;
}

/* título menor "Follow Us" com 9.png */
.contact-social-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.contact-social-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oceano-escuro);
    margin: 0;
    opacity: 0.7;
}

/* .social-link e .social-ripple já vêm do footer —
   aqui apenas adaptamos as cores para fundo claro */
.contact-social-row {
    margin-top: 0;
}

.contact-social-row .social-link {
    background: rgba(53, 94, 99, 0.08);
    color: var(--oceano-escuro);
    backdrop-filter: none;
}

.contact-social-row .social-link:hover {
    background: var(--oceano-escuro);
    color: #fff;
    transform: translateY(-5px);
}

/* tooltip no contexto claro */
.contact-social-row .social-link::before {
    background: rgba(53, 94, 99, 0.9);
    color: #fff;
}

/* ripple mais sutil no fundo claro */
.contact-social-row .social-ripple {
    background: rgba(53, 94, 99, 0.15);
}

/* ─── FORMULÁRIO ─── */
.contact-form {
    display: grid;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--oceano-escuro);
    opacity: 0.55;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 1px solid rgba(53, 94, 99, 0.2);
    padding: 12px 4px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    background: transparent;
    color: var(--oceano-escuro);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(53, 94, 99, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--oceano);
    box-shadow: 0 3px 14px rgba(143, 179, 184, 0.18);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* botão — usa btn-reserva mas com cores invertidas (fundo claro) */
.contact-btn {
    justify-self: center;
    border-color: var(--oceano-escuro) !important;
    color: var(--oceano-escuro) !important;
    background: transparent;
    cursor: pointer;
    font-size: 0.72rem;
    margin-top: 10px;
}

.contact-btn:hover {
    background: var(--oceano-escuro) !important;
    color: var(--creme) !important;
    border-color: var(--oceano-escuro) !important;
    transform: translateY(-2px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .contact-intro-wrap {
        padding: 70px 20px;
    }

    .contact-page-inner {
        padding: 70px 20px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-card {
        padding: 30px 18px 26px;
        min-height: auto;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-social-block {
        margin-top: 50px;
    }

    .contact-form {
        gap: 24px;
    }
}

.mobile-only { display: none; }
.desktop-only { display: block; }

@media (max-width: 768px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
}

