/* ══════════════════════════════════════════════════════════
   Alpha Park View — style-alpha.css v1
   Standalone CSS (desacoplado do WebAcappella)
   ══════════════════════════════════════════════════════════ */

/* ── Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f8f7f4;
  color: #1a1a1a;
  margin: 0;
  overflow-x: hidden;
}

/* ── Signature: faixa dourada no nav ─────────────── */
#main-nav {
  border-bottom: 3px solid #D1AA66;
  transition: box-shadow 0.3s ease;
}
#main-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,38,56,0.18);
}

/* ── Dropdown ────────────────────────────────────── */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #002638;
  border-top: 3px solid #D1AA66;
  z-index: 100;
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: #f0ebe3;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover {
  background: #D1AA66;
  color: #002638;
}

/* ── Nav links ───────────────────────────────────── */
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0ebe3;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: #D1AA66;
  border-bottom-color: #D1AA66;
}

/* ── Hero Swiper ─────────────────────────────────── */
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 480px;
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,26,40,0.18) 0%,
    rgba(0,26,40,0.52) 60%,
    rgba(0,26,40,0.78) 100%
  );
}
.swiper-pagination-bullet {
  background: #D1AA66 !important;
  opacity: 0.55;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 28px !important;
  border-radius: 5px !important;
  transition: width 0.3s ease !important;
}

/* ── Hero copy ───────────────────────────────────── */
.hero-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 2.5rem 1.5rem 3.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-copy { padding: 3rem 2rem 5rem; }
}

/* ── Gold divider ────────────────────────────────── */
.gold-divider {
  width: 50%;
  max-width: 480px;
  height: 3px;
  background: #D1AA66;
  margin: 0 auto;
}

/* ── Placeholder sections ────────────────────────── */
.section-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 2px dashed #D1AA6660;
  border-radius: 8px;
  margin: 2rem;
  padding: 2rem;
  background: #f0ede6;
  color: #AE9574;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.section-placeholder h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #002638;
  margin-bottom: 0.5rem;
}

/* ── Feature cards (Diferenciais) ────────────────── */
.feature-card {
  background: #002638;
  border: 1px solid rgba(209,170,102,0.2);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: #D1AA66;
  transform: translateY(-4px);
}
.feature-card .icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D1AA66;
}

/* ── Footer ──────────────────────────────────────── */
#footer {
  background: #002638;
  color: #f0ebe3;
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #D1AA66;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-link {
  color: #c8bfb0;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-link:hover { color: #D1AA66; }
.footer-bottom {
  background: #001A28;
  border-top: 1px solid #D1AA6630;
}

/* ── CTA botão dourado ───────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #D1AA66;
  color: #002638;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-gold:hover {
  background: #c09a52;
  transform: translateY(-1px);
}

/* ── Mobile drawer ───────────────────────────────── */
#mobile-drawer {
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-drawer.open {
  transform: translateX(0);
}
#drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,26,40,0.55);
  z-index: 149;
}
#drawer-overlay.open { display: block; }

/* ── Pool parallax (Clube) ────────────────────────── */
.pool-parallax {
  width: 100%;
  height: 340px;
  background-image: url('../wa_res/icons/banner-alpha-park-view-3-1.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
@media (min-width: 768px) {
  .pool-parallax {
    height: 520px;
    background-attachment: fixed;
  }
}

/* ── Interessado parallax (CTA) ────────────────── */
.interessado-parallax {
  background-image: url('../wa_res/icons/base-imagem-alpha-park-view-1.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
@media (min-width: 768px) {
  .interessado-parallax {
    background-attachment: fixed;
  }
}

/* ── Diferenciais background ─────────────────────── */
.diferenciais-bg {
  background-color: #D1AA66;
}

/* ── Clube Swiper (galeria lazer) ─────────────────── */
.clube-swiper {
  position: relative;
  width: 100%;
  padding-bottom: 3.5rem;
}
.clube-swiper .swiper-slide {
  width: 260px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .clube-swiper .swiper-slide { width: 300px; }
}
.clube-slide-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .clube-slide-img { height: 220px; }
}
.clube-slide-img:hover {
  transform: scale(1.03);
}
.clube-pagination .swiper-pagination-bullet {
  background: #D1AA66 !important;
}

/* ── Amenidades list ──────────────────────── */
.amenidades-list {
  list-style: none;
  counter-reset: amenidade;
  padding: 0;
  margin: 0;
  columns: 1;
}
@media (min-width: 640px) {
  .amenidades-list { columns: 2; column-gap: 2rem; }
}
.amenidades-list li {
  counter-increment: amenidade;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,38,56,0.1);
  font-size: 0.95rem;
  color: #002638;
  break-inside: avoid;
}
.amenidades-list li::before {
  content: counter(amenidade) ". ";
  font-weight: 700;
  color: #D1AA66;
  margin-right: 0.25rem;
}

/* ── Reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-swiper .swiper-slide img,
  #mobile-drawer,
  .btn-gold,
  .feature-card { transition: none !important; }
}
