/*
	*ver 3 (21/05/2026)
 * Namoanaue — Landing Page de Aluguel de Temporada
 * Design: Coastal Luxury | Mobile-first
 * Paleta: Warm Off-white + Teal/Verde-Mar Primary + Dark Navy
 * Tipografia: Fraunces (serif) + Plus Jakarta Sans (sans)
 */

/* ============================================================
   1. VARIAVEIS CSS
   ============================================================ */
:root {
  /* Paleta principal conforme spec */
  --color-bg:            hsl(40, 20%, 98%);
  --color-fg:            hsl(220, 20%, 12%);
  --color-primary:       hsl(175, 60%, 30%);
  --color-primary-light: hsl(175, 50%, 42%);
  --color-primary-dark:  hsl(175, 65%, 22%);
  --color-secondary:     hsl(40, 15%, 93%);
  --color-white:         #ffffff;

  /* Utilitarios de cor */
  --color-border:        hsl(40, 15%, 85%);
  --color-muted:         hsl(220, 10%, 52%);
  --color-text-light:    hsl(220, 12%, 38%);
  --color-success:       #22c55e;
  --color-warning:       #f59e0b;
  --color-wa:            #25D366;

  /* Tipografia */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Escala tipografica */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Espacamentos */
  --s1: 0.25rem;  --s2: 0.5rem;   --s3: 0.75rem;  --s4: 1rem;
  --s5: 1.25rem;  --s6: 1.5rem;   --s8: 2rem;     --s10: 2.5rem;
  --s12: 3rem;    --s16: 4rem;    --s20: 5rem;    --s24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-px:  1.25rem;
  --radius-sm:     0.375rem;
  --radius-md:     0.75rem;
  --radius-lg:     1.25rem;
  --radius-xl:     2rem;
  --radius-full:   9999px;
  --header-h:      72px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.07);

  /* Transicoes */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;
}

@media (min-width: 768px) {
  :root {
    --container-px: 2rem;
    --header-h: 80px;
  }
}

/* ============================================================
   2. RESET E BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-fg);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Fundo cinza enquanto imagem carrega / nao existe */
  background-color: transparent;
}

a       { color: inherit; text-decoration: none; }
ul, ol  { list-style: none; }
button  { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   3. LAYOUT UTILITARIOS
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section { padding-block: var(--s20); }
@media (min-width: 768px) { .section { padding-block: var(--s24); } }

/* Cabecalho de secao */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s3);
}

.section-title {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  color: var(--color-fg);
  margin-bottom: var(--s4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 62ch;
  line-height: 1.65;
  white-space: pre-line;
}

.section-header { margin-bottom: var(--s12); }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }

/* Button utility classes */
.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn-white:hover {
  background-color: hsl(40, 20%, 96%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

/* ============================================================
   4. HEADER / NAV FIXO
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background-color var(--t-slow), backdrop-filter var(--t-slow), box-shadow var(--t-slow);
}

.site-header.is-scrolled {
  background-color: hsla(40, 20%, 98%, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--s4);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: var(--s3); flex-shrink: 0; }

.nav-logo-img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: transparent !important; /* Garante que não haja fundo */
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color var(--t-base);
  flex-shrink: 0;
}
.site-header.is-scrolled .nav-logo-img { border-color: var(--color-border); }

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-white);
  transition: color var(--t-base);
}
.site-header.is-scrolled .nav-logo-name { color: var(--color-fg); }

/* Links desktop */
.nav-links { display: none; align-items: center; gap: 0; margin-left: auto; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: var(--s2) var(--s3);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--color-white); background-color: rgba(255,255,255,0.10); }
.site-header.is-scrolled .nav-link { color: var(--color-text-light); }
.site-header.is-scrolled .nav-link:hover { color: var(--color-fg); background-color: var(--color-secondary); }

/* Seletor de idioma */
.lang-switcher {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: var(--s4);
  padding: 4px;
  border-radius: var(--radius-full);
  background-color: rgba(255,255,255,0.10);
}
@media (min-width: 768px) { .lang-switcher { display: flex; } }

.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  padding: 4px 9px;
  border-radius: var(--radius-full);
  transition: all var(--t-fast);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lang-btn:hover { color: var(--color-white); }
