/* ================================================
   CASA PORTO MARAVILHA — CSS PRINCIPAL
   Paleta: Dourado âmbar · Creme · Chumbo escuro
   Fontes: Cormorant Garamond (títulos) + DM Sans
   ================================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #F9F8F5;
  color: #1A1A18;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- VARIÁVEIS ---- */
:root {
  --gold:       #C9912A;
  --gold-light: #E8A93C;
  --gold-pale:  #F5E6C8;
  --dark:       #1A1A18;
  --dark2:      #2C2C28;
  --gray:       #6B6B65;
  --gray-light: #EBEBEA;
  --cream:      #F9F8F5;
  --white:      #FFFFFF;
  --wa-green:   #25D366;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --trans:      0.25s ease;
  --max-w:      1200px;
}

/* ---- UTILITIES ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.d-none-mobile { display: inline; }
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.eyebrow.light { color: var(--gold-light); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-desc { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
  text-decoration: none;
}
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(232,169,60,0.5);
  padding: 12px 24px;
}
.btn-outline-gold:hover { background: rgba(232,169,60,0.1); border-color: var(--gold-light); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR
━━━━━━━━━━━━━━━━━━━━━━━ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
.navbar.scrolled {
  background: rgba(25,25,23,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 10px 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
}
.nav-logo img { width: 38px; height: 38px; border-radius: 50%; object-fit: contain; background: transparent; }
.nav-logo span { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; letter-spacing: 0.02em; }
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-wa {
  background: var(--wa-green) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 8px 16px !important;
  display: flex; align-items: center; gap: 6px;
}
.nav-wa:hover { background: #1ebe5d !important; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  padding: 4px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s ease;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(15,15,12,0.72) 0%, rgba(15,15,12,0.45) 55%, rgba(15,15,12,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 820px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-location {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.9);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
  line-height: 1.7;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 14px 30px;
  display: inline-flex;
}
.hstat { text-align: center; padding: 0 24px; }
.hstat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hstat span { font-size: 0.75rem; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; margin-top: 2px; display: block; }
.hstat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)} }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   TRUST STRIP
━━━━━━━━━━━━━━━━━━━━━━━ */
.trust-strip {
  background: var(--dark);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-ico { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; color: #fff; font-size: 0.92rem; font-weight: 600; margin-bottom: 3px; }
.trust-item span { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.4; }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   ANFITRIÃO
━━━━━━━━━━━━━━━━━━━━━━━ */
.host-section {
  padding: 90px 0;
  background: var(--cream);
}
.host-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.host-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.host-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.host-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
.host-text h2 em { font-style: italic; color: var(--gold); }
.host-text p { color: var(--gray); font-size: 1rem; margin-bottom: 16px; line-height: 1.75; }
.host-text .btn-dark { margin-top: 12px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   ACOMODAÇÕES
━━━━━━━━━━━━━━━━━━━━━━━ */
.prop-block {
  margin-bottom: 72px;
}
.prop-block-alt { margin-bottom: 0; }
.prop-label {
  margin-bottom: 36px;
}
.prop-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem,3vw,2.1rem);
  font-weight: 600;
  margin-bottom: 8px;
}
.prop-label p { color: var(--gray); font-size: 0.98rem; }
.nearby-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(201,145,42,0.3);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.unit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
}
.unit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.unit-card:hover .card-img-wrap img { transform: scale(1.05); }
.card-type-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(25,25,23,0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.card-body { padding: 20px; }
.card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; margin-bottom: 4px; }
.card-guests { font-size: 0.82rem; color: var(--gray); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.card-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.55; margin-bottom: 12px; }
.card-amenities {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.card-amenities span {
  background: var(--gray-light);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #444;
}
.card-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.card-btns .btn { flex: 1; justify-content: center; font-size: 0.82rem; padding: 10px 14px; }
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--gray-light);
}
.btn-outline-dark:hover { background: var(--gray-light); border-color: #ccc; }

/* Pedro Alves card */
.pedro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pedro-img { position: relative; min-height: 420px; }
.pedro-img img { width: 100%; height: 100%; object-fit: cover; }
.pedro-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.badge-pill {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.pedro-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 600;
  margin-bottom: 12px; line-height: 1.2;
}
.pedro-body p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.amenity-list { margin-bottom: 26px; }
.amenity-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--gray);
  padding: 5px 0; border-bottom: 1px solid var(--gray-light);
}
.amenity-list li:last-child { border-bottom: none; }
.amenity-list li span { font-size: 1rem; flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   ÁREA COMPARTILHADA
━━━━━━━━━━━━━━━━━━━━━━━ */
.area-section { background: var(--dark2); color: #fff; }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.area-gallery-col { display: flex; flex-direction: column; gap: 0; }
.area-main-img { flex: 1; min-height: 400px; overflow: hidden; }
.area-main-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.area-main-img:hover img { transform: scale(1.03); }
.area-thumbs {
  display: grid; grid-template-columns: repeat(3,1fr);
  height: 140px; gap: 2px;
}
.area-thumbs img { width:100%; height:100%; object-fit:cover; }
.area-content {
  padding: 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.area-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 600; line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
.area-content h2 em { font-style: italic; color: var(--gold-light); }
.area-content p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.75; margin-bottom: 24px; }
.area-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 18px;
}
.area-badges span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.area-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   LOCALIZAÇÃO
━━━━━━━━━━━━━━━━━━━━━━━ */
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.loc-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}
.loc-item:last-of-type { border-bottom: none; }
.loc-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.loc-item strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.loc-item span { font-size: 0.86rem; color: var(--gray); line-height: 1.5; }
.loc-alert {
  display: flex; align-items: flex-start; gap: 12px;
  background: #FFF8E8;
  border: 1px solid rgba(201,145,42,0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: #7A5A1A;
  line-height: 1.55;
}
.loc-alert span { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 460px;
  position: sticky; top: 90px;
}
.location-map iframe { width:100%; height:100%; border:0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   GRUPOS
━━━━━━━━━━━━━━━━━━━━━━━ */
.grupos-section {
  background: linear-gradient(135deg, #1A1A18 0%, #2C2C28 100%);
  padding: 90px 0;
  color: #fff;
}
.grupos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grupos-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 600; line-height: 1.2;
  margin-bottom: 18px;
}
.grupos-text h2 em { font-style: italic; color: var(--gold-light); }
.grupos-text p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.75; margin-bottom: 22px; }
.grupos-list { margin-bottom: 30px; }
.grupos-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.grupos-list li:last-child { border-bottom: none; }
.grupos-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.grupos-img img { width:100%; height:100%; object-fit:cover; }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   REGRAS
━━━━━━━━━━━━━━━━━━━━━━━ */
.regras-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.regra-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 3px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform var(--trans);
}
.regra-card:hover { transform: translateY(-4px); }
.regra-icon { font-size: 2rem; margin-bottom: 4px; }
.regra-card strong { font-size: 1rem; font-weight: 700; }
.regra-card span { font-size: 0.88rem; color: var(--gray); line-height: 1.5; }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   CTA
━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #A8771D 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 10px;
}
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-action { text-align: center; }
.cta-action .btn-wa {
  background: var(--dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  color: #fff;
}
.cta-action .btn-wa:hover { background: #111; transform: translateY(-3px); }
.cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 10px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  width: 56px; height: 56px;
  border-radius: 50%; object-fit: contain;
  margin-bottom: 14px; background: transparent;
}
.footer-brand strong { color: #fff; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 2px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color var(--trans);
}
.footer-col a:hover { color: #fff; }
.footer-contact-link {
  display: flex !important; align-items: center; gap: 8px;
}
.footer-btn-wa { margin-top: 14px; justify-content: center; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   FLOATING WHATSAPP
━━━━━━━━━━━━━━━━━━━━━━━ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-weight: 600; font-size: 0.9rem;
  transition: all var(--trans);
}
.float-wa:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   MODAL GALERIA
━━━━━━━━━━━━━━━━━━━━━━━ */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  pointer-events: none;
  opacity: 0; transition: opacity 0.3s ease;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,8,0.85);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 960px;
  max-height: 90vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.modal.open .modal-box { transform: scale(1); }
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-light);
  flex-shrink: 0;
}
.modal-head h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; }
.modal-actions { display: flex; align-items: center; gap: 10px; }
.modal-close {
  background: var(--gray-light); border: none;
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: background var(--trans);
}
.modal-close:hover { background: #ddd; }
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  overflow-y: auto;
  padding: 16px;
}
.modal-gallery img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: opacity var(--trans);
}
.modal-gallery img:hover { opacity: 0.9; }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — TABLET
━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .host-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .host-photo-wrap { aspect-ratio: 1/1; }

  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .pedro-card { grid-template-columns: 1fr; }
  .pedro-img { min-height: 280px; aspect-ratio: 16/7; }

  .area-inner { grid-template-columns: 1fr; }
  .area-gallery-col { min-height: 340px; }
  .area-main-img { min-height: 280px; }
  .area-content { padding: 48px 40px; }

  .location-inner { grid-template-columns: 1fr; }
  .location-map { position: static; height: 340px; margin-top: 8px; }

  .grupos-inner { grid-template-columns: 1fr; }
  .grupos-img { aspect-ratio: 16/7; }

  .regras-grid { grid-template-columns: repeat(2,1fr); }
  .cta-inner { text-align: center; justify-content: center; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — MOBILE
━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 680px) {
  .d-none-mobile { display: none; }
  .section { padding: 60px 0; }
  .navbar { padding: 12px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-links {
    display: none;
    position: fixed; inset: 0; top: 62px;
    background: rgba(20,20,18,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 1.05rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links a:hover { background: rgba(255,255,255,0.06); }
  .nav-wa { border-radius: 50px !important; width: 80%; margin: 16px auto 0 !important; }
  .nav-toggle { display: flex; }

  .hero-stats { flex-wrap: wrap; border-radius: var(--radius); padding: 16px 20px; gap: 12px; }
  .hstat-sep { display: none; }
  .hstat { padding: 0 12px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-bottom: none; }

  .host-inner { grid-template-columns: 1fr; gap: 32px; }
  .host-photo-wrap { aspect-ratio: 1/1; max-width: 280px; margin: 0 auto; }

  .cards-grid { grid-template-columns: 1fr; }
  .pedro-body { padding: 28px 20px; }
  .area-content { padding: 36px 24px; }
  .area-thumbs { height: 100px; }
  .regras-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .regra-card { padding: 20px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
  .modal-gallery { grid-template-columns: repeat(2,1fr); }
  .modal-head { flex-wrap: wrap; gap: 10px; }
}
