:root{
  --blue:#1e6fb8;
  --blue-2:#0f4f8b;
  --red:#e53935;
  --green:#2e9d57;
  --yellow:#f9c74f;
  --bg:#f7fbff;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#5b6472;
  --line:rgba(15,23,42,.10);
  --shadow: 0 18px 45px rgba(15,23,42,.10);
  --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, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #ffffff 100%);
}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}

.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}

.topbar{
  background: rgba(30,111,184,.07);
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
}
.topbar__left{display:flex; align-items:center; gap:10px; color:var(--muted)}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(46,157,87,.12);
}
.topbar__right{display:flex; align-items:center; gap:10px}
.topbar__link{
  color: var(--blue-2);
  font-weight:600;
}
.sep{color:rgba(15,23,42,.35)}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.brand__logo{
  width:52px; height:52px;
  border-radius:16px;
  box-shadow: 0 10px 24px rgba(15,23,42,.10);
}
.brand__text{line-height:1.15}
.brand__name{display:block; font-weight:800; letter-spacing:.2px}
.brand__tag{display:block; font-size:12px; color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-weight:600;
  color: rgba(15,23,42,.82);
}
.nav__cta{
  padding:10px 14px;
  border-radius:999px;
  background: rgba(30,111,184,.10);
  color: var(--blue-2);
  border:1px solid rgba(30,111,184,.18);
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
  align-items:center;
  justify-content:center;
  gap:4px;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(15,23,42,.7);
  border-radius:999px;
}

.hero{
  position:relative;
  overflow:hidden;
}
.hero__media{
  position:absolute;
  inset:0;
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.06);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 420px at 25% 20%, rgba(249,199,79,.55), rgba(249,199,79,0) 55%),
    radial-gradient(900px 420px at 70% 30%, rgba(229,57,53,.30), rgba(229,57,53,0) 60%),
    linear-gradient(180deg, rgba(15,23,42,.10) 0%, rgba(15,23,42,.45) 70%, rgba(15,23,42,.55) 100%);
}
.hero__content{
  position:relative;
  padding:64px 0 64px;
  color:#fff;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-weight:700;
  font-size:13px;
}
.hero h1{
  margin:16px 0 10px;
  font-size: clamp(34px, 4.8vw, 56px);
  letter-spacing: .2px;
}
.lead{
  max-width: 60ch;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height:1.55;
  opacity:.95;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 18px 45px rgba(15,23,42,.18);
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  background: linear-gradient(135deg, var(--yellow), #ffd77a);
  color:#2b2b2b;
  border-color: rgba(255,255,255,.20);
}
.btn--outline{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
  color:#fff;
  box-shadow: none;
}
.btn--ghost{
  background: rgba(15,23,42,.04);
  border:1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}
.btn--block{width:100%}

.hero__mini{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 22px;
}
.mini-card{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}
.mini-card__icon{font-size:18px}
.mini-card__text{font-weight:700; font-size:13px}

.section{
  padding: 72px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(30,111,184,.05), rgba(30,111,184,0) 55%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  margin-bottom: 22px;
}
.section__head h2{
  margin:0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
}
.section__head p{margin:0; color: var(--muted); line-height:1.6}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color: var(--muted); line-height:1.6}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.gallery__item{
  border:0;
  padding:0;
  border-radius: 18px;
  overflow:hidden;
  background: #fff;
  cursor:pointer;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
  transform: translateZ(0);
}
.gallery__item img{
  width:100%;
  height: 220px;
  object-fit:cover;
  transition: transform .35s ease;
}
.gallery__item:hover img{transform: scale(1.05)}

.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items: start;
}
.panel{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.panel h3{margin-top:0}
.muted{color:var(--muted)}
.embed iframe{width:100%; max-width:100%; border-radius: 18px}
.btn-row{margin-top:12px}

.contact-quick{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top: 12px;
}
.quick{
  display:flex;
  gap:10px;
  align-items:center;
  padding:14px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(15,23,42,.02);
}
.quick__icon{font-size:22px}
.quick--call{background: rgba(249,199,79,.16)}
.quick--wa{background: rgba(46,157,87,.12)}
.note{
  margin-top: 14px;
  padding:12px 14px;
  border-radius: 18px;
  border:1px dashed rgba(15,23,42,.18);
  background: rgba(255,255,255,.55);
}

.video{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
  background:#000;
}
.video iframe{
  width:100%;
  aspect-ratio: 16/9;
  border:0;
}

.map{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
  background:#fff;
}
.map iframe{
  width:100%;
  height: 420px;
  border:0;
}

.form{
  display:grid;
  gap:12px;
}
label{display:grid; gap:6px; font-weight:700}
input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  font:inherit;
  outline:none;
  background:#fff;
}
input:focus, textarea:focus{
  border-color: rgba(30,111,184,.35);
  box-shadow: 0 0 0 6px rgba(30,111,184,.10);
}
.form__hint{margin:0}

.stack{display:grid; gap:10px}
.divider{
  height:1px;
  background: var(--line);
  margin: 16px 0;
}

.footer{
  padding: 28px 0;
  background: #0b2b49;
  color: rgba(255,255,255,.92);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr 1.1fr;
  gap:14px;
  align-items:center;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer__logo{
  width:42px; height:42px;
  border-radius: 14px;
  background:#fff;
}
.footer__links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}
.footer__links a{opacity:.9}
.footer__legal{
  text-align:right;
  font-size:14px;
  opacity:.95;
}
.footer__legal a{color: #fff; font-weight:800; text-decoration: underline}

.wa-float{
  position:fixed;
  right: 18px;
  bottom: 18px;
  width:58px; height:58px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(46,157,87,.95);
  box-shadow: 0 18px 45px rgba(15,23,42,.22);
  z-index:60;
  border: 1px solid rgba(255,255,255,.22);
}
.wa-float span{font-size:26px}

.lightbox{
  position:fixed;
  inset:0;
  background: rgba(15,23,42,.85);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index:80;
}
.lightbox.is-open{display:flex}
.lightbox__img{
  max-width: min(980px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 25px 65px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.15);
  background:#000;
}
.lightbox__close{
  position:absolute;
  top: 14px;
  right: 14px;
  width:44px; height:44px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

/* reveal animation */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(3, 1fr)}
  .two-col{grid-template-columns: 1fr}
  .footer__inner{grid-template-columns: 1fr; text-align:center}
  .footer__legal{text-align:center}
}

@media (max-width: 720px){
  .nav-toggle{display:flex}
  .nav{
    position: fixed;
    top: 64px;
    right: 16px;
    left: 16px;
    background: rgba(255,255,255,.96);
    border:1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 14px;
    display:none;
    flex-direction: column;
    gap:12px;
  }
  .nav.is-open{display:flex}
  .nav a{padding:10px 12px; border-radius: 14px}
  .nav__cta{background: rgba(30,111,184,.10)}
  .hero__content{padding:54px 0}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .gallery__item img{height: 190px}
  .contact-quick{grid-template-columns: 1fr}
}