.lang-btn.is-active { background-color: rgba(255,255,255,0.20); color: var(--color-white); }

.site-header.is-scrolled .lang-switcher { background-color: var(--color-secondary); }
.site-header.is-scrolled .lang-btn { color: var(--color-muted); }
.site-header.is-scrolled .lang-btn:hover { color: var(--color-fg); }
.site-header.is-scrolled .lang-btn.is-active { background-color: var(--color-border); color: var(--color-fg); }

/* CTA header desktop premium */
.btn-book {
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: var(--s4);
    padding: 11px 18px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    transition:
        background .2s ease,
        transform .2s ease,
        border-color .2s ease;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .btn-book {
    display: inline-flex;
    }
}

.btn-book:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.32);
}

/* header branco após scroll */
.site-header.is-scrolled .btn-book {
    background: var(--color-primary);
    border-color: transparent;
    color: white;
}

.site-header.is-scrolled .btn-book:hover {
    background: var(--color-primary-dark);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  margin-left: auto;
  border-radius: var(--radius-sm);
  z-index: 1001;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}
.site-header.is-scrolled .nav-hamburger span { background-color: var(--color-fg); }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU FIX DEFINITIVO
   ============================================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    background: #0d1420;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    padding: 72px 32px 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease;
    height: auto;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* botão fechar */
.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: white;
}

/* navegação */
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}

/* links */
.mobile-menu-link {
    display: block;
    width: 100%;
    font-family: Arial, sans-serif;
    font-size: 15px !important;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    text-align: left;
    padding: 0;
    line-height: 1.3;
}

/* idiomas */
.mobile-menu-lang {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

/* CTA menu mobile */
.mobile-menu-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 28px;
    padding: 12px 18px;
    border-radius: 9999px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-primary-light)
    );
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
    width: auto;
    max-width: 100%;
}

.mobile-menu-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,.28);
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('fotos/hero.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: hsl(175, 40%, 15%);
}

@media (max-width: 768px) {
  .hero {
    background-position: right center;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding-top: var(--header-h);
  padding-bottom: 110px;
  max-width: 820px;
  padding-inline: var(--container-px);
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--s4);
  animation: fadeSlideUp 0.9s ease both;
  animation-delay: 0.15s;
}

.hero-title {
  font-size: clamp(var(--text-3xl), 5.5vw, var(--text-6xl));
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--s5);
  animation: fadeSlideUp 0.9s ease both;
  animation-delay: 0.35s;
}

.hero-subtitle {
  font-size: clamp(var(--text-base), 2.2vw, var(--text-xl));
  color: rgba(255,255,255,0.80);
  max-width: 55ch;
  margin: 0 auto var(--s8);
  animation: fadeSlideUp 0.9s ease both;
  animation-delay: 0.55s;
}

.hero-cta {
  animation: fadeSlideUp 0.9s ease both;
  animation-delay: 0.75s;
}

/* Entrada 1 — link institucional discreto para o Guia da Barra.
   Sem fundo, sem box, tipografia menor que o CTA principal,
   posicionado imediatamente abaixo dele. Nunca deve competir
   visualmente com .btn-cta--hero. */
.hero-guide-link {
  display: inline-block;
  margin-top: var(--s5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
  animation: fadeSlideUp 0.9s ease both;
  animation-delay: 0.90s;
}
.hero-guide-link:hover {
  color: rgba(255,255,255,0.92);
  border-bottom-color: rgba(255,255,255,0.45);
}
/* CTA BUTTONS - Base styles for hero actions */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: white;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    max-width: 100%;
}

/* Reserve button variant */
.btn-cta--reserve {
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 15px;
    box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.btn-cta--reserve:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.34);
    box-shadow: 0 18px 40px rgba(0,0,0,.24);
}

/* CTA button variant (Safari compatible) */
.btn-cta--hero {
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.btn-cta--hero:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.30);
    border-color: rgba(255,255,255,0.36);
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
}

/* Arrow indicator */
.btn-cta::after {
    content: '→';
    opacity: .85;
    transition: transform .2s ease;
}

.btn-cta--reserve::after {
    font-size: 16px;
}

.btn-cta--hero::after {
    font-size: 15px;
}

