
:root{
  --primary:#00365D;
  --primary-2:#0B4F86;
  --text:#15212C;
  --muted:#5D6B78;
  --line:#DCE6EF;
  --soft:#F5F8FB;
  --white:#FFFFFF;
  --shadow:0 18px 60px rgba(0,27,45,.12);
  --radius:22px;
  --radius-sm:16px;
  --container:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}
.container{width:min(calc(100% - 32px),var(--container));margin:0 auto}
.narrow{width:min(calc(100% - 32px),860px);margin:0 auto}

.topbar{
  background:var(--primary);
  color:#dbe9f6;
  font-size:.92rem;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
}
.topbar a{font-weight:700;color:#fff}

.header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:saturate(180%) blur(14px);
  background:rgba(255,255,255,.88);
  border-bottom:1px solid rgba(220,230,239,.75);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:86px;
  gap:20px;
}
.brand img{height:46px;width:auto;object-fit:contain}
.nav{
  display:flex;
  align-items:center;
  gap:26px;
}
.nav a{
  color:var(--muted);
  font-weight:600;
  transition:.25s ease;
}
.nav a:hover{color:var(--primary)}
.nav-cta{
  background:var(--primary);
  color:#fff !important;
  padding:12px 18px;
  border-radius:999px;
  box-shadow:var(--shadow);
}
.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  padding:0;
  width:44px;
  height:44px;
  border-radius:12px;
}
.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:var(--primary);
  margin:5px auto;
  transition:.25s ease;
}

.hero{
  position:relative;
  min-height:calc(100vh - 86px);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.hero-media, .hero-media img, .hero-overlay{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.hero-media img{
  object-fit:cover;
  object-position:center;
  transform:scale(1.04);
}
.hero-overlay{
  background:
    linear-gradient(90deg, rgba(0,20,36,.76) 0%, rgba(0,20,36,.56) 40%, rgba(0,20,36,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.38));
}
.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:80px 0 72px;
}
.eyebrow{
  display:inline-flex;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  font-size:.82rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:20px;
}
.hero h1{
  margin:0;
  max-width:940px;
  font-size:clamp(2.2rem, 6vw, 4.7rem);
  line-height:1.05;
  letter-spacing:-.03em;
}
.hero-text{
  max-width:760px;
  font-size:1.08rem;
  color:rgba(255,255,255,.88);
  margin:22px 0 0;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
}
.btn-primary{
  background:linear-gradient(180deg, var(--primary-2), var(--primary));
  color:#fff;
  box-shadow:0 14px 35px rgba(0,54,93,.28);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-secondary{
  border:1px solid rgba(255,255,255,.42);
  color:#fff;
  background:rgba(255,255,255,.08);
}
.btn-secondary:hover{background:rgba(255,255,255,.14)}
.btn.full{width:100%}
.btn-ghost{
  border:1px solid var(--line);
  color:var(--primary);
  background:#fff;
}
.hero-metrics{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  max-width:860px;
}
.hero-metrics article{
  padding:18px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
}
.hero-metrics strong{
  display:block;
  font-size:1.3rem;
  margin-bottom:3px;
}
.hero-metrics span{
  color:rgba(255,255,255,.82);
  font-size:.95rem;
}

.section{padding:92px 0}
.section-grid, .lifestyle-grid, .investment-wrap, .contact-wrap{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:start;
}
.copy-block h2, .section-head h2{
  margin:0;
  font-size:clamp(1.8rem, 4vw, 3rem);
  line-height:1.08;
  letter-spacing:-.03em;
}
.copy-block p{color:var(--muted);font-size:1.02rem}
.section-tag, .mini-label, .price-label{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#eaf2f9;
  color:var(--primary);
  font-weight:800;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.section-tag.light{
  background:rgba(255,255,255,.12);
  color:#dcecff;
}
.highlight-card, .attribute-card, .price-card, .contact-card, .brand-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.highlight-card{
  padding:28px;
}
.highlight-card h3{margin:0 0 10px;font-size:1.5rem}
.highlight-card ul{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:14px;
}
.highlight-card li{
  position:relative;
  padding-left:28px;
  color:var(--muted);
}
.highlight-card li::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--primary);
  position:absolute;
  left:0; top:.55em;
  box-shadow:0 0 0 6px rgba(0,54,93,.08);
}

.attributes{
  background:linear-gradient(180deg, #f9fbfd 0%, #f4f8fb 100%);
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:30px;
}
.section-head.center{
  text-align:center;
  flex-direction:column;
  align-items:center;
}
.section-side-text{
  color:var(--muted);
  max-width:480px;
  margin:0;
}
.attribute-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}
.attribute-card{
  padding:26px 22px 24px;
}
.attribute-card .number{
  color:#9ab2c7;
  font-weight:800;
  display:block;
  margin-bottom:10px;
}
.attribute-card h3{margin:0 0 8px;font-size:1.18rem}
.attribute-card p{margin:0;color:var(--muted)}
.spec-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}
.spec-item{
  padding:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
}
.spec-item strong{display:block}
.spec-item span{color:var(--muted);font-size:.96rem}

