:root {
  --bg: #f5f8fb;
  --white: #ffffff;
  --text: #173047;
  --muted: #5e6d78;
  --primary: #2d73c9;
  --primary-dark: #154a8c;
  --accent: #f46f43;
  --soft: #dcecff;
  --shadow: 0 18px 45px rgba(18, 52, 86, 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, #eef6ff 0%, #f8fbfe 35%, #ffffff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(245, 248, 251, 0.86);
  border-bottom: 1px solid rgba(45, 115, 201, 0.08);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand-mini { display: flex; gap: 12px; align-items: center; font-weight: 700; }
.brand-mini img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }
.lang-toggle {
  border: 0; background: var(--primary); color: white; border-radius: 999px;
  padding: 10px 16px; font-weight: 700; cursor: pointer;
}
.hero {
  position: relative; min-height: 90vh; 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(90deg, rgba(10,24,36,0.78) 0%, rgba(10,24,36,0.46) 35%, rgba(10,24,36,0.25) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 740px; padding: 70px 0; color: white; }
.hero-badge {
  display: inline-flex; padding: 10px 18px; border-radius: 999px; margin-bottom: 18px;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(10px); font-weight: 700;
}
.hero h1 {
  margin: 0 0 18px; font-size: clamp(2.5rem, 6vw, 5rem); line-height: .95;
  font-family: 'Playfair Display', serif;
}
.hero p { font-size: 1.05rem; line-height: 1.75; max-width: 640px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.hero-info { display: flex; gap: 20px; flex-wrap: wrap; font-weight: 600; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 22px; border-radius: 999px; font-weight: 700; transition: .3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 12px 30px rgba(244, 111, 67, 0.35); }
.btn-secondary { background: rgba(255,255,255,0.14); color: white; border: 1px solid rgba(255,255,255,0.3); }
.section { padding: 92px 0; }
.grid-2 { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: center; }
.section-kicker {
  display: inline-block; margin-bottom: 14px; color: var(--primary-dark); font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; font-size: .8rem;
}
.section h2, .section-head h2 {
  margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.02;
  font-family: 'Playfair Display', serif;
}
.section p, .section-head p { color: var(--muted); line-height: 1.8; }
.info-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.info-pills span {
  background: var(--soft); color: var(--primary-dark); padding: 12px 16px; border-radius: 999px; font-weight: 700;
}
.card {
  background: rgba(255,255,255,0.92); border: 1px solid rgba(45,115,201,.08);
  box-shadow: var(--shadow); border-radius: var(--radius);
}
.highlight-card { overflow: hidden; }
.highlight-card img { width: 100%; height: 340px; object-fit: cover; }
.highlight-content { padding: 28px; }
.highlight-content h3 { margin: 0 0 8px; font-size: 1.4rem; }
.highlight-content p { margin: 6px 0; }
.divider { height: 1px; background: rgba(23,48,71,.08); margin: 18px 0; }
.center { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.specialties { background: linear-gradient(180deg, rgba(220,236,255,0.32), rgba(255,255,255,0)); }
.specialties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.specialty { padding: 18px; }
.specialty img { width: 100%; height: 250px; object-fit: cover; border-radius: 18px; }
.specialty h3 { margin: 18px 0 10px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.gallery-item {
  padding: 0; border: 0; background: none; cursor: pointer; border-radius: 20px; overflow: hidden;
  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-grid { align-items: stretch; }
.video-frame {
  min-height: 420px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow);
}
.video-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.social-card { padding: 28px; transition: .3s ease; }
.social-card:hover { transform: translateY(-4px); }
.social-card span { color: var(--primary-dark); font-weight: 800; text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; }
.social-card strong { display: block; margin-top: 10px; font-size: 1.12rem; }
.contact-grid { align-items: start; }
.contact-list { display: grid; gap: 14px; margin: 24px 0 28px; }
.contact-list a {
  background: var(--white); padding: 16px 18px; border-radius: 16px; border: 1px solid rgba(45,115,201,.08);
  box-shadow: 0 12px 28px rgba(18, 52, 86, 0.08);
}
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; min-height: 320px; border: 0; }
.contact-form-card { padding: 28px; }
.contact-form-card h3 { margin-top: 0; }
form { display: grid; gap: 16px; }
label span { display: block; margin-bottom: 8px; font-weight: 700; }
input, textarea {
  width: 100%; border: 1px solid rgba(45,115,201,.16); border-radius: 16px; padding: 14px 16px;
  background: #fbfdff;
}
textarea { resize: vertical; }
.site-footer {
  padding: 28px 0 42px; background: #10273c; color: rgba(255,255,255,.88);
}
.footer-inner { text-align: center; }
.footer-inner a { color: #9dd0ff; }
.floating {
  position: fixed; right: 18px; z-index: 30; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; box-shadow: var(--shadow);
}
.floating-whatsapp { bottom: 88px; background: #25D366; }
.floating-call { bottom: 18px; background: var(--primary-dark); font-size: .76rem; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.88); display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: .3s ease; z-index: 40;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(92vw, 980px); max-height: 86vh; border-radius: 20px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%;
  border: 0; background: white; font-size: 2rem; cursor: pointer;
}
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .grid-2, .specialties-grid, .social-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 78vh; }
}
@media (max-width: 640px) {
  .topbar-inner { min-height: 64px; }
  .brand-mini span { font-size: .92rem; }
  .hero-content { padding: 52px 0; }
  .hero p { font-size: 1rem; }
  .hero-info { font-size: .92rem; }
  .section { padding: 72px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .floating { width: 54px; height: 54px; }
}