.btn-cta:hover::after {
    transform: translateX(3px);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .btn-cta--reserve {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
    }

    .btn-cta--hero {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        font-size: 13px;
    }
}

/* Indicador scroll hero */

.hero-scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: .88;
    animation: fadeIn 1.2s ease both;
    animation-delay: 1.1s;
}

/* texto */

.hero-scroll-text {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
    white-space: nowrap;
}

/* linha animada */
:root {
    --scroll-line-color: rgba(255, 255, 255, 0.85);
    --scroll-line-bg: rgba(255, 255, 255, 0.15);
}

.hero-scroll-line {
    position: relative;
    width: 2px; /* Linhas mais finas (2px) dão um ar mais elegante e moderno */
    height: 60px; /* Um pouco mais longa para valorizar o movimento */
    background-color: var(--scroll-line-bg); /* O caminho por onde a linha passa fica sutilmente visível */
    overflow: hidden;
    border-radius: 1px;
    margin: 0 auto;
}

/* O "Pulsador/Cometa" animado */
.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        var(--scroll-line-color) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: modernScrollLine 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* Animação com curva de aceleração mais natural (Expo/Cubic) */
@keyframes modernScrollLine {
    0% {
        transform: translateY(-100%);
    }
    70%, 100% {
        transform: translateY(250%); /* Faz o traço sumir completamente pela base */
    }
}
/* ============================================================
   6. ACOMODACAO
   ============================================================ */
.accommodation-images {
  position: relative;
  width: 100%;
  height: auto; 
  margin-bottom: var(--s16);
}

.accommodation-img-main {
  width: 100%; 
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3; 
  }

.accommodation-img-thumb {
  position: absolute;
  bottom: calc(-1 * var(--s6));
  right: var(--s6);
  width: 160px; 
  height: 120px;
  aspect-ratio: 4 / 3; 
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--color-bg);
  box-shadow: var(--shadow-xl);
  min-height: unset;
  z-index: 2; 
}

@media (min-width: 768px) {
    .accommodation-img-thumb {
    width: 210px; 
    height: 155px;
    aspect-ratio: 210 / 155; 
    bottom: var(--s6);
    right: calc(-1 * var(--s8));
  }
}

/* Cards dos andares */
.accommodation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  margin-bottom: var(--s12);
}
@media (min-width: 640px) {
  .accommodation-grid { grid-template-columns: repeat(3, 1fr); }
}

.floor-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.floor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.floor-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--s4);
}

.floor-title { font-size: var(--text-xl); margin-bottom: var(--s2); }
.floor-desc { font-size: var(--text-sm); color: var(--color-text-light); line-height: 1.65; }

/* Comodidades */
.amenities-section {
  padding-top: var(--s12);
  border-top: 1px solid var(--color-border);
}
.amenities-title { font-size: var(--text-xl); margin-bottom: var(--s6); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}
@media (min-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  padding: var(--s5) var(--s3);
  background-color: var(--color-secondary);
  border-radius: var(--radius-md);
  text-align: center;
  transition: background-color var(--t-fast);
}
.amenity-item:hover { background-color: hsl(40, 18%, 88%); }

.amenity-icon { width: 30px; height: 30px; color: var(--color-primary); flex-shrink: 0; }
.amenity-label { font-size: var(--text-xs); font-weight: 600; color: var(--color-fg); line-height: 1.3; }

/* ============================================================
   Seção de Unidades 
   ============================================================ */ 
.unit-card {
    display: flex;
    flex-direction: column; /* Organiza foto e info verticalmente */
    width: 100%;
    overflow: hidden;
    border-radius: 20px; /* Seu arredondamento geral do card */
    background: #fff;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Efeito de Hover opcional no Card */
.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

/* FOTO CONTAINER */
.unit-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2; 
}

.unit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
	transition: transform 0.5s ease;
}

/* Efeito de Zoom na foto ao passar o mouse no card */
.unit-card:hover img {
    transform: scale(1.04);
}

/* TÍTULO SOBRE FOTO */
.unit-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: auto; 
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    z-index: 2;
}
  
/* Escurecimento suave */
.unit-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.5),
        rgba(0,0,0,0) 30% /* O degradê se concentra mais na base */
    );
    pointer-events: none;
    z-index: 1; /* Fica abaixo do texto, mas acima da imagem */
}

