:root{
  --bg:#070707;
  --bg2:#101010;
  --card:#151515;
  --gold:#d8aa45;
  --gold2:#f4d98a;
  --text:#f4f1ea;
  --muted:#b6afa2;
  --line:rgba(216,170,69,.28);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(7,7,7,.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  padding:12px 0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:18px;
}

.brand img,
.logo img{

height:70px;

width:auto;

display:block;

}

.brand-subtitle{
  font-size:18px;
  line-height:1.1;
  color:var(--gold2);
  font-weight:800;
  letter-spacing:1px;
}

.main-nav{
  display:flex;
  gap:20px;
  font-size:14px;
  font-weight:700;
  align-items:center;
}

.main-nav a{
  transition:.3s;
  color:#f4f1ea;
}

.main-nav a:hover{
  color:var(--gold);
}

.menu-toggle{
  display:none;
  background:#111;
  color:var(--gold2);
  border:1px solid var(--line);
  border-radius:10px;
  font-size:26px;
  padding:8px 14px;
  cursor:pointer;
}

/* GENERAL */

.section{
  padding:90px 0;
}

.section-dark{
  background:var(--bg2);
}

.section-head{
  max-width:760px;
  margin-bottom:60px;
}

.section-kicker{
  color:var(--gold);
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:13px;
}

h1{
  font-size:58px;
  line-height:1.1;
  margin:20px 0;
}

h2{
  font-size:40px;
  line-height:1.2;
  margin-bottom:20px;
}

h3{
  line-height:1.3;
}

p{
  color:var(--muted);
}

/* HERO */

.page-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.page-hero-content p{
  font-size:18px;
}

.hero-image img{
  border-radius:24px;
  box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.hero-actions{
  display:flex;
  gap:16px;
  margin-top:30px;
  flex-wrap:wrap;
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 28px;
  border-radius:12px;
  font-weight:800;
  transition:.3s;
}

.btn-primary{
  background:var(--gold);
  color:#111;
}

.btn-primary:hover{
  transform:translateY(-2px);
  background:var(--gold2);
}

.btn-outline{
  border:1px solid var(--line);
  color:#fff;
}

.btn-outline:hover{
  background:#151515;
  color:var(--gold2);
}

/* CARDS */

.page-hero-card,
.text-card,
.service-card,
.project-card,
.faq-item{
  background:var(--card);
  padding:32px;
  border-radius:22px;
  border:1px solid var(--line);
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

.service-card:hover,
.project-card:hover,
.faq-item:hover{
  transform:translateY(-6px);
  transition:.3s;
  border-color:rgba(216,170,69,.55);
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

.why-list{
  display:grid;
  gap:20px;
}

.why-list div{
  background:var(--card);
  padding:22px;
  border-radius:18px;
  border:1px solid var(--line);
}

.why-list strong{
  color:var(--gold);
  display:block;
  margin-bottom:8px;
}

.why-list span{
  color:var(--muted);
}

/* TRUST SECTION */

.trust-section{
  padding:70px 0;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.trust-item{
  background:#121212;
  padding:30px;
  border:1px solid rgba(216,170,69,.25);
  border-radius:16px;
}

.trust-item h3{
  margin-top:0;
  color:#d8aa45;
}

.trust-item p{
  opacity:.9;
  line-height:1.7;
}

/* CTA */

.cta-box{
  background:linear-gradient(135deg,#151515,#222);
  padding:50px;
  border-radius:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  border:1px solid var(--line);
}

/* FAQ */

.faq-list{
  display:grid;
  gap:20px;
}

/* CONTACT */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.map-card{
  height:450px;
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--line);
}

.map-card iframe{
  width:100%;
  height:100%;
}

.map-button{
  margin-top:20px;
  width:100%;
}

/* FOOTER */

.site-footer{
  padding:50px 0;
  border-top:1px solid var(--line);
  background:#050505;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-inner img{
  height:68px;
  width:auto;
}

.footer-copy{
  color:var(--muted);
}

/* FLOAT WHATSAPP */

.whatsapp-float{
  position:fixed;
  right:25px;
  bottom:25px;
  background:#25D366;
  color:white;
  padding:15px 24px;
  border-radius:50px;
  font-weight:800;
  z-index:9999;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.whatsapp-float:hover{
  background:#1ebe5d;
}

/* MOBILE */

@media(max-width:900px){

  .site-header{
padding:12px 0;
  }

  .brand img,
  .logo img{
    height:54px;
  }

  .brand-subtitle{
    font-size:12px;
  }

  .menu-toggle{
    display:block;
  }

  .main-nav{
    display:none;
  }

  .main-nav.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#111;
    padding:20px;
    border-radius:18px;
    border:1px solid var(--line);
    z-index:9999;
    gap:14px;
  }

  .main-nav.open a{
    display:block;
    padding:10px 0;
  }

  .page-hero,
  .contact-grid,
  .split,
  .why-grid,
  .services-grid,
  .projects-grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:42px;
  }

  h2{
    font-size:32px;
  }

  .cta-box{
    flex-direction:column;
    text-align:center;
  }
}

@media(max-width:600px){

  .section{
    padding:70px 0;
  }

  h1{
    font-size:36px;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }

  .whatsapp-float{
    right:15px;
    bottom:15px;
    padding:13px 20px;
  }
}