:root{
  --bg:#090c0e;
  --surface:#111619;
  --surface-2:#171d21;
  --soft:#f3f4f2;
  --white:#ffffff;
  --primary:#174d39;
  --primary-2:#21664c;
  --accent:#d9982f;
  --accent-hover:#efad45;
  --text:#eef1f2;
  --text-dark:#151b1e;
  --muted:#929da4;
  --border:#283036;
  --max:1200px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button{
  font:inherit;
}

.container{
  width:min(92%,var(--max));
  margin:auto;
}

.header{
  height:78px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(8,11,13,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img{
  width:210px;
  height:auto;
}

.nav{
  display:flex;
  align-items:center;
  gap:25px;
}

.nav a{
  font-size:.9rem;
  color:#c0c7cb;
}

.nav a:hover{
  color:#fff;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 23px;
  border:1px solid transparent;
  border-radius:7px;
  font-weight:750;
  cursor:pointer;
  transition:.2s ease;
}

.btn-small{
  min-height:42px;
  padding:0 17px;
  font-size:.86rem;
}

.btn-accent{
  background:var(--accent);
  color:#15110a;
}

.btn-accent:hover{
  background:var(--accent-hover);
  transform:translateY(-1px);
}

.btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.35);
  background:rgba(0,0,0,.12);
}

.btn-outline:hover{
  border-color:#fff;
}

.hero{
  min-height:820px;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    url("../images/foto-01.jpg")
    center/cover no-repeat;
  transform:scale(1.02);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(5,8,9,.94) 0%,
      rgba(5,8,9,.82) 45%,
      rgba(5,8,9,.28) 77%,
      rgba(5,8,9,.12) 100%
    );
}

.hero-content{
  position:relative;
  z-index:2;
  padding-top:115px;
}

.eyebrow{
  display:inline-block;
  color:var(--accent);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.16em;
}

.eyebrow.dark{
  color:var(--primary);
}

.hero h1{
  max-width:820px;
  margin:15px 0 22px;
  font-size:clamp(2.6rem,5vw,5rem);
  line-height:1.02;
  letter-spacing:-.04em;
}

.hero h1 span{
  color:#d9aa58;
}

.hero-text{
  max-width:680px;
  font-size:1.15rem;
  color:#c8ced1;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:31px 0 55px;
}

.hero-data{
  max-width:900px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:rgba(11,15,17,.78);
  border:1px solid rgba(255,255,255,.11);
  backdrop-filter:blur(12px);
  border-radius:10px;
}

.hero-data > div{
  padding:19px 22px;
}

.hero-data > div + div{
  border-left:1px solid rgba(255,255,255,.1);
}

.hero-data small{
  display:block;
  color:#8f999e;
  font-size:.67rem;
  letter-spacing:.1em;
}

.hero-data strong{
  display:block;
  margin:5px 0 1px;
  font-size:1.18rem;
}

.hero-data span{
  color:#99a3a8;
  font-size:.8rem;
}

.section{
  padding:100px 0;
  background:#fff;
  color:var(--text-dark);
}

.section-dark{
  background:var(--surface);
  color:var(--text);
}

.section-soft{
  background:var(--soft);
}

.section-cta{
  background:#0d2119;
  color:#fff;
}

.section-heading{
  max-width:760px;
  margin-bottom:45px;
}

.section-heading h2,
.split-copy h2,
.cta-box h2{
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.08;
  letter-spacing:-.03em;
  margin:10px 0 18px;
}

.section-heading p,
.split-copy p,
.cta-box p{
  color:#69757b;
  font-size:1.05rem;
}

.section-dark .split-copy p,
.section-cta p{
  color:#aab5ba;
}

.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature{
  padding:28px;
  background:#f6f7f6;
  border:1px solid #e2e5e3;
  border-radius:10px;
}

.feature > span{
  color:var(--accent);
  font-weight:800;
}