.unit-info {
    padding: 18px 20px 22px;
    flex-grow: 1; /* Faz a parte branca esticar até o final em todos os cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Garante que o botão fique alinhado por baixo se quiser */
}

.unit-desc {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 0.96rem;
    line-height: 1.7;
    color: rgba(0,0,0,.68);
    font-weight: 400;
    max-width: 32ch;
}

/* SWIPER UNIDADES */
.units-swiper {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 45px;
}

/* MOBILE = slider */
.units-swiper .swiper-slide {
    width: 85%;
    height: auto; /* Permite que o slide se adapte à altura do card */
	display: flex; /* Força o card interno a cooperar */
}

/* Paginação */
.swiper-pagination {
    bottom: 0 !important;
}

/* DESKTOP = GRID 2x2 */
@media (min-width: 992px) {
    .units-swiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        transform: none !important;
        pointer-events: none; /* Desativa o arraste do Swiper no grid */
    }

    .units-swiper .swiper-slide {
        width: 100% !important;
        height: 100% !important;
        pointer-events: auto; /* Reativa os cliques normais nos cards */
    }

    .swiper-pagination {
        display: none !important;
    }
}

/* ------------------------------------------------------------
   Link editorial das unidades
   ------------------------------------------------------------ */

.unit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.08);
    color: #111;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

/* hover */
.unit-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.22);
    box-shadow:
        0 12px 24px rgba(0,0,0,.16);
}

/* seta */
.unit-link::after {
    content: '→';
    font-size: 14px;
    opacity: .82;
    transition: transform .2s ease;
}

.unit-link:hover::after {
    transform: translateX(3px);
}

/* Efeito de Hover */
.unit-card:hover img {
    transform: scale(1.1);
}

/* Responsividade para Celular */
@media (max-width: 600px) {
    .units-grid {
        grid-template-columns: 1fr; /* 1 por linha no celular */
    }
}
/* ============================================================
   7. INFORMACOES (bg-secondary)
   ============================================================ */
.section-info { background-color: var(--color-secondary); }

.check-cards {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s8);
}

.check-card {
  flex: 1;
  min-width: 150px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--s5) var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s4);
  box-shadow: var(--shadow-sm);
}

.check-card-icon { width: 40px; height: 40px; color: var(--color-primary); flex-shrink: 0; }
.check-card-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-muted);
  font-weight: 700;
  margin-bottom: var(--s1);
}
.check-card-time {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-fg);
  line-height: 1;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }

.info-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
}

.info-card-title {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s2);
  color: var(--color-fg);
}
.info-card-title svg { width: 18px; height: 18px; flex-shrink: 0; }

.info-list { display: flex; flex-direction: column; gap: var(--s3); }

.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.55;
}
.info-list-item .item-icon { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }
.info-list-item--check .item-icon { color: var(--color-success); }
.info-list-item--cross .item-icon { color: var(--color-muted); }

.info-notice {
  margin-top: var(--s6);
  background-color: var(--color-white);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--s4) var(--s5);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  box-shadow: var(--shadow-sm);
  line-height: 1.65;
}

/* ============================================================
   8. ANFITRIOES
   ============================================================ */
.hosts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}
@media (min-width: 768px) { .hosts-grid { grid-template-columns: 1fr 1fr; } }

.hosts-image-wrapper { position: relative; padding-bottom: var(--s16); }
@media (min-width: 768px) { .hosts-image-wrapper { padding-bottom: 0; } }

.hosts-image {
  width: 100%;
  height: auto; /* Deixe o aspect-ratio controlar a altura */
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hosts-quote-card {
  position: absolute;
  bottom: 0; right: 0;
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(1px); /* Efeito moderno de vidro fosco */
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--color-fg);
  padding: var(--s5) var(--s6);
  border-radius: var(--radius-lg);
  max-width: 285px;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
@media (min-width: 768px) {
  .hosts-quote-card { right: calc(-1 * var(--s6)); bottom: var(--s8); }
}

.hosts-quote-text {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-fg);
  margin: var(--s2) 0 0; /* Organiza as margens dos parágrafos internos */
}

