/* ============================================================
   SÍTIO MERODE — Main Stylesheet
   ============================================================ */

/* === VARIABLES & RESET === */
:root {
  --c-primary:       #2D6A4F;
  --c-primary-dark:  #1B4332;
  --c-primary-mid:   #40916C;
  --c-primary-light: #74C69D;
  --c-primary-pale:  #D8F3DC;
  --c-gold:          #C9941A;
  --c-gold-light:    #F4D160;
  --c-cream:         #FEFAE0;
  --c-cream-dark:    #F2E8C4;
  --c-text:          #1A2E1E;
  --c-muted:         #4A5568;
  --c-white:         #FFFFFF;
  --c-whatsapp:      #25D366;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 2px 8px  rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --shadow-g:  0 8px 30px rgba(45,106,79,.30);

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-full: 9999px;

  --t:      .3s ease;
  --t-slow: .6s ease;

  --nav-h:  76px;
  --max-w:  1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--c-primary-dark);
}
h1 { font-size: clamp(2rem,   5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem);}
h4 { font-size: 1.15rem; }
p  { color: var(--c-muted); }

/* === UTILITIES === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-header h2  { margin-bottom: 1rem; }
.section-header p   { font-size: 1.05rem; }

.badge {
  display: inline-block;
  background: var(--c-primary-pale);
  color: var(--c-primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: .75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }
.btn-primary:hover { background: var(--c-primary-dark); border-color: var(--c-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-g); }
.btn-outline { background: transparent; color: var(--c-white); border-color: var(--c-white); }
.btn-outline:hover { background: var(--c-white); color: var(--c-primary); }
.btn-gold { background: var(--c-gold); color: var(--c-white); border-color: var(--c-gold); }
.btn-gold:hover { background: #a77a12; border-color: #a77a12; transform: translateY(-2px); }

/* Fade-in scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t);
}
.navbar.scrolled {
  background: rgba(27,67,50,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-white);
}
.logo-leaf {
  width: 38px; height: 38px;
  background: var(--c-primary-light);
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: .88rem;
  padding: .5rem .8rem;
  border-radius: var(--r-sm);
  transition: var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-white); background: rgba(255,255,255,.15); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: .75rem; }

.btn-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  transition: var(--t);
}
.btn-icon:hover { background: rgba(255,255,255,.28); transform: scale(1.1); }
.btn-icon svg   { width: 20px; height: 20px; }

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--c-whatsapp);
  color: var(--c-white);
  padding: .48rem 1.2rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .85rem;
  transition: var(--t);
}
.btn-wpp svg { width: 18px; height: 18px; }
.btn-wpp:hover { background: #128C7E; transform: translateY(-2px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (Home)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Para voltar ao fundo só com gradiente, troque o bloco abaixo por este:
  background:
    linear-gradient(to bottom, rgba(27,67,50,.78) 0%, rgba(27,67,50,.42) 55%, rgba(27,67,50,.72) 100%),
    linear-gradient(135deg, #0d2b1e 0%, #1B4332 30%, #2D6A4F 60%, #40916C 100%);
  */
  background:
    linear-gradient(to bottom, rgba(27,67,50,.78) 0%, rgba(27,67,50,.42) 55%, rgba(27,67,50,.72) 100%),
    url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
}

/* Subtle pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(8px);
  color: var(--c-white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .5rem 1.3rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.22);
  margin-bottom: 1.5rem;
}

.hero h1 { color: var(--c-white); margin-bottom: 1.4rem; text-shadow: 0 2px 16px rgba(0,0,0,.25); }
.hero h1 em { color: var(--c-gold-light); font-style: normal; }
.hero > .hero-content > p {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .12em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  animation: bounce 2.2s infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--c-primary-dark); padding: 2.25rem 0; }
.stats-grid  {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 420px;
  /* placeholder: troque por <img src="images/sobre.jpg"> */
  background: linear-gradient(155deg, #1B4332 0%, #2D6A4F 45%, #52B788 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-img-accent {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  width: 190px; height: 190px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--c-white);
}
.about-img-accent .big { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; line-height: 1; }
.about-img-accent p   { color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 700; }

.about-content h2  { margin-bottom: 1.25rem; }
.about-content p   { margin-bottom: 1rem; font-size: 1.05rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 2rem 0;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--c-primary);
  font-size: .95rem;
}
.about-feat svg { color: var(--c-primary-light); flex-shrink: 0; }