.visual-panel{
  overflow:hidden;
  border-radius:28px;
  box-shadow:var(--shadow);
  min-height:520px;
}
.visual-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.check-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.check-grid div{
  position:relative;
  padding:16px 16px 16px 48px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  font-weight:600;
}
.check-grid div::before{
  content:"✓";
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--primary);
  border-radius:50%;
  font-size:.8rem;
}

.gallery-section{background:#fff}
.gallery-lead{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
  align-items:stretch;
  margin-bottom:24px;
}
.gallery-stage{
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:430px;
}
.gallery-stage img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.thumbs{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
}
.thumb{
  border:2px solid transparent;
  background:#fff;
  padding:0;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,27,45,.08);
  cursor:pointer;
}
.thumb img{
  width:100%;
  height:100%;
  min-height:130px;
  object-fit:cover;
}
.thumb.is-active{border-color:var(--primary)}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}
.gallery-card{
  position:relative;
  margin:0;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 26px rgba(0,27,45,.08);
  cursor:pointer;
}
.gallery-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .35s ease;
}
.gallery-card:hover img{transform:scale(1.03)}
.gallery-card figcaption{
  padding:14px 16px;
  font-weight:600;
}
.gallery-badge{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  background:rgba(0,54,93,.82);
  color:#fff;
  padding:7px 10px;
  border-radius:999px;
  font-size:.76rem;
  font-weight:700;
}

.investment{
  background:linear-gradient(135deg, #012d4b 0%, #0b4f86 100%);
  color:#fff;
}
.investment-wrap{
  grid-template-columns:1.15fr .85fr;
  align-items:center;
}
.investment-copy p{color:rgba(255,255,255,.84)}
.value-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}
.value-points div{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  font-weight:600;
}
.price-card{
  padding:28px;
  background:#fff;
  color:var(--text);
}
.price-amount{
  font-size:clamp(2rem, 5vw, 3.5rem);
  font-weight:800;
  line-height:1;
  margin:8px 0 16px;
  color:var(--primary);
}
.link-more{
  color:var(--primary);
  font-weight:700;
  display:inline-block;
  margin-top:16px;
}

.arguments{
  background:#f8fbfe;
}
.argument-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.argument-grid article{
  padding:26px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
}
.argument-grid h3{
  margin:0 0 10px;
  font-size:1.18rem;
}
.argument-grid p{margin:0;color:var(--muted)}

.faq-list{
  display:grid;
  gap:16px;
}
.faq-list details{
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  padding:0 22px;
  box-shadow:0 10px 26px rgba(0,27,45,.05);
}
.faq-list summary{
  list-style:none;
  cursor:pointer;
  font-weight:700;
  padding:22px 0;
  position:relative;
  padding-right:36px;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  font-size:1.6rem;
  color:var(--primary);
}
.faq-list details[open] summary::after{content:"−"}
.faq-list p{
  margin:0 0 22px;
  color:var(--muted);
}

