:root{
  --navy:#102f46;
  --navy-2:#17415e;
  --blue:#236f98;
  --gold:#f5b642;
  --gold-soft:#ffe1a3;
  --paper:#f4f7f9;
  --white:#ffffff;
  --ink:#172430;
  --muted:#617182;
  --line:rgba(16,47,70,.14);
  --shadow:0 22px 65px rgba(16,47,70,.18);
  --shadow-soft:0 12px 28px rgba(16,47,70,.12);
  --radius:28px;
  --radius-sm:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}

.container{width:min(100% - 32px,var(--max));margin-inline:auto}
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.93);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}
.nav{
  width:min(100% - 32px,var(--max));
  margin-inline:auto;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  color:var(--navy);
  letter-spacing:-.02em;
}
.brand-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:var(--white);
  box-shadow:var(--shadow-soft);
}
.menu{display:flex;align-items:center;gap:8px}
.menu a{
  padding:10px 14px;
  border-radius:999px;
  color:var(--navy);
  font-weight:700;
}
.menu a:hover{background:var(--paper)}
.menu-button{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--white);
  cursor:pointer;
}
.menu-button span{
  display:block;
  width:22px;
  height:2px;
  background:var(--navy);
  margin:5px auto;
  transition:.25s ease;
}
.menu-button.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-button.active span:nth-child(2){opacity:0}
.menu-button.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.hero{
  position:relative;
  overflow:hidden;
  padding:88px 0 82px;
  color:var(--white);
  background:
    radial-gradient(circle at 18% 15%,rgba(245,182,66,.23),transparent 28%),
    linear-gradient(135deg,#0b2335 0%,var(--navy) 46%,var(--navy-2) 100%);
}
.hero-shape{
  position:absolute;
  inset:auto -90px -160px auto;
  width:430px;
  height:430px;
  border-radius:50%;
  background:rgba(245,182,66,.14);
  filter:blur(2px);
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:42px;
}
.label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 12px;
  padding:8px 13px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  color:var(--gold-soft);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}
.label.dark{
  color:var(--navy);
  border-color:var(--line);
  background:var(--paper);
}
h1,h2,h3,p{margin-top:0}
h1{
  margin-bottom:18px;
  font-size:clamp(2.5rem,6vw,5.9rem);
  line-height:.94;
  letter-spacing:-.06em;
}
h2{
  font-size:clamp(2rem,4vw,3.55rem);
  line-height:1;
  letter-spacing:-.045em;
  margin-bottom:18px;
}
h3{font-size:1.25rem;margin-bottom:8px;color:var(--navy)}
.hero-text{
  max-width:650px;
  font-size:clamp(1.08rem,2vw,1.35rem);
  color:rgba(255,255,255,.88);
  margin-bottom:28px;
}
.actions,.panel-actions{display:flex;flex-wrap:wrap;gap:12px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 20px;
  border-radius:999px;
  font-weight:900;
  border:1px solid transparent;
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.btn.primary{background:linear-gradient(135deg,var(--gold),#ffd876);color:#1b2832}
.btn.secondary{background:rgba(255,255,255,.1);color:var(--white);border-color:rgba(255,255,255,.25)}
.contact .btn.secondary{background:var(--navy);color:var(--white)}
.full{width:100%}
.info-strip{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.info-strip div{
  padding:16px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,.08);
}
.info-strip span,.row span{display:block;font-size:.85rem;color:var(--muted);font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.info-strip span{color:rgba(255,255,255,.66)}
.info-strip strong{display:block;color:var(--white);font-size:1rem;line-height:1.35}
.hero-image-card{
  padding:16px;
  border-radius:34px;
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.9));
  box-shadow:var(--shadow);
  color:var(--ink);
}
.hero-image-card img{
  width:100%;
  border-radius:24px;
  background:var(--white);
  object-fit:contain;
}
.image-caption{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  padding:16px 4px 2px;
  color:var(--navy);
}
.image-caption span{color:var(--muted);font-weight:800}
.section{padding:84px 0}
.intro,.image-section,.contact{background:linear-gradient(180deg,#fff 0%,var(--paper) 100%)}
.two-columns,.contact-grid,.image-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:32px;
  align-items:center;
}
.text-card,.contact-panel,.location-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}
.text-card{padding:30px;font-size:1.08rem}
.text-card p:last-child{margin-bottom:0}
.services{
  color:var(--white);
  background:
    radial-gradient(circle at 80% 18%,rgba(245,182,66,.16),transparent 26%),
    linear-gradient(180deg,var(--navy) 0%,#0b2233 100%);
}
.services h2{color:var(--white)}
.section-title{text-align:center;max-width:760px;margin:0 auto 34px}
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.card{
  min-height:230px;
  padding:24px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.96);
  color:var(--ink);
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(255,255,255,.22);
}
.card-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:var(--white);
  font-weight:900;
}
.card p{color:var(--muted);margin-bottom:0}
.image-copy p{color:var(--muted);font-size:1.05rem}
.link-action{
  display:inline-flex;
  margin-top:8px;
  color:var(--navy);
  font-weight:900;
  border-bottom:3px solid var(--gold);
}
.image-box{
  padding:18px;
  border-radius:34px;
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.image-box img{
  width:100%;
  border-radius:24px;
  object-fit:contain;
  background:var(--white);
}
.location{
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:var(--white);
}
.location-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  padding:34px;
  color:var(--white);
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.18);
}
.location-card h2{margin-bottom:8px}
.location-card p:not(.label){margin-bottom:0;font-size:1.08rem;color:rgba(255,255,255,.86)}
.contact-panel{padding:28px}
.row{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:14px;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.row:first-child{padding-top:0}
.row strong{color:var(--navy)}
.panel-actions{margin-top:22px}
.footer{
  background:#081925;
  color:rgba(255,255,255,.82);
  padding:30px 0;
}
.footer-content{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer p{margin:0}
.footer strong,.footer a{color:var(--white)}
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:30;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  height:56px;
  padding:0 17px;
  border-radius:999px;
  color:#10220f;
  background:linear-gradient(135deg,#b4ff83,#58d85f);
  font-weight:900;
  box-shadow:0 16px 35px rgba(0,0,0,.24);
}

@media (max-width:980px){
  .hero-grid,.two-columns,.contact-grid,.image-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2,1fr)}
  .hero{padding-top:64px}
}
@media (max-width:760px){
  .menu-button{display:block}
  .menu{
    position:absolute;
    left:16px;
    right:16px;
    top:76px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    border:1px solid var(--line);
    border-radius:22px;
    background:var(--white);
    box-shadow:var(--shadow-soft);
  }
  .menu.open{display:flex}
  .menu a{padding:13px 14px}
  .brand span:last-child{max-width:210px;line-height:1.1}
  .hero{padding:52px 0 60px}
  .section{padding:62px 0}
  .info-strip{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .location-card{align-items:flex-start;flex-direction:column}
  .row{grid-template-columns:1fr;gap:4px}
  .footer-content{display:block}
  .footer p{margin-bottom:8px}
}
@media (max-width:460px){
  .container,.nav{width:min(100% - 24px,var(--max))}
  .hero-image-card,.image-box{padding:10px;border-radius:24px}
  .hero-image-card img,.image-box img{border-radius:18px}
  .text-card,.contact-panel,.location-card,.card{border-radius:22px}
  .btn{width:100%}
  .whatsapp-float{right:12px;bottom:12px;height:52px;font-size:.9rem}
}
