:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --card:#f8fafc;
  --border: rgba(2, 6, 23, .10);
  --navy:#15314d;
  --blue:#10529a;
  --red:#fb1633;
  --warm:#a35a3b;
  --shadow: 0 12px 35px rgba(2,6,23,.10);
  --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, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 15% 0%, rgba(16,82,154,.10), transparent 60%),
              radial-gradient(900px 500px at 85% 10%, rgba(251,22,51,.08), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{color:inherit}
.container{width:min(1120px, 92vw); margin:0 auto}

.topbar{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex; gap:12px; align-items:center; text-decoration:none;
}
.brand img{width:44px; height:44px; border-radius:12px; box-shadow: 0 6px 18px rgba(2,6,23,.12)}
.brand .title{display:flex; flex-direction:column; line-height:1.1}
.brand .title strong{font-size:15px}
.brand .title span{font-size:12px; color:var(--muted)}
.navlinks{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.navlinks a{
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  padding:10px 12px;
  border-radius:999px;
  color: var(--navy);
}
.navlinks a:hover{background: rgba(21,49,77,.08)}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:800;
  border:1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
}
.btn.primary{
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color:#fff; border-color: transparent;
}
.btn.accent{
  background: linear-gradient(135deg, var(--red), #ff6b7f);
  color:#fff; border-color: transparent;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}

.hero{
  padding: 44px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.85);
  color: var(--navy);
  font-weight:700;
  font-size:12px;
}
.kicker .dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(251,22,51,.18);
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.cta{
  margin-top: 18px;
  display:flex; gap:12px; flex-wrap:wrap;
}
.quick{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}
.quick .pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(21,49,77,.06);
  border:1px solid rgba(21,49,77,.10);
}

.hero-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.84);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{
  padding: 14px;
}
.hero-media img{
  width: 100%;
  height: min(54vh, 520px);
  object-fit: contain;
  display:block;
  background: #fff;
  border-radius: 14px;
}
.hero-note{
  padding: 0 18px 18px;
  display:flex; gap:10px; align-items:flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height:1.55;
}
.hero-note strong{color: var(--navy)}
.sections{padding: 26px 0 70px}

.section{
  margin-top: 26px;
}
.section h2{
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  color: var(--navy);
}
.grid2{
  display:grid; grid-template-columns: 1fr 1fr; gap:18px;
}
.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.80);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  padding: 18px;
}
.card p{margin: 0; color: var(--muted); line-height:1.7}
.ul{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.badges{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:12px
}
.badge{
  padding:8px 10px;
  background: rgba(16,82,154,.08);
  border: 1px solid rgba(16,82,154,.15);
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: var(--navy);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.thumb{
  grid-column: span 4;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--border);
  background:#fff;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  cursor: pointer;
  position: relative;
}
.thumb img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
  transition: transform .25s ease;
}
.thumb:hover img{transform: scale(1.03)}
.thumb .cap{
  position:absolute; left:10px; bottom:10px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 800;
  font-size: 12px;
  color: var(--navy);
}

.video-wrap{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: transparent;
}
.video-wrap iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
.field{display:flex; flex-direction:column; gap:6px}
label{font-size: 12px; color: var(--navy); font-weight: 800}
input, textarea{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.15);
  background: rgba(255,255,255,.92);
  font: inherit;
}
textarea{min-height: 120px; resize: vertical}
small.helper{color: var(--muted)}
.form-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 12px}

.map{
  width:100%;
  height: 360px;
  border:0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.footer{
  margin-top: 54px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.70);
  color: var(--muted);
  font-size: 13px;
}
.footer .footgrid{
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.footer strong{color: var(--navy)}
.footer a{color: var(--navy); font-weight:800; text-decoration:none}
.footer a:hover{text-decoration:underline}

.whatsapp-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 16px 35px rgba(2,6,23,.22);
  text-decoration:none;
}
.whatsapp-float svg{width:28px; height:28px; fill:#fff}
.whatsapp-float:hover{transform: translateY(-2px)}
.whatsapp-float:active{transform: translateY(0)}

.lightbox{
  position: fixed; inset:0; z-index: 100;
  background: rgba(2,6,23,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 22px;
}
.lightbox.open{display:flex}
.lightbox-card{
  width: min(1100px, 96vw);
  border-radius: 18px;
  overflow:hidden;
  background: transparent;
  position:relative;
}
.lightbox img{
  width:100%;
  height: min(82vh, 820px);
  object-fit: contain;
  display:block;
  background: transparent;
}
.lightbox .close{
  position:absolute; top:10px; right:10px;
  width: 44px; height:44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.45);
  color:#fff;
  font-weight: 900;
  cursor:pointer;
}
.lightbox .navbtn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.40);
  color:#fff;
  font-weight: 900;
  cursor:pointer;
}
.lightbox .prev{left: 10px}
.lightbox .next{right: 10px}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .form-grid{grid-template-columns: 1fr}
  .thumb{grid-column: span 6}
}
@media (max-width: 520px){
  .navlinks{display:none}
  .thumb{grid-column: span 12}
  .hero-media img{height: min(46vh, 420px)}
}