:root {
  --bg: #eef3f7;
  --bg-soft: rgba(255,255,255,.7);
  --text: #33415c;
  --muted: #63708d;
  --accent: #7a86a6;
  --accent-2: #d7b7c8;
  --card: rgba(255,255,255,.72);
  --line: rgba(122,134,166,.18);
  --shadow: 0 18px 50px rgba(72, 83, 116, .12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215,183,200,.45), transparent 28%),
    radial-gradient(circle at bottom right, rgba(122,134,166,.22), transparent 26%),
    var(--bg);
}
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; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(238,243,247,.72);
  border-bottom: 1px solid var(--line);
}
.topbar-inner, .footer-inner, .hero-actions, .lang-switch, .brand-mini, .contact-list { display: flex; align-items: center; }
.topbar-inner { justify-content: space-between; padding: 12px 0; }
.brand-mini { gap: 12px; font-weight: 600; }
.brand-mini img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }
.lang-switch { gap: 8px; }
.lang-btn {
  border: 1px solid var(--line); background: rgba(255,255,255,.7); color: var(--text);
  border-radius: 999px; padding: 8px 14px; cursor: pointer; transition: .25s ease;
}
.lang-btn.active, .lang-btn:hover { background: var(--accent); color: white; }
.hero { position: relative; min-height: 88vh; display: grid; align-items: center; overflow: hidden; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(110deg, rgba(239,244,248,.82) 10%, rgba(239,244,248,.54) 44%, rgba(122,134,166,.18) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 64px 0; }
.hero-card {
  max-width: 680px; background: rgba(255,255,255,.52); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.45); border-radius: 32px; padding: 40px; box-shadow: var(--shadow);
}
.eyebrow, .section-tag {
  font-size: .82rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
}
.hero h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: .95; margin: 0 0 16px; }
.hero h1 { font-size: clamp(3rem, 8vw, 5.8rem); max-width: 11ch; }
.lead { font-size: 1.08rem; max-width: 56ch; color: var(--muted); }
.hero-actions { gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px;
  border-radius: 999px; font-weight: 600; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), #8e93bc); color: white; box-shadow: 0 12px 24px rgba(122,134,166,.3); }
.btn-secondary { background: rgba(255,255,255,.78); border: 1px solid var(--line); }
.section { padding: 96px 0; }
.grid-two { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.intro p, .section-head p, .card-body p, .social-card p { color: var(--muted); }
.info-panel, .experience-card, .social-card, .form-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.6); backdrop-filter: blur(16px);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.info-panel { padding: 28px; }
.info-item { display: flex; flex-direction: column; gap: 6px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: 0; }
.section-head { max-width: 720px; margin-bottom: 28px; }
.section-head h2, .intro h2, .video-section h2, .contact-section h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.cards-grid, .gallery-grid, .social-grid { display: grid; gap: 22px; }
.cards-grid { grid-template-columns: repeat(3, 1fr); }
.experience-card { overflow: hidden; }
.experience-card img { width: 100%; aspect-ratio: 4 / 4.8; object-fit: cover; }
.card-body { padding: 22px; }
.card-body h3, .social-card h3 { font-size: 2rem; }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
  padding: 0; border: 0; background: transparent; border-radius: 20px; overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow); position: relative;
}
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.video-grid { align-items: start; }
.video-wrap {
  position: relative; padding-top: 135%; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.6);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.social-grid { grid-template-columns: repeat(3, 1fr); }
.social-card { padding: 28px; text-align: center; }
.social-icon {
  width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(122,134,166,.95), rgba(215,183,200,.95)); color: white; font-size: 1.8rem;
}
.contact-grid { align-items: start; }
.contact-list { gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.contact-list a, .contact-list span {
  background: rgba(255,255,255,.75); padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px;
}
.map-wrap, .form-card { overflow: hidden; }
.map-wrap iframe { width: 100%; min-height: 360px; border: 0; border-radius: 28px; box-shadow: var(--shadow); }
.form-card { padding: 28px; }
form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; }
input, textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(255,255,255,.78); outline: none;
}
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(122,134,166,.12); }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 30; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem; color: white; background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 15px 30px rgba(18,140,126,.32);
}
.lightbox {
  position: fixed; inset: 0; background: rgba(26, 31, 43, .82); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: .25s ease; z-index: 50; padding: 20px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1000px, 100%); max-height: 84vh; border-radius: 22px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  font-size: 2rem; background: rgba(255,255,255,.9);
}
.site-footer { padding: 28px 0 40px; border-top: 1px solid var(--line); }
.footer-inner { justify-content: space-between; gap: 18px; flex-wrap: wrap; color: var(--muted); }
.fade-up { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
@media (max-width: 980px) {
  .grid-two, .cards-grid, .social-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { padding: 28px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { width: min(100% - 24px, 1120px); }
  .brand-mini span { display: none; }
  .hero { min-height: 78vh; }
  .hero h1 { max-width: 12ch; }
  .gallery-grid { gap: 14px; }
  .gallery-item { border-radius: 16px; }
  .contact-list { align-items: stretch; }
  .contact-list a, .contact-list span { width: 100%; text-align: center; }
  .footer-inner { text-align: center; justify-content: center; }
}