.hosts-text {
  font-size: var(--text-base);
  color: var(--color-fg);
  line-height: 1.75;
  margin-bottom: var(--s4);
}

.hosts-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-top: var(--s5);
  padding-top: var(--s5);
  border-top: 1px solid var(--color-border);
}

.hosts-bullet {
  display: flex; align-items: center; gap: var(--s3);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}
.hosts-bullet::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

/* ============================================================
   9. GALERIA (bento grid assimetrico)
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-secondary);
  width: 100%;
}

/* NO MOBILE: Forçamos as caixinhas a serem levemente retangulares (4/3).
   Isso cria o "espaço reservado" perfeito no celular, eliminando os pulos! */
.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 220px);
    grid-auto-rows: 220px;
  }

  .gallery-item img {
    height: 100%;
    aspect-ratio: auto;
  }

  /* Foto 1: grande, ocupa 2 colunas e 2 linhas (Fica com tamanho aproximado de 460px de altura) */
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  
  /* Foto 4: ocupa 2 colunas */
  .gallery-item:nth-child(4) { grid-column: span 2; }
}

.gallery-item:hover img { 
  transform: scale(1.06); 
}
/* ============================================================
   10. EXPERIENCIA GUIADA
   Estilo editorial premium / cinematic section
   ============================================================ */

/* ------------------------------------------------------------
   Container principal da seção
   Fundo navy suave para integrar com a imagem
   ------------------------------------------------------------ */
.section-guide {
    position: relative;
    background:
        linear-gradient(
            to bottom,
            #07141d,
            #0a1b25
        );
    color: var(--color-white);
    padding-top: var(--s12);
    overflow: visible;
}

/* ------------------------------------------------------------
   Imagem principal da seção
   Agora funciona como elemento editorial real
   e não mais como background absoluto
   ------------------------------------------------------------ */
.section-guide .guide-bg {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center center;
    border-radius: 28px;
    position: relative;
    z-index: 1;
    margin-bottom: -36px;
}

/* ------------------------------------------------------------
   Conteúdo textual principal
   Sobreposição suave sobre a imagem
   ------------------------------------------------------------ */
.section-guide .guide-content {
    position: relative;
    z-index: 2;
    margin-top: -48px;
}

/* ------------------------------------------------------------
   Badge editorial da experiência guiada
   ------------------------------------------------------------ */

.section-guide .guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.94);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    box-shadow:
        0 10px 24px rgba(0,0,0,.14);
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

/* hover */

.section-guide .guide-badge:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.24);
    box-shadow:
        0 14px 30px rgba(0,0,0,.18);
}

/* ponto luminoso */
.section-guide .guide-badge::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: hsl(175, 60%, 55%);
    box-shadow:
        0 0 12px rgba(90,255,240,.45);
}

/* ------------------------------------------------------------
   Título principal
   ------------------------------------------------------------ */
.section-guide .guide-title {
    font-size: clamp(42px, 5vw, 78px);
    line-height: .96;
    letter-spacing: -0.04em;
    max-width: 10ch;
    margin-bottom: 26px;
    color: var(--color-white);
}

/* ------------------------------------------------------------
   Descrição da experiência
   ------------------------------------------------------------ */
.section-guide .guide-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.74);
    max-width: 48ch;
    margin-bottom: var(--s10);
}

/* ------------------------------------------------------------
   Card branco da oferta
   ------------------------------------------------------------ */
.section-guide .guide-offer-card {
    background-color: var(--color-white);
    color: var(--color-fg);
    border-radius: var(--radius-xl);
    padding: var(--s6) var(--s8);
    max-width: 520px;
    margin-bottom: var(--s12);
    box-shadow: var(--shadow-xl);
}

.section-guide .guide-offer-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--s3);
}

.section-guide .guide-offer-desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--s5);
}

/* ============================================================
   CTA EXPERIENCIA GUIADA
   Compatível com Safari / iPhone SE
   ============================================================ */

.section-guide .guide-offer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-primary-light)
        );

    color: #fff;
    border-radius: 9999px;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    flex-wrap: nowrap;
    overflow: hidden;
}

.section-guide .guide-offer-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(0,0,0,.18);
}