/* ============================================================
   CARD GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-img {
  height: 210px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.card:hover .card-img img { transform: scale(1.06); }

/* Card image color presets (placeholders) */
.ci-1 { background: linear-gradient(135deg, #1B4332, #40916C); }
.ci-2 { background: linear-gradient(135deg, #155E7A, #3AA0C5); }
.ci-3 { background: linear-gradient(135deg, #5C3D11, #9A6B30); }
.ci-4 { background: linear-gradient(135deg, #2D6A4F, #74C69D); }
.ci-5 { background: linear-gradient(135deg, #0d4c2a, #2D6A4F); }
.ci-6 { background: linear-gradient(135deg, #1a5e20, #4CAF50); }
.ci-7 { background: linear-gradient(135deg, #5c2a2a, #c0392b); }
.ci-8 { background: linear-gradient(135deg, #8B6914, #F4D160); }

.card-body  { padding: 1.5rem; }
.card-cat   { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--c-primary); margin-bottom: .4rem; }
.card-body h3 { margin-bottom: .7rem; font-size: 1.25rem; }
.card-body p  { font-size: .93rem; }

/* ============================================================
   GREEN BAND (CTA)
   ============================================================ */
.green-band {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.green-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.green-band h2 { color: var(--c-white); position: relative; }
.green-band p  { color: rgba(255,255,255,.82); max-width: 500px; margin: 1rem auto 2.5rem; font-size: 1.1rem; position: relative; }
.green-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   INSTAGRAM STRIP
   ============================================================ */
.insta-strip {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  padding: 3rem 0;
  text-align: center;
  color: var(--c-white);
}
.insta-strip h3  { color: var(--c-white); margin-bottom: .5rem; }
.insta-strip p   { color: rgba(255,255,255,.85); margin-bottom: 1.75rem; }
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--c-white);
  color: #833ab4;
  padding: .75rem 2rem;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: .95rem;
  transition: var(--t);
}
.btn-insta svg { width: 22px; height: 22px; }
.btn-insta:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(0,0,0,.25); }

/* ============================================================
   AMENITIES (Camping)
   ============================================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
}
.amenity {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  border-bottom: 3px solid transparent;
}
.amenity:hover { border-bottom-color: var(--c-primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.amenity-icon  { font-size: 2.8rem; margin-bottom: 1rem; }
.amenity h4    { color: var(--c-primary-dark); margin-bottom: .4rem; }
.amenity p     { font-size: .88rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--c-white);
  color: var(--c-muted);
  border: 2px solid transparent;
  padding: .45rem 1.2rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--t);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid .gi-wide  { grid-column: span 2; }
.gallery-grid .gi-tall  { grid-row:    span 2; }

.gallery-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  cursor: pointer;
}
.gallery-thumb {
  width: 100%; height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform .55s ease;
}
.gallery-item:hover .gallery-thumb { transform: scale(1.06); }

/* Gallery placeholder colors */
.gt-1 { background: linear-gradient(135deg, #1B4332, #40916C); }
.gt-2 { background: linear-gradient(135deg, #155E7A, #3AA0C5); }
.gt-3 { background: linear-gradient(135deg, #5C3D11, #C9941A); }
.gt-4 { background: linear-gradient(135deg, #2D6A4F, #95D5B2); }
.gt-5 { background: linear-gradient(135deg, #0d2b1e, #2D6A4F); }
.gt-6 { background: linear-gradient(135deg, #4a1942, #833ab4); }
.gt-7 { background: linear-gradient(135deg, #40916C, #D8F3DC); }
.gt-8 { background: linear-gradient(135deg, #8B6914, #F4D160); }
.gt-9 { background: linear-gradient(135deg, #1B4332, #52B788); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,67,50,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.gallery-overlay svg { color: var(--c-white); opacity: 0; transition: var(--t); width: 40px; height: 40px; }
.gallery-item:hover .gallery-overlay { background: rgba(27,67,50,.40); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: var(--c-white);
  font-size: .85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--t);
}
.gallery-item:hover .gallery-caption { transform: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; border-radius: var(--r-sm); }
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   LOCATION PAGE
   ============================================================ */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 460px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.nav-apps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.nav-app {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--t);
}
.nav-app:hover { border-color: var(--c-primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.nav-app-icon { width: 46px; height: 46px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.nav-app-info strong { display: block; color: var(--c-text); font-weight: 800; }
.nav-app-info span   { font-size: .82rem; color: var(--c-muted); }

.directions-box {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.directions-box h4    { color: var(--c-primary-dark); margin-bottom: 1rem; }
.directions-box ol    { padding-left: 1.5rem; }
.directions-box ol li { color: var(--c-muted); margin-bottom: .5rem; font-size: .95rem; }
.route-title          { font-weight: 800; color: var(--c-primary); margin-top: 1.25rem; margin-bottom: .4rem; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--c-primary-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-primary);
}
.contact-icon svg    { width: 22px; height: 22px; }
.contact-card strong { display: block; color: var(--c-text); font-weight: 800; margin-bottom: .2rem; }
.contact-card a,
.contact-card span   { color: var(--c-muted); font-size: .95rem; }
.contact-card a:hover { color: var(--c-primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-primary-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer .logo  { margin-bottom: 1rem; }
.footer-desc   { color: rgba(255,255,255,.58); font-size: .9rem; margin-bottom: 1.5rem; line-height: 1.7; }

.social-links  { display: flex; gap: .75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  transition: var(--t);
}
.social-link svg    { width: 20px; height: 20px; }
.social-link:hover  { background: var(--c-primary-light); transform: translateY(-3px); }

.footer-col h4 {
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.footer-col ul li   { margin-bottom: .6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.58);
  font-size: .9rem;
  transition: var(--t);
}
.footer-col ul li a:hover { color: var(--c-primary-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .9rem;
  color: rgba(255,255,255,.58);
  font-size: .88rem;
}
.footer-contact-item svg  { color: var(--c-primary-light); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.footer-contact-item a    { color: rgba(255,255,255,.58); transition: var(--t); }
.footer-contact-item a:hover { color: var(--c-primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .83rem; }
.footer-bottom a { color: rgba(255,255,255,.35); transition: var(--t); }
.footer-bottom a:hover { color: var(--c-primary-light); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.wpp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 62px; height: 62px;
  background: var(--c-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--t);
  animation: pulse-wpp 2.6s infinite;
}
.wpp-float svg  { width: 34px; height: 34px; color: var(--c-white); }
.wpp-float:hover { transform: scale(1.14); animation: none; box-shadow: 0 6px 28px rgba(37,211,102,.55); }

@keyframes pulse-wpp {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0);  }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0);   }
}

.back-top {
  position: fixed;
  bottom: 2rem; right: 5.8rem;
  z-index: 999;
  width: 46px; height: 46px;
  background: var(--c-primary);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t), background var(--t);
}
.back-top svg      { width: 20px; height: 20px; }
.back-top.visible  { opacity: 1; pointer-events: all; }
.back-top:hover    { background: var(--c-primary-dark); transform: translateY(-3px); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 64px;
  background: var(--c-cream);
  clip-path: ellipse(65% 100% at 50% 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { color: var(--c-white); margin-bottom: .5rem; }
.page-hero-content p  { color: rgba(255,255,255,.85); font-size: 1.1rem; }

/* Page-specific hero backgrounds */
.ph-atracoes  { background: linear-gradient(135deg, rgba(27,67,50,.75), rgba(64,145,108,.75)), linear-gradient(135deg, #0d2b1e, #2D6A4F, #52B788); }
.ph-eventos   { background: linear-gradient(135deg, rgba(90,55,10,.78), rgba(196,148,26,.6)),  linear-gradient(135deg, #3d2200, #8B6914, #D4AC0D); }
.ph-acampa    { background: linear-gradient(135deg, rgba(10,28,18,.82), rgba(27,67,50,.7)),    linear-gradient(135deg, #050f09, #1B4332, #2D6A4F); }
.ph-galeria   { background: linear-gradient(135deg, rgba(27,67,50,.75), rgba(82,183,136,.6)),  linear-gradient(135deg, #1B4332, #40916C, #74C69D); }
.ph-localizacao { background: linear-gradient(135deg, rgba(10,28,18,.8), rgba(64,145,108,.6)), linear-gradient(135deg, #050f09, #1B4332, #40916C); }

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave { line-height: 0; overflow: hidden; }
.wave svg { display: block; width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-main { height: 320px; }
  .about-img-accent { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(27,67,50,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: .5rem;
    align-items: stretch;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open  { display: flex; }
  .nav-links a     { padding: .8rem 1rem; font-size: .95rem; }
  .nav-actions     { display: none; }
  .hamburger       { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gi-wide,
  .gallery-grid .gi-tall { grid-column: auto; grid-row: auto; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .hero-btns  { flex-direction: column; }
  .nav-apps   { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}
