:root {
  --primary: #5561c9;
  --secondary: #8752d8;
  --accent: #f2cb37;
  --bg: #f6f8ff;
  --card: rgba(255,255,255,0.82);
  --text: #1b2040;
  --muted: #5d678b;
  --border: rgba(85, 97, 201, 0.14);
  --shadow: 0 18px 45px rgba(39, 49, 110, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #edf1ff 0%, #ffffff 24%, #f8f9ff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  font-size: .92rem;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 0;
}
.topbar p { margin: 0; }
.lang-toggle, .menu-toggle {
  border: 0; border-radius: 999px; padding: 10px 14px; cursor: pointer; font-weight: 700;
  background: rgba(255,255,255,.15); color: white;
}
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(85, 97, 201, .08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
  width: 56px; height: 56px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow);
}
.brand strong { display:block; font-size: 1.05rem; }
.brand span { display:block; font-size: .8rem; color: var(--muted); }
.menu { display: flex; align-items: center; gap: 22px; }
.menu a { font-weight: 600; color: var(--muted); }
.menu a:hover { color: var(--primary); }
.menu-toggle { display:none; background: var(--primary); }
.hero { position: relative; min-height: 92vh; display:flex; align-items:center; overflow: hidden; }
.hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(115deg, rgba(11,17,44,.82) 0%, rgba(29,44,98,.52) 34%, rgba(85,97,201,.18) 68%, rgba(255,255,255,.12) 100%);
}
.hero-content {
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.2fr .65fr; gap: 28px; align-items:end;
  padding: 72px 0;
}
.hero-copy { color:white; max-width: 680px; }
.eyebrow, .section-tag {
  display:inline-flex; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.14); color: white; font-size:.86rem; font-weight:700; letter-spacing:.03em;
  backdrop-filter: blur(10px);
}
.hero h1 {
  font-family:'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 4.9rem); line-height:1.02; margin: 16px 0;
}
.hero p { font-size: 1.05rem; line-height: 1.8; max-width: 620px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius: 999px; padding: 15px 24px; font-weight:700; transition: .3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(90deg, var(--accent), #ffd85f); color: #1c2145; box-shadow: 0 12px 30px rgba(242,203,55,.3); }
.btn-secondary { background: rgba(255,255,255,.16); color:white; border:1px solid rgba(255,255,255,.28); }
.hero-card {
  background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.2); border-radius: 30px; padding: 26px; backdrop-filter: blur(16px); box-shadow: var(--shadow); color:white;
}
.stat + .stat { margin-top: 18px; padding-top: 18px; border-top:1px solid rgba(255,255,255,.18); }
.stat strong { display:block; font-size:2rem; }
.section { padding: 90px 0; }
.grid-2 { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; align-items:center; }
.intro h2, .section-head h2, .video-section h2, .contact-section h2 {
  font-family:'Playfair Display', serif; font-size: clamp(2rem, 3vw, 3.2rem); margin: 18px 0 14px;
}
.intro p, .section-head p, .video-section p, .contact-section p { color: var(--muted); line-height: 1.9; }
.section-tag { background: rgba(85,97,201,.1); color: var(--primary); }
.info-panel {
  display:grid; gap:16px; background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(241,244,255,.9)); border:1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.info-panel article { padding: 12px 0; }
.info-panel article + article { border-top:1px solid var(--border); }
.info-panel h3 { margin: 0 0 8px; }
.social-grid, .contact-cards {
  display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:18px;
}
.social-card, .contact-card {
  background: white; border:1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
  display:flex; justify-content:space-between; gap:16px; align-items:end;
}
.social-card span, .contact-card strong { color: var(--muted); display:block; }
.social-card strong, .contact-card span { font-size:1.1rem; margin-top: 6px; }
.gallery-grid {
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:16px;
}
.gallery-item {
  background: white; border:1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); cursor:pointer; padding:0;
  aspect-ratio: 1 / 1;
}
.gallery-item img { width:100%; height:100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.video-grid { align-items: center; }
.video-frame {
  position:relative; width:100%; padding-top:177.77%; border-radius: 28px; overflow:hidden; box-shadow: var(--shadow); border:1px solid var(--border); background:#000;
}
.video-frame iframe { position:absolute; inset:0; width:100%; height:100%; }
.contact-grid {
  display:grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items:start;
}
.map-wrap {
  margin-top: 18px; border-radius: 26px; overflow:hidden; border:1px solid var(--border); box-shadow: var(--shadow);
}
.map-wrap iframe { width:100%; height:320px; border:0; }
.form-card {
  background: white; border:1px solid var(--border); border-radius: 28px; padding: 30px; box-shadow: var(--shadow);
}
.field-row { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px; }
.form-card input, .form-card textarea {
  width:100%; border:1px solid rgba(85,97,201,.14); border-radius: 18px; background:#f8faff; padding: 16px 18px; margin-top: 14px; outline:none;
}
.form-card input:focus, .form-card textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(85,97,201,.1); }
.btn-full { width:100%; margin-top: 16px; border:0; cursor:pointer; }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; width: 62px; height: 62px; border-radius: 50%;
  display:grid; place-items:center; background: #25d366; color:white; box-shadow: 0 18px 40px rgba(37,211,102,.35); z-index:60;
}
.floating-whatsapp svg { width: 34px; fill: currentColor; }
.lightbox {
  position: fixed; inset: 0; background: rgba(8, 12, 32, .88); display:none; align-items:center; justify-content:center; padding: 20px; z-index: 100;
}
.lightbox.is-open { display:flex; }
.lightbox img { max-width:min(100%, 1000px); max-height: 84vh; border-radius: 24px; box-shadow: var(--shadow); }
.lightbox-close {
  position:absolute; top:18px; right:18px; border:0; background:white; color:#1d2453; width:46px; height:46px; border-radius:50%; font-size:1.8rem; cursor:pointer;
}
.footer {
  padding: 28px 0 40px; background: #101735; color: rgba(255,255,255,.88);
}
.footer-inner { display:flex; justify-content:space-between; gap: 20px; align-items:center; }
.footer p { margin: 6px 0 0; color: rgba(255,255,255,.72); }
.footer a { color: white; }
.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity:1; transform:none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
@media (max-width: 980px) {
  .hero-content, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .hero { min-height: auto; }
}
@media (max-width: 760px) {
  .menu-toggle { display:block; }
  .menu {
    position:absolute; top:100%; left:16px; right:16px; display:none; flex-direction:column; align-items:flex-start; padding:18px;
    background:white; border-radius: 22px; box-shadow: var(--shadow); border:1px solid var(--border);
  }
  .menu.is-open { display:flex; }
  .hero-content { padding: 60px 0; }
  .social-grid, .contact-cards, .field-row, .footer-inner { grid-template-columns: 1fr; display:grid; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .topbar-inner { align-items:flex-start; }
  .brand span { display:none; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 22px, 1120px); }
  .hero h1 { font-size: 2.45rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap:12px; }
  .section { padding: 70px 0; }
  .social-card, .contact-card, .form-card, .info-panel { padding: 20px; }
}