/* badge interno */
.section-guide .guide-offer-cta-label {
    flex-shrink: 0;
    padding: 6px 10px;
    border-radius: 9999px;
    background: rgba(255,255,255,.16);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* texto principal */
.section-guide .guide-offer-cta-text {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* seta */
.section-guide .guide-offer-cta-arrow {
    flex-shrink: 0;
    font-size: 16px;
    opacity: .85;
}

/* ------------------------------------------------------------
   Grid de spots/experiências
   ------------------------------------------------------------ */
.section-guide .guide-spots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s4);
}

@media (min-width: 768px) {
    .section-guide .guide-spots {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* cards */
.section-guide .guide-spot {
    background-color: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-md);
    padding: var(--s5);
    transition:
        background-color var(--t-fast),
        transform var(--t-fast);
}

.section-guide .guide-spot:hover {
    background-color: rgba(255,255,255,.12);
    transform: translateY(-2px);
}

.section-guide .guide-spot-icon {
    width: 34px;
    height: 34px;
    color: hsl(175, 60%, 58%);
    margin-bottom: var(--s3);
}

.section-guide .guide-spot-title {
    font-family: var(--font-serif);
    font-size: var(--text-base);
    color: var(--color-white);
    margin-bottom: var(--s1);
}

.section-guide .guide-spot-desc {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.58);
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVO — MOBILE
   ============================================================ */

@media (max-width: 768px) {
    .section-guide .guide-bg {
        border-radius: 24px;
        margin-bottom: -54px;
    }

    .section-guide .guide-content {
        margin-top: -72px;
    }

    .section-guide .guide-title {
        font-size: clamp(42px, 11vw, 62px);
        max-width: 10ch;
    }

    .section-guide .guide-desc {
        font-size: 16px;
        line-height: 1.75;
    }
}

/* ============================================================
   RESPONSIVO — DESKTOP LARGE
   ============================================================ */

@media (min-width: 1024px) {
    .section-guide .guide-bg {
        max-height: 560px;
        border-radius: 34px;
        margin-bottom: -12px;
    }

    .section-guide .guide-content {
        margin-top: -18px;
        padding-left: 72px;
        max-width: 980px;
    }

    .section-guide .guide-badge {
        padding: 14px 28px;
        font-size: 13px;
        letter-spacing: .16em;
        margin-bottom: 34px;
    }

    .section-guide .guide-title {
        font-size: clamp(72px, 5vw, 96px);
        line-height: .92;
        max-width: 9ch;
        margin-bottom: 34px;
    }

    .section-guide .guide-desc {
        font-size: 21px;
        line-height: 1.9;
        max-width: 44ch;
    }
}

/* ============================================================
   RESPONSIVO — iPHONE SE / telas pequenas
   ============================================================ */

@media (max-width: 380px) {

    .section-guide .guide-offer-cta {
        padding: 12px 14px;
        gap: 10px;
   }

    .section-guide .guide-offer-cta-text {
        font-size: 13px;
    }

    .section-guide .guide-offer-cta-label {
        font-size: 9px;
        padding: 5px 8px;
    }
}
/* ============================================================
   11. AVALIACOES
   ============================================================ */
.reviews-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s2);
  margin-bottom: var(--s8);
}
@media (min-width: 640px) {
  .reviews-meta { flex-direction: row; align-items: flex-end; gap: var(--s8); }
}

.reviews-score-num {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-fg);
}

.reviews-stars { display: flex; gap: 3px; color: var(--color-warning); margin-block: var(--s1); }
.reviews-stars svg { width: 20px; height: 20px; }

.reviews-count-text { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: var(--s2); }

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.reviews-google-link:hover { color: var(--color-primary-dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

.review-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--t-base);
  display: flex; flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow-md); }

.review-card-stars { display: flex; gap: 2px; color: var(--color-warning); margin-bottom: var(--s4); }
.review-card-stars svg { width: 16px; height: 16px; }

.review-card-text {
  font-size: var(--text-base);
  color: var(--color-text-light);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--s5);
}
.review-card-author { font-size: var(--text-sm); font-weight: 700; color: var(--color-fg); }

