:root {
  --primary: #1d4fbf;
  --secondary: #ef4b8a;
  --dark: #0e1a31;
  --text: #243042;
  --muted: #5f6c80;
  --bg: #f4f7fc;
  --white: #ffffff;
  --radius: 26px;
  --shadow: 0 18px 45px rgba(17, 30, 58, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; }
.alt { background: var(--bg); }
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(29,79,191,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 64px; height: 44px; object-fit: contain; border-radius: 10px; }
.brand strong { display: block; font-size: 1.05rem; color: var(--dark); }
.brand small { color: var(--primary); letter-spacing: .16em; text-transform: uppercase; font-size: .72rem; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle, .menu-toggle {
  border: 0; border-radius: 999px; font-weight: 800; cursor: pointer;
}
.lang-toggle {
  background: linear-gradient(135deg, var(--secondary), var(--primary)); color: #fff; min-width: 52px; min-height: 44px; padding: 0 14px;
  box-shadow: 0 10px 24px rgba(29,79,191,.16);
}
.menu { display: flex; gap: 28px; align-items: center; }
.menu a { font-weight: 600; color: var(--text); position: relative; }
.menu a::after {
  content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: linear-gradient(90deg, var(--secondary), var(--primary)); transition: width .25s ease;
}
.menu a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; font-size: 1.6rem; }
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,15,31,.88) 0%, rgba(7,15,31,.58) 42%, rgba(7,15,31,.22) 100%); }
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-copy {
  max-width: 680px; color: var(--white); background: rgba(11, 20, 37, .34); border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow); padding: 34px; border-radius: 28px; backdrop-filter: blur(10px);
}
.tag, .eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
}
.tag { background: rgba(239,75,138,.18); color: #ffd2e4; border: 1px solid rgba(255,255,255,.12); }
.eyebrow { background: rgba(29,79,191,.08); color: var(--primary); }
.hero h1 { margin: 18px 0 16px; font-family: 'Playfair Display', serif; font-size: clamp(2.35rem, 6vw, 4.8rem); line-height: 1.02; }
.hero p { font-size: 1.08rem; line-height: 1.8; color: rgba(255,255,255,.96); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px;
  border-radius: 999px; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.12); }
.btn-primary { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: var(--white); }
.btn-secondary { background: rgba(255,255,255,.14); color: var(--white); border: 1px solid rgba(255,255,255,.24); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: stretch; }
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.image-card { padding: 0; overflow: hidden; }
.image-card img { width: 100%; height: 100%; min-height: 350px; object-fit: cover; }
.card h2, .section-title h2 { margin: 12px 0 14px; color: var(--dark); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; }
.card h3 { margin-top: 0; color: var(--dark); }
.card p, .section-title p { line-height: 1.8; color: var(--muted); }
.checks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 30px; font-weight: 600; }
.checks li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--secondary); font-weight: 800; }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.destination-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.destination-card { background: var(--white); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.destination-card img { width: 100%; height: 250px; object-fit: cover; }
.destination-card div { padding: 18px; }
.destination-card h3 { margin: 0 0 10px; }
.destination-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.social-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center; }
.facebook-embed { background: var(--white); border-radius: 26px; box-shadow: var(--shadow); padding: 14px; min-height: 648px; }
.facebook-embed iframe { width: 100%; border-radius: 18px; }
.social-fallback { text-align: center; }
.social-logo { width: 100%; max-width: 300px; margin: 0 auto 18px; object-fit: contain; }
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery-item { padding: 0; border: 0; background: none; border-radius: 20px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.video-wrap { aspect-ratio: 16 / 9; background: #000; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.video-wrap iframe, .map-card iframe { width: 100%; height: 100%; border: 0; }
.contact-grid { align-items: start; }
.contact-list { display: grid; gap: 14px; margin: 22px 0 28px; }
.contact-list a, .contact-list p { margin: 0; line-height: 1.7; color: var(--text); }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px 16px; border-radius: 16px; border: 1px solid rgba(36,48,66,.12); background: #fbfdff; }
.map-card { padding: 0; overflow: hidden; min-height: 610px; }
.footer { background: var(--dark); color: rgba(255,255,255,.84); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer a { color: #fff; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; }
.whatsapp-float a { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; font-weight: 800; padding: 14px 18px; border-radius: 999px; box-shadow: 0 14px 30px rgba(37,211,102,.35); }
.lightbox { position: fixed; inset: 0; background: rgba(4,10,18,.84); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: .25s ease; z-index: 100; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(100%, 1000px); max-height: 86vh; border-radius: 22px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.16); color: #fff; font-size: 2rem; cursor: pointer; }
.fade-in-up { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
@media (max-width: 1024px) {
  .cards-3, .destination-grid, .gallery, .social-wrap, .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .menu {
    position: absolute; top: 82px; left: 16px; right: 16px; display: none; flex-direction: column; gap: 14px;
    background: rgba(255,255,255,.96); padding: 20px; border-radius: 18px; box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .hero { min-height: 82vh; }
  .hero-content { padding: 56px 0; }
  .hero-copy { padding: 24px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(7,15,31,.78), rgba(7,15,31,.4)); }
  .cards-3, .destination-grid, .gallery, .social-wrap, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .facebook-embed { min-height: 590px; }
  .facebook-embed iframe { height: 560px; }
  .map-card { min-height: 400px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
