:root {
  --brand: #03983c;
  --brand-dark: #026b2b;
  --accent: #ffb703;
  --ink: #17211b;
  --muted: #5f6f65;
  --surface: #ffffff;
  --soft: #f3f7f1;
  --dark: #0b1f13;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.mt-24 { margin-top: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--brand); box-shadow: 0 12px 30px rgba(3, 152, 60, .25); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-light { color: var(--brand-dark); background: #fff; }
.btn-outline { color: #fff; border: 1px solid rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .08); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(23, 33, 27, .08);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 88px; }
.logo img { width: 196px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; color: var(--ink); font-weight: 700; }
.main-nav a { opacity: .86; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--brand); opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { color: var(--brand-dark); font-weight: 800; }
.menu-toggle { display: none; border: 0; background: none; color: var(--ink); font: inherit; font-weight: 800; cursor: pointer; }

.package-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(3, 35, 18, .36), rgba(3, 35, 18, .36)),
    url('../img/slider1.jpg') center center / cover no-repeat;
}
.package-hero-content { position: relative; z-index: 1; max-width: 820px; padding: 118px 0 150px; }
.eyebrow { color: var(--accent); font-size: .86rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.package-hero h1 { margin: 16px 0 20px; font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: .98; letter-spacing: -.06em; }
.package-hero p { max-width: 700px; margin: 0 0 30px; color: rgba(255, 255, 255, .88); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-actions, .hero-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { gap: 12px; margin-top: 34px; }
.badge { padding: 10px 14px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; background: rgba(255, 255, 255, .1); font-weight: 800; }

.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--dark); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2, .cta h2 { margin: 8px 0 14px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: rgba(255, 255, 255, .72); }

.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.summary-card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(3, 152, 60, .1);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .08);
}
.summary-card span { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px; border-radius: 16px; background: rgba(3, 152, 60, .1); color: var(--brand-dark); font-size: 1.4rem; font-weight: 900; }
.summary-card h2 { margin: 0 0 8px; font-size: 1.2rem; }
.summary-card p { margin: 0; color: var(--muted); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 34px; align-items: start; }
.content-main { display: grid; gap: 28px; }
.info-block {
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(3, 152, 60, .1);
  box-shadow: var(--shadow);
}
.feature-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-box { padding: 24px; border-radius: 22px; border: 1px solid rgba(23, 33, 27, .08); }
.feature-box.positive { background: rgba(3, 152, 60, .06); }
.feature-box.neutral { background: rgba(255, 183, 3, .08); }
.feature-box h3 { margin: 0 0 18px; font-size: 1.25rem; }
.feature-list { display: grid; gap: 14px; }
.feature-list li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; color: var(--muted); }
.feature-list strong { color: var(--ink); }
.check, .minus { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; font-weight: 900; }
.check { color: var(--brand); background: rgba(3, 152, 60, .12); }
.minus { color: #8a5a00; background: rgba(255, 183, 3, .18); }
.notice-box { margin-top: 22px; padding: 18px 20px; border-left: 5px solid var(--accent); border-radius: 16px; background: rgba(255, 183, 3, .12); color: var(--ink); }

.accordion-list { display: grid; gap: 14px; }
details { border: 1px solid rgba(3, 152, 60, .12); border-radius: 18px; background: #fff; overflow: hidden; }
summary { padding: 18px 20px; color: var(--brand-dark); font-weight: 900; cursor: pointer; }
details p { margin: 0; padding: 0 20px 18px; color: var(--muted); }
details p + p { padding-top: 0; }

.booking-card { position: sticky; top: 112px; }
.booking-card-inner {
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(155deg, rgba(3, 152, 60, .96), rgba(2, 66, 29, .98)),
    url('../img/pescadouradosalto7.jpg') center / cover no-repeat;
  box-shadow: var(--shadow);
}
.booking-card .eyebrow { color: var(--accent); }
.price { margin: 10px 0 0; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; font-weight: 900; letter-spacing: -.05em; }
.booking-card p { margin: 4px 0 20px; color: rgba(255, 255, 255, .8); }
.booking-card h2 { margin: 0 0 16px; font-size: 1.35rem; line-height: 1.15; }
.booking-list { display: grid; gap: 10px; margin: 0 0 24px; color: rgba(255, 255, 255, .86); }
.booking-list li::before { content: '✓'; margin-right: 8px; color: var(--accent); font-weight: 900; }
.booking-card .btn { width: 100%; }

.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery a { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 18px; background: rgba(255, 255, 255, .08); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery a:hover img { transform: scale(1.07); }

.cta { padding: 76px 0; }
.cta-card {
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(3, 152, 60, .1);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(3, 152, 60, .1), rgba(255, 183, 3, .14)), #fff;
}
.cta-card p { margin: 0; color: var(--muted); }

.site-footer { padding: 64px 0 28px; color: #fff; background: #07130c; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 34px; }
.site-footer h2, .site-footer h3 { margin-top: 0; }
.site-footer a { color: rgba(255, 255, 255, .82); }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .6); font-size: .92rem; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 30; display: inline-flex; align-items: center; justify-content: center; padding: 14px 18px; border-radius: 999px; color: #fff; background: #25d366; box-shadow: 0 16px 40px rgba(0, 0, 0, .22); font-weight: 900; }

@media (max-width: 1040px) {
  .content-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .main-nav, .header-actions .phone-link { display: none; }
  .main-nav.is-open { position: absolute; top: 88px; left: 16px; right: 16px; display: grid; gap: 14px; padding: 22px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
  .summary-grid, .feature-columns, .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .logo img { width: 160px; }
  .package-hero { min-height: 660px; }
  .package-hero-content { padding: 92px 0 118px; }
  .section { padding: 68px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .info-block, .booking-card-inner, .cta-card { padding: 24px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .cta-card { display: block; }
  .whatsapp-float { right: 16px; left: 16px; }
}