/* ============================================================
   12. LOCALIZACAO
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  align-items: start;
}
@media (min-width: 768px) { .location-grid { grid-template-columns: 1fr 1fr; } }

.location-distances { display: flex; gap: var(--s3); margin: var(--s6) 0; flex-wrap: wrap; }

.distance-card {
  flex: 1; min-width: 88px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-md);
  padding: var(--s4) var(--s3);
}

.distance-unit { font-size: var(--text-xs); color: var(--color-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.distance-label { font-size: var(--text-sm); font-weight: 600; color: var(--color-fg); margin-top: var(--s1); }

.location-address {
  display: flex; align-items: flex-start; gap: var(--s3);
  font-size: var(--text-sm); color: var(--color-text-light);
  margin-top: var(--s5); line-height: 1.6;
}
.location-address svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-primary); margin-top: 1px; }
.location-address a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.location-address a:hover { color: var(--color-primary-dark); }

/* Entrada 2 — bloco "Guia da Barra" dentro da seção de Localização.
   Sem foto, sem banner, sem cor nova: reaproveita --color-secondary
   (mesmo tom usado em .distance-card) e --color-primary para o ícone
   e o link, no mesmo registro visual de um serviço adicional da
   hospedagem — não de uma peça publicitária. */
.loc-guide-block {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  margin-top: var(--s6);
  padding: var(--s5) var(--s6);
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
}

.loc-guide-block-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  color: var(--color-primary);
}
.loc-guide-block-icon svg { width: 20px; height: 20px; }

.loc-guide-block-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-fg);
  margin-bottom: var(--s2);
}

.loc-guide-block-text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: var(--s3);
  max-width: 48ch;
}

.loc-guide-block-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}
.loc-guide-block-link::after {
  content: '→';
  transition: transform var(--t-fast);
}
.loc-guide-block-link:hover { color: var(--color-primary-dark); }
.loc-guide-block-link:hover::after { transform: translateX(3px); }

@media (max-width: 639px) {
  .loc-guide-block { flex-direction: column; gap: var(--s3); padding: var(--s5); }
}

.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 420px; }
.location-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   13. CTA DE RESERVA
   ============================================================ */
.section-cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding-block: var(--s24);
}
.cta-title {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  color: var(--color-white);
  margin-bottom: var(--s4);
  max-width: 22ch;
  margin-inline: auto;
}
.cta-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.80);
  max-width: 50ch;
  margin: 0 auto var(--s8);
  line-height: 1.65;
}
.cta-note { margin-top: var(--s4); font-size: var(--text-sm); color: rgba(255,255,255,0.58); }

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-fg);
  color: rgba(255,255,255,0.68);
  padding-block: var(--s16) var(--s8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
  margin-bottom: var(--s12);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

/* Entrada 3 — variante do footer-grid com a coluna extra "Guia da Barra".
   Mesma base de breakpoints e gap; em desktop (>=1024px) passa a usar
   4 colunas em vez de 3, mantendo a coluna de logo/descrição proporcionalmente
   maior que as demais. */
@media (min-width: 1024px) {
  .footer-grid--with-guide { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

.footer-logo { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s4); }
.footer-logo-img { background-color: transparent !important;
  border: none; width: 40px; height: 40px; border-radius: 50%; object-fit: cover; opacity: 0.80; flex-shrink: 0; }
.footer-logo-name { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 600; color: var(--color-white); }
.footer-desc { font-size: var(--text-sm); line-height: 1.7; max-width: 36ch; }

.footer-heading {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--s4);
}

.footer-contact-item {
  display: flex; align-items: flex-start; gap: var(--s3);
  font-size: var(--text-sm); margin-bottom: var(--s3); line-height: 1.55;
}
.footer-contact-item svg { flex-shrink: 0; width: 16px; height: 16px; opacity: 0.55; margin-top: 2px; }

.footer-social-list { display: flex; flex-direction: column; gap: var(--s3); }
.footer-social-link {
  display: flex; align-items: center; gap: var(--s3);
  font-size: var(--text-sm); color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer-social-link:hover { color: var(--color-white); }
.footer-social-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Entrada 3 — coluna "Guia da Barra" no footer. Reaproveita
   integralmente o estilo de .footer-social-link (mesma cor, mesmo
   hover, mesmo espaçamento) para que a coluna nova pareça parte
   nativa do footer, e não um bloco promocional anexado. */
.footer-guide-list { display: flex; flex-direction: column; gap: var(--s3); }
.footer-guide-list .footer-social-link { font-weight: 500; }
.footer-social-link--strong { color: rgba(255,255,255,0.85); font-weight: 700; }
.footer-social-link--strong:hover { color: var(--color-white); }
.footer-guide-desc {margin: 0 0 14px; font-size: 0.92rem; line-height: 1.55; color: var(--text-soft); }

.footer-divider { height: 1px; background-color: rgba(255,255,255,0.08); margin-bottom: var(--s6); }

.footer-bottom {
  display: flex; flex-direction: column; gap: var(--s2);
  align-items: center; text-align: center;
  font-size: var(--text-xs); color: rgba(255,255,255,0.35);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

.footer-admin-link { color: rgba(255,255,255,0.20); font-size: var(--text-xs); transition: color var(--t-fast); }
.footer-admin-link:hover { color: rgba(255,255,255,0.45); }

/* ============================================================
   15. FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--s6); right: var(--s6);
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background-color: var(--color-wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.whatsapp-float:hover { transform: scale(1.10); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #ffffff; flex-shrink: 0; }

/* .whatsapp-float is visible in mobile and desktop */
.whatsapp-float {
  animation: waCintilante 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  animation: none;
}

.whatsapp-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background-color: var(--color-wa);
  animation: waPing 2.2s ease-out infinite;
  z-index: -1;
}

/* ============================================================
   16. ANIMACOES / KEYFRAMES
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { 
    opacity: 0.4; /* Aumentado de 0.30 para 0.50 */
    transform: scaleY(0.8); 
    transform-origin: top; 
  }
  50% { 
    opacity: 1; /* Aumentado de 0.90 para 1 (brilho total) */
    transform: scaleY(1.05); /* Aumenta um pouco além do tamanho original para dar peso */
    transform-origin: top; /* Mantido aqui para evitar saltos visuais */
  }
}

