@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Montserrat:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  background: oklch(0.14 0.03 260);
  color: oklch(0.95 0.01 260);
  font-family: 'Montserrat', Arial, sans-serif;
  overflow-x: hidden;
}

a { color: oklch(0.78 0.13 230); text-decoration: none; }
a:hover { color: oklch(0.85 0.13 230); }
::selection { background: oklch(0.4 0.13 250); color: #fff; }
img { max-width: 100%; }

.container { background: oklch(0.14 0.03 260); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 6vw;
  background: oklch(0.12 0.03 260 / 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: 44px; object-fit: contain; filter: invert(1) brightness(1.4); }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; letter-spacing: 0.5px; }
.brand-sub { font-weight: 400; font-size: 14px; opacity: 0.7; display: block; letter-spacing: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 14px; font-weight: 500; }
.btn-cta {
  background: oklch(0.55 0.15 235); color: #fff; padding: 10px 22px;
  border-radius: 999px; font-weight: 600; font-size: 14px; transition: background .2s;
}
.btn-cta:hover { background: oklch(0.6 0.15 235); color: #fff; }

/* Hero */
.hero {
  position: relative; display: grid; grid-template-columns: 1.1fr 1fr;
  align-items: center; min-height: 640px; padding: 60px 6vw; gap: 40px;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, oklch(0.28 0.08 250 / 0.5), transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.eyebrow {
  display: inline-block; padding: 6px 16px; border: 1px solid oklch(0.6 0.13 230 / 0.5);
  border-radius: 999px; font-size: 12px; letter-spacing: 2px; font-weight: 600;
  color: oklch(0.78 0.13 230); margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.08; font-weight: 800; margin: 0 0 20px; text-wrap: pretty;
}
.hero p {
  font-size: 18px; line-height: 1.6; color: oklch(0.85 0.02 260);
  max-width: 520px; margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: oklch(0.55 0.15 235); color: #fff; padding: 16px 32px;
  border-radius: 999px; font-weight: 700; font-size: 16px; transition: background .2s;
}
.btn-primary:hover { background: oklch(0.6 0.15 235); color: #fff; }
.btn-outline {
  border: 1px solid oklch(1 0 0 / 0.25); color: #fff; padding: 16px 32px;
  border-radius: 999px; font-weight: 600; font-size: 16px; transition: border-color .2s;
}
.btn-outline:hover { border-color: oklch(1 0 0 / 0.5); color: #fff; }
.hero-image {
  position: relative; z-index: 1; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px oklch(0 0 0 / 0.5); aspect-ratio: 3/4;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Strip */
.strip {
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
  padding: 32px 6vw; border-top: 1px solid oklch(1 0 0 / 0.08); border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.strip-item { text-align: center; }
.strip-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: oklch(0.78 0.13 230); }
.strip-label { font-size: 13px; opacity: 0.7; }

/* Plans */
.plans-section { padding: 100px 6vw; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-eyebrow { font-size: 13px; letter-spacing: 2px; font-weight: 600; color: oklch(0.78 0.13 230); margin-bottom: 12px; }
.section-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.5vw, 44px); font-weight: 800; margin: 0 0 16px; }
.section-head p { font-size: 16px; color: oklch(0.85 0.02 260); line-height: 1.6; }
.plan-group-head { max-width: 1180px; margin: 0 auto 24px; display: flex; align-items: center; gap: 16px; }
.plan-group-head h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin: 0; color: oklch(0.9 0.02 260); }
.plan-group-tag {
  font-size: 12px; padding: 5px 12px; border-radius: 999px; border: 1px solid oklch(0.6 0.13 230 / 0.4);
  color: oklch(0.78 0.13 230); font-weight: 600;
}
.plans-grid { max-width: 1180px; margin: 0 auto 64px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.plans-grid.last { margin-bottom: 0; }
.plan-card {
  position: relative; background: linear-gradient(160deg, oklch(0.2 0.05 255), oklch(0.15 0.04 258));
  border: 1px solid oklch(1 0 0 / 0.1); border-radius: 18px; padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.plan-card.flex { background: oklch(0.18 0.03 258 / 0.6); border-color: oklch(1 0 0 / 0.08); }
.plan-badge {
  position: absolute; top: -12px; right: 24px; background: oklch(0.55 0.15 235); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 6px 14px; border-radius: 999px;
}
.plan-name { font-size: 12px; letter-spacing: 1.5px; font-weight: 600; color: oklch(0.7 0.02 260); text-transform: uppercase; }
.plan-price-row { display: flex; align-items: baseline; gap: 6px; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 800; }
.plan-price.small { font-size: 34px; }
.plan-period { font-size: 14px; opacity: 0.7; }
.plan-schedule { font-size: 13px; color: oklch(0.75 0.02 260); border-top: 1px solid oklch(1 0 0 / 0.08); padding-top: 16px; }
.plan-btn {
  margin-top: 8px; text-align: center; background: oklch(0.55 0.15 235); color: #fff;
  padding: 14px; border-radius: 12px; font-weight: 700; font-size: 14px; transition: background .2s;
}
.plan-btn:hover { background: oklch(0.6 0.15 235); color: #fff; }
.plan-btn.outline {
  background: none; border: 1px solid oklch(1 0 0 / 0.2); color: #fff; font-weight: 600; transition: border-color .2s;
}
.plan-btn.outline:hover { border-color: oklch(1 0 0 / 0.4); color: #fff; }

/* About */
.about { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: oklch(0.11 0.025 260); }
.about-image { aspect-ratio: 4/5; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content { display: flex; flex-direction: column; justify-content: center; padding: 60px 6vw; }
.about-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 38px); font-weight: 800; margin: 0 0 20px; text-wrap: pretty; }
.about-content p { font-size: 16px; line-height: 1.7; color: oklch(0.85 0.02 260); max-width: 460px; }

/* FAQ */
.faq-section { padding: 100px 6vw; max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid oklch(1 0 0 / 0.1); padding: 22px 0; cursor: pointer; }
.faq-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q { font-size: 17px; font-weight: 600; }
.faq-icon { font-size: 22px; color: oklch(0.78 0.13 230); flex-shrink: 0; }
.faq-answer {
  font-size: 15px; line-height: 1.7; color: oklch(0.8 0.02 260); margin-top: 14px;
  max-width: 640px; display: none;
}
.faq-item.open .faq-answer { display: block; }

/* Location */
.location-section { padding: 100px 6vw; background: oklch(0.11 0.025 260); }
.location-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.location-grid h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 38px); font-weight: 800; margin: 0 0 20px; }
.location-grid p { font-size: 16px; line-height: 1.7; color: oklch(0.85 0.02 260); margin-bottom: 28px; }
.location-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.map-frame { border-radius: 18px; overflow: hidden; border: 1px solid oklch(1 0 0 / 0.1); aspect-ratio: 4/3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.footer {
  padding: 56px 6vw 40px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px; border-top: 1px solid oklch(1 0 0 / 0.08);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 36px; width: 36px; object-fit: contain; filter: invert(1) brightness(1.4); }
.footer-brand span { font-size: 14px; opacity: 0.7; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; }

@media (max-width: 900px) {
  .nav-links { gap: 14px; }
  .nav-links a[href="#faq"], .nav-links a[href="#local"] { display: none; }
  .hero { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links a[href="#planos"] { display: none; }
}