.feature h3{
  margin:25px 0 8px;
  font-size:1.35rem;
}

.feature p{
  color:#667177;
}

.split{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:65px;
  align-items:center;
}

.split-image img{
  width:100%;
  height:540px;
  object-fit:cover;
  border-radius:11px;
}

.check-list{
  list-style:none;
  padding:0;
  margin:28px 0 0;
}

.check-list li{
  padding:12px 0;
  border-bottom:1px solid var(--border);
  color:#d3d8da;
}

.check-list li:before{
  content:"✓";
  color:var(--accent);
  margin-right:10px;
  font-weight:800;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}

.gallery-item{
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
  overflow:hidden;
  border-radius:7px;
}

.gallery-item img{
  width:100%;
  height:230px;
  object-fit:cover;
  transition:transform .3s ease;
}

.gallery-item:hover img{
  transform:scale(1.035);
}

.location-card{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#fff;
  border:1px solid #dfe3e1;
  border-radius:10px;
}

.location-card div{
  padding:25px;
}

.location-card div + div{
  border-left:1px solid #e2e5e3;
}

.location-card small{
  display:block;
  color:#828d92;
  font-size:.7rem;
  letter-spacing:.1em;
}

.location-card strong{
  display:block;
  margin-top:5px;
  font-size:1.25rem;
}

.cta-box{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
}

.cta-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.cta-actions small{
  text-align:center;
  color:#89968f;
}

.faq-wrap{
  max-width:850px;
}

details{
  border-top:1px solid #dce0de;
  padding:20px 0;
}

details:last-child{
  border-bottom:1px solid #dce0de;
}

summary{
  cursor:pointer;
  font-weight:700;
  font-size:1.05rem;
}

details p{
  color:#657077;
  max-width:720px;
}

.footer{
  padding:38px 0;
  background:#07090a;
  color:#8e989d;
}

.footer-inner{
  display:grid;
  grid-template-columns:220px 1fr auto;
  gap:35px;
  align-items:center;
}

.footer-inner img{
  max-width:190px;
}

.footer-inner strong{
  color:#d8dcde;
}

.footer-inner p{
  margin:3px 0 0;
}

.footer-note{
  font-size:.8rem;
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,.94);
  display:none;
  align-items:center;
  justify-content:center;
  padding:30px;
}

.lightbox.open{
  display:flex;
}

.lightbox img{
  max-width:95vw;
  max-height:90vh;
  object-fit:contain;
}

.lightbox-close{
  position:absolute;
  right:25px;
  top:18px;
  border:0;
  background:none;
  color:#fff;
  font-size:2.5rem;
  cursor:pointer;
}

@media(max-width:950px){

  .nav{
    display:none;
  }

  .header .btn-small{
    display:none;
  }

  .hero{
    min-height:760px;
  }

  .hero-data,
  .features,
  .location-card{
    grid-template-columns:1fr;
  }

  .hero-data > div + div,
  .location-card div + div{
    border-left:0;
    border-top:1px solid rgba(255,255,255,.1);
  }

  .split,
  .cta-box{
    grid-template-columns:1fr;
  }

  .gallery{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-inner{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){

  .header{
    height:68px;
  }

  .brand img{
    width:170px;
  }

  .hero{
    min-height:810px;
  }

  .hero-bg{
    background-position:center;
  }

  .hero-overlay{
    background:
      linear-gradient(
        180deg,
        rgba(5,8,9,.58),
        rgba(5,8,9,.93) 67%
      );
  }

  .hero-content{
    padding-top:95px;
  }

  .hero h1{
    font-size:2.65rem;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .section{
    padding:72px 0;
  }

  .gallery{
    grid-template-columns:1fr;
  }

  .gallery-item img{
    height:260px;
  }

  .split-image img{
    height:350px;
  }
}

@media(prefers-reduced-motion:reduce){
  *{
    scroll-behavior:auto!important;
    transition:none!important;
  }
}