@keyframes waPing {
  0%   { transform: scale(1);   opacity: 0.40; }
  70%  { transform: scale(1.7); opacity: 0;    }
  100% { transform: scale(1.7); opacity: 0;    }
}

@keyframes waCintilante {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.40); opacity: 1; }
  50%  { box-shadow: 0 8px 35px rgba(37,211,102,0.70); opacity: 0.95; }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.40); opacity: 1; }
}

/* ============================================================
   17. REVEAL ON SCROLL (IntersectionObserver)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.45s; }
.reveal-delay-5 { transition-delay: 0.60s; }

/* =========================================
   LINHA DIVISÓRIA VERDE INFINITA
========================================= */

.infinity-line{
    width: 100%;
    height: 2px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,255,140,0.15) 15%,
            rgba(0,255,140,0.9) 50%,
            rgba(0,255,140,0.15) 85%,
            transparent 100%
        );
    box-shadow:
        0 0 10px rgba(0,255,140,0.35),
        0 0 20px rgba(0,255,140,0.15);
}

/* =========================================
   Lazy Loading de Iframe com Placeholder (google maps troca por imagem)
========================================= */
/* Container principal do mapa */
.location-map {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 450px; /* Garante que o container tenha tamanho antes do mapa abrir */
}

/* O iframe começa completamente transparente e sem aceitar cliques */
.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease; /* Transição suave */
    z-index: 2;
}

/* Classe aplicada pelo JS assim que o mapa do Google terminar de carregar */
.location-map iframe.map-loaded {
    opacity: 1;
    pointer-events: auto; /* Libera o mapa para arrastar e dar zoom */
}

/* Elementos do Placeholder (Imagem de fundo) */
#map-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Botão de indicação visual por cima da imagem */
.map-overlay-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* Escurece levemente o print do mapa */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.map-overlay-btn span {
    border-radius: 30px;
    border: 4px solid var(--color-bg);
    background: rgba(0, 0, 0, 0.15);
    color: #333333;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Efeito de hover ao passar o mouse antes de ativar */
.location-map:hover .map-overlay-btn {
    background: rgba(0, 0, 0, 0.3);
}

.location-map:hover .map-overlay-btn span {
    transform: scale(1.05);
}