
:root{
  --blue:#0b57d0;
  --yellow:#f6b21a;
  --red:#d93025;
  --ink:#0f172a;
  --muted:#475569;
  --bg:#0b1220;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --radius:18px;
}
*{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", "Liberation Sans", sans-serif;
  color:#0b1220;
  background:#ffffff;
}
a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(12px);
  background:rgba(255,255,255,0.85);
  border-bottom:1px solid rgba(15,23,42,0.08);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800;
  letter-spacing:-0.3px;
}
.brand img{width:38px; height:38px; object-fit:contain}
.brand .title{display:flex; flex-direction:column; line-height:1.05}
.brand .title span:first-child{font-size:14px; color:var(--muted); font-weight:700}
.brand .title span:last-child{font-size:16px}
.nav-links{display:flex; gap:16px; align-items:center}
.nav-links a{font-weight:650; color:#0b1220; opacity:0.85}
.nav-links a:hover{opacity:1}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  font-weight:750; border:1px solid rgba(15,23,42,0.10);
  background:#fff;
}
.btn.primary{
  background:linear-gradient(135deg, var(--blue), #1d4ed8);
  color:#fff; border-color:transparent;
  box-shadow:0 10px 24px rgba(11,87,208,0.25);
}
.btn.ghost{background:transparent}
.hero{
  position:relative;
  color:#fff;
  background:#0b1220;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(246,178,26,0.25), transparent 60%),
    radial-gradient(700px 360px at 85% 0%, rgba(11,87,208,0.35), transparent 55%),
    linear-gradient(180deg, rgba(11,18,32,0.2), rgba(11,18,32,0.75));
  z-index:1;
}
.hero-bg{
  position:absolute; inset:0;
  background:url("assets/hero.jpg") center/cover no-repeat;
  filter:saturate(1.1) contrast(1.05);
  transform:scale(1.04);
  z-index:0;
}
.hero-inner{position:relative; z-index:2; padding:64px 0 44px}
.hero-grid{
  display:grid; gap:28px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items:center;
}
@media (max-width: 860px){
  .hero-grid{grid-template-columns:1fr}
  .nav-links{display:none}
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  font-weight:700;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.02;
  letter-spacing:-1px;
}
.lead{
  margin:0 0 18px;
  color:rgba(255,255,255,0.88);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height:1.5;
  max-width:52ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.hero-card{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding:16px;
}
.hero-card img{
  width:100%; border-radius:14px; aspect-ratio: 4/3; object-fit:cover;
  border:1px solid rgba(255,255,255,0.16);
}
.hero-meta{
  display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px
}
.pill{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  padding:10px 12px;
  border-radius:14px;
  font-weight:750;
  line-height:1.2;
}
.pill small{display:block; opacity:0.9; font-weight:700; color:rgba(255,255,255,0.75)}
section{padding:56px 0}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
  margin-bottom:18px;
}
.section-title h2{
  margin:0;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing:-0.6px;
}
.section-title p{margin:0; color:var(--muted); max-width:70ch}
.grid{display:grid; gap:16px}
.grid.cols-3{grid-template-columns:repeat(3, 1fr)}
.grid.cols-2{grid-template-columns:repeat(2, 1fr)}
@media (max-width: 900px){
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-2{grid-template-columns:1fr}
}
.card{
  border:1px solid rgba(15,23,42,0.10);
  border-radius: var(--radius);
  padding:18px;
  background:#fff;
  box-shadow: 0 14px 40px rgba(2,6,23,0.06);
}
.icon{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(11,87,208,0.12), rgba(246,178,26,0.18));
  border:1px solid rgba(11,87,208,0.18);
  margin-bottom:10px;
  font-weight:900;
  color:var(--blue);
}
.card h3{margin:6px 0 6px; font-size:18px}
.card p{margin:0; color:var(--muted); line-height:1.55}
.banner{
  background:linear-gradient(135deg, rgba(11,87,208,0.10), rgba(246,178,26,0.12), rgba(217,48,37,0.10));
  border-top:1px solid rgba(15,23,42,0.08);
  border-bottom:1px solid rgba(15,23,42,0.08);
}
.banner-inner{
  display:grid; gap:18px;
  grid-template-columns: 1fr 1fr;
  align-items:center;
}
@media (max-width: 900px){.banner-inner{grid-template-columns:1fr}}
.banner img{width:100%; border-radius: var(--radius); border:1px solid rgba(15,23,42,0.10); object-fit:cover; aspect-ratio: 16/10}
.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.g{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,0.10);
  box-shadow: 0 12px 30px rgba(2,6,23,0.08);
  background:#fff;
}
.g img{width:100%; height:100%; object-fit:cover; display:block}
.g.big{grid-column: span 7; aspect-ratio: 16/10}
.g.mid{grid-column: span 5; aspect-ratio: 16/10}
.g.sm{grid-column: span 4; aspect-ratio: 4/3}
@media (max-width: 900px){
  .g.big,.g.mid,.g.sm{grid-column: span 12}
}
.footer{
  padding:32px 0;
  background:#0b1220;
  color:rgba(255,255,255,0.86);
}
.footer a{color:rgba(255,255,255,0.9); text-decoration:underline}
.footer .row{display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap}
.whatsapp{
  position:fixed; right:18px; bottom:18px; z-index:60;
  display:flex; gap:10px; align-items:center;
  padding:12px 14px;
  background:#25D366; color:#06240f;
  border-radius:999px;
  font-weight:900;
  box-shadow: 0 16px 38px rgba(0,0,0,0.22);
}
.whatsapp span{color:#06240f}
.small{font-size:12px; opacity:0.85}
