:root{
  --bg:#f7fbff;
  --surface:#ffffff;
  --text:#0b1b2b;
  --muted:#4a6176;
  --blue:#1da6ff;
  --blue2:#0a7dd6;
  --orange:#ff9a2f;
  --orange2:#ff7a00;
  --ring:rgba(29,166,255,.25);
  --shadow: 0 10px 30px rgba(10,40,70,.12);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background: radial-gradient(900px 500px at 15% 10%, rgba(29,166,255,.12), transparent 60%),
              radial-gradient(900px 500px at 90% 15%, rgba(255,154,47,.14), transparent 60%),
              var(--bg);
  line-height:1.55;
}
a{color:inherit}
img{max-width:100%; display:block}
.container{width:min(1120px, 92vw); margin-inline:auto}
.section{padding:72px 0}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border:1px solid rgba(10,40,70,.08);
  border-radius:999px;
  background:rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
}
.badge i{width:10px; height:10px; border-radius:99px; background:linear-gradient(135deg,var(--orange),var(--blue))}
h1{font-size: clamp(34px, 4vw, 52px); line-height:1.05; margin:14px 0 10px}
h2{font-size: clamp(26px, 3vw, 36px); margin:0 0 14px}
h3{font-size: 18px; margin:0 0 6px}
p{margin:0 0 12px; color:var(--muted)}
.kicker{font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--blue2); font-size:12px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(10,40,70,.10);
  text-decoration:none;
  font-weight:700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 6px 16px rgba(10,40,70,.08);
  background:rgba(255,255,255,.85);
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 12px 24px rgba(10,40,70,.12)}
.btn.primary{
  border:none;
  color:#07131f;
  background: linear-gradient(135deg, var(--orange), #ffd1a3 55%, rgba(255,255,255,.2));
}
.btn.blue{
  border:none; color:white;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
}
.btn.ghost{
  background:transparent;
  box-shadow:none;
}
.btn svg{width:18px; height:18px}
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(247,251,255,.68);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10,40,70,.06);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand img{width:42px; height:42px; border-radius:14px; box-shadow: var(--shadow); border:1px solid rgba(10,40,70,.08)}
.brand b{font-size:16px}
.brand span{display:block; font-size:12px; color:var(--muted); margin-top:2px}
.menu{display:flex; gap:18px; align-items:center}
.menu a{
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  color: rgba(11,27,43,.78);
  padding:10px 12px;
  border-radius:12px;
}
.menu a:hover{background: rgba(29,166,255,.08)}
.burger{
  display:none;
  background:transparent; border:1px solid rgba(10,40,70,.12);
  border-radius:14px; padding:10px;
}
.burger svg{width:20px; height:20px}

.hero{
  padding:56px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}
.hero-card{
  background: rgba(255,255,255,.78);
  border:1px solid rgba(10,40,70,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
  overflow:hidden;
}
.hero-media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(10,40,70,.08);
  box-shadow: var(--shadow);
  min-height: 360px;
  background:#dbefff;
}
.hero-media img{width:100%; height:100%; object-fit:cover; filter:saturate(1.05) contrast(1.02)}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,27,43,.00) 35%, rgba(11,27,43,.38) 100%);
}
.hero-media .label{
  position:absolute; left:16px; bottom:14px;
  color:#fff;
  font-weight:800;
  text-shadow: 0 10px 30px rgba(0,0,0,.28);
  max-width: 90%;
}

.hero-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border:1px solid rgba(10,40,70,.08);
}
.pill small{color:var(--muted); font-weight:700}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background: rgba(255,255,255,.82);
  border:1px solid rgba(10,40,70,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.card ul{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted)}
.card li{margin:6px 0}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.g-item{
  grid-column: span 4;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(10,40,70,.08);
  box-shadow: 0 10px 22px rgba(10,40,70,.10);
  background:#fff;
  cursor: zoom-in;
  position:relative;
}
.g-item img{width:100%; height:220px; object-fit:cover; transition: transform .25s ease}
.g-item:hover img{transform: scale(1.03)}
.g-item::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.25));
  opacity:.0; transition: opacity .25s ease;
}
.g-item:hover::after{opacity:1}

.modal{
  position:fixed; inset:0;
  display:none;
  align-items:center; justify-content:center;
  background: rgba(5,10,15,.78);
  z-index:120;
  padding:18px;
}
.modal.open{display:flex}
.modal figure{
  width:min(980px, 96vw);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.modal img{width:100%; height:auto}
.modal .close{
  position:absolute; top:16px; right:16px;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.embed{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(10,40,70,.08);
  box-shadow: var(--shadow);
  background:#fff;
}
.embed iframe{width:100%; height:420px; border:0}
.form{
  display:grid;
  gap:10px;
}
.input{
  width:100%;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(10,40,70,.14);
  background: rgba(255,255,255,.9);
  outline:none;
}
.input:focus{box-shadow: 0 0 0 6px var(--ring); border-color: rgba(29,166,255,.55)}
textarea.input{min-height:130px; resize:vertical}
.note{font-size:13px; color: rgba(11,27,43,.70)}
footer{
  padding:30px 0 46px;
  border-top: 1px solid rgba(10,40,70,.08);
  background: rgba(255,255,255,.55);
}
.footer-grid{
  display:flex; gap:14px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
}
.socials{display:flex; gap:10px; flex-wrap:wrap}
.socials a{font-weight:800; text-decoration:none}
.map{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(10,40,70,.08);
  box-shadow: var(--shadow);
  background:#fff;
  height: 360px;
}
.map iframe{width:100%; height:100%; border:0}

.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:130;
  display:flex; flex-direction:column; gap:10px;
}
.fab a{
  width:52px; height:52px;
  border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 28px rgba(10,40,70,.18);
  border:1px solid rgba(10,40,70,.08);
  text-decoration:none;
  background: rgba(255,255,255,.92);
}
.fab a.whats{
  background: linear-gradient(135deg, #25D366, #0fb35a);
  border:none;
}
.fab a.whats svg{fill:white}
.fab a.call{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border:none;
}
.fab a.call svg{fill:white}

.reveal{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease}
.reveal.show{opacity:1; transform:none}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-media{min-height: 300px}
  .grid-3{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .g-item{grid-column: span 6}
  .menu{display:none}
  .burger{display:inline-flex}
  .menu.open{
    position:absolute;
    top:64px;
    right:4vw;
    left:4vw;
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:12px;
    background: rgba(255,255,255,.92);
    border:1px solid rgba(10,40,70,.10);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
}
@media (max-width: 520px){
  .g-item{grid-column: span 12}
  .embed iframe{height: 260px}
}