.contact-section{
  background:#fff;
}
.contact-wrap{
  grid-template-columns:1.1fr .9fr;
}
.contact-card{
  padding:32px;
}
.contact-card p{color:var(--muted)}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:24px 0 26px;
}
.contact-actions .btn-secondary{
  color:var(--primary);
  border-color:var(--line);
  background:#fff;
}
.contact-mini-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.contact-mini-grid div{
  padding:18px;
  background:var(--soft);
  border-radius:18px;
}
.contact-mini-grid strong{
  display:block;
  margin-bottom:6px;
}
.contact-mini-grid span, .contact-mini-grid a{
  color:var(--muted);
  word-break:break-word;
}
.brand-panel{
  height:100%;
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  background:linear-gradient(180deg, #f9fcff 0%, #eef5fb 100%);
}
.brand-panel img{
  max-width:280px;
  height:auto;
  object-fit:contain;
  margin-bottom:18px;
}
.brand-panel p{color:var(--muted);max-width:420px}

.footer{
  border-top:1px solid var(--line);
  background:#fff;
  padding:28px 0;
}
.footer-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:16px;
}
.footer-brand img{
  height:40px;
  width:auto;
}
.footer-brand p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}
.footer-links{
  display:flex;
  align-items:center;
  gap:18px;
  font-weight:600;
  color:var(--muted);
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:25;
  min-height:58px;
  padding:0 20px;
  border-radius:999px;
  background:#0a7c49;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 20px 45px rgba(10,124,73,.32);
  font-weight:800;
}
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(5,11,16,.88);
  display:none;
  align-items:center;
  justify-content:center;
  padding:30px;
  z-index:50;
}
.lightbox.is-open{display:flex}
.lightbox img{
  max-width:min(1200px, 100%);
  max-height:88vh;
  border-radius:20px;
  box-shadow:0 25px 80px rgba(0,0,0,.35);
}
.lightbox-close{
  position:absolute;
  right:18px;
  top:18px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:0;
  background:#fff;
  color:var(--primary);
  font-size:1.9rem;
  cursor:pointer;
}

@media (max-width: 1100px){
  .attribute-grid,
  .spec-grid,
  .argument-grid,
  .gallery-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .section-grid, .lifestyle-grid, .investment-wrap, .contact-wrap, .gallery-lead{
    grid-template-columns:1fr;
  }
  .visual-panel{min-height:420px}
}

@media (max-width: 860px){
  .topbar-inner{flex-direction:column;align-items:flex-start}
  .menu-toggle{display:block}
  .nav{
    position:absolute;
    top:calc(100% + 8px);
    right:16px;
    left:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:14px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow);
  }
  .nav.is-open{display:flex}
  .nav a{
    padding:12px 14px;
    border-radius:14px;
  }
  .nav a:hover{background:var(--soft)}
  .nav-cta{text-align:center}
  .hero{min-height:auto}
  .hero-content{padding:72px 0 56px}
  .hero-metrics,
  .check-grid,
  .value-points,
  .contact-mini-grid{grid-template-columns:1fr}
  .thumbs{grid-template-columns:repeat(3,1fr)}
  .gallery-stage{min-height:300px}
  .footer-wrap,
  .footer-brand{flex-direction:column;align-items:flex-start}
}

@media (max-width: 640px){
  .section{padding:72px 0}
  .brand img{height:38px}
  .nav-wrap{min-height:74px}
  .hero h1{font-size:clamp(2rem, 10vw, 3rem)}
  .hero-text{font-size:1rem}
  .hero-actions .btn,
  .contact-actions .btn{width:100%}
  .attribute-grid,
  .spec-grid,
  .argument-grid,
  .gallery-grid{grid-template-columns:1fr}
  .thumbs{grid-template-columns:repeat(2,1fr)}
  .gallery-card img{height:220px}
  .whatsapp-float{
    left:16px;
    right:16px;
    bottom:16px;
  }
}
