:root{
  --bg:#050505;
  --bg2:#0b0b0b;
  --card:#111111;
  --card2:#181818;

  --text:#ffffff;
  --muted:#b9b9b9;

  --gold:#c89b3c;
  --gold2:#f1d089;

  --border:rgba(200,155,60,.22);

  --shadow:
  0 25px 70px rgba(0,0,0,.45);

  --radius:28px;
}

body.light{
  --bg:#f5f1e8;
  --bg2:#ffffff;
  --card:#ffffff;
  --card2:#f7f4ed;

  --text:#111111;
  --muted:#666666;

  --gold:#b8862f;
  --gold2:#d8b15b;

  --border:rgba(184,134,47,.18);

  --shadow:
  0 18px 50px rgba(0,0,0,.10);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:
  Arial,
  Helvetica,
  sans-serif;

  background:
  radial-gradient(
    circle at top left,
    rgba(200,155,60,.15),
    transparent 30%
  ),
  linear-gradient(
    135deg,
    var(--bg),
    var(--bg2)
  );

  color:var(--text);

  min-height:100vh;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

/* HEADER */

.main-header{
  width:100%;

  height:82px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  padding:0 30px;

  border-bottom:
  1px solid var(--border);

  position:sticky;

  top:0;

  z-index:999;

  backdrop-filter:blur(15px);

  background:
  rgba(0,0,0,.35);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  width:55px;
  height:55px;
  object-fit:contain;
}

.brand span{
  font-size:22px;
  font-weight:900;
  color:var(--gold2);
}

.desktop-menu{
  display:flex;
  align-items:center;
  gap:28px;
}

.desktop-menu a{
  color:var(--muted);
  font-weight:700;
  transition:.25s;
}

.desktop-menu a:hover{
  color:var(--gold2);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.whatsapp-header{
  padding:12px 20px;

  border-radius:999px;

  background:
  linear-gradient(
    135deg,
    var(--gold),
    var(--gold2)
  );

  color:#111;

  font-weight:900;
}

.theme-btn{
  width:48px;
  height:48px;

  border-radius:50%;

  border:1px solid var(--border);

  background:var(--card);

  color:var(--gold2);

  font-size:20px;

  cursor:pointer;
}

/* DESKTOP HOME */

.desktop-home{
  max-width:1350px;

  margin:40px auto;

  padding:0 25px;

  display:grid;

  grid-template-columns:
  1fr
  430px;

  gap:30px;

  align-items:center;
}

.desktop-hero-left{
  padding-right:20px;
}

.mini-title{
  display:inline-flex;

  padding:10px 16px;

  border-radius:999px;

  background:
  rgba(200,155,60,.10);

  color:var(--gold2);

  font-weight:800;

  margin-bottom:20px;
}

.desktop-hero-left h1{
  font-size:72px;

  line-height:1.1;

  margin-bottom:22px;
}

.desktop-hero-left p{
  font-size:18px;

  color:var(--muted);

  line-height:1.8;

  max-width:720px;
}

.hero-actions{
  margin-top:30px;

  display:flex;

  gap:16px;

  flex-wrap:wrap;
}

.gold-btn{
  padding:16px 26px;

  border-radius:18px;

  background:
  linear-gradient(
    135deg,
    var(--gold),
    var(--gold2)
  );

  color:#111;

  font-weight:900;
}

.outline-btn{
  padding:16px 26px;

  border-radius:18px;

  border:1px solid var(--border);

  background:var(--card);

  font-weight:800;
}

/* PREVIEW CARD */

.preview-card{
  background:
  rgba(255,255,255,.04);

  border:
  1px solid var(--border);

  border-radius:34px;

  padding:28px;

  box-shadow:var(--shadow);
}

.preview-logo{
  width:95px;
  margin:auto;
}

.preview-card h2{
  text-align:center;

  margin-top:18px;

  font-size:36px;

  color:var(--gold2);
}

.preview-card p{
  text-align:center;

  color:var(--muted);

  margin-top:10px;

  line-height:1.7;
}

.preview-grid{
  margin-top:30px;

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:16px;
}

.preview-grid a{
  min-height:150px;

  background:var(--card);

  border:1px solid var(--border);

  border-radius:24px;

  padding:18px;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  gap:12px;

  transition:.25s;
}

.preview-grid a:hover{
  transform:translateY(-5px);
}

.preview-grid img{
  width:58px;
  height:58px;
  object-fit:contain;
}

.preview-grid span{
  font-weight:900;
  text-align:center;
}

/* MOBILE HOME */

.mobile-home{
  display:none;
}

.mobile-top{
  display:flex;

  align-items:center;

  justify-content:space-between;

  margin-bottom:24px;
}

.mobile-top img{
  width:70px;
  height:70px;
  object-fit:contain;
}

.round-btn{
  width:46px;
  height:46px;

  border-radius:50%;

  border:1px solid var(--border);

  background:var(--card);

  color:var(--gold2);

  font-size:20px;
}

.mobile-welcome h1{
  font-size:38px;
}

.mobile-welcome p{
  color:var(--muted);

  margin-top:8px;
}

.mobile-search{
  margin-top:22px;

  display:flex;

  gap:10px;
}

.mobile-search input{
  flex:1;

  padding:15px;

  border-radius:18px;

  border:1px solid var(--border);

  background:var(--card);

  color:var(--text);

  outline:none;
}

.mobile-search button{
  width:54px;

  border-radius:18px;

  border:none;

  background:
  linear-gradient(
    135deg,
    var(--gold),
    var(--gold2)
  );
}

.mobile-services{
  margin-top:24px;

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:14px;
}

.mobile-services a{
  background:var(--card);

  border:1px solid var(--border);

  border-radius:24px;

  min-height:140px;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  gap:12px;

  padding:18px;

  transition:.25s;
}

.mobile-services a:hover{
  transform:translateY(-4px);
}

.mobile-services img{
  width:58px;
  height:58px;
  object-fit:contain;
}

.mobile-services span{
  text-align:center;

  font-weight:800;
}

.mobile-tiak{
  margin-top:22px;

  background:
  linear-gradient(
    135deg,
    rgba(200,155,60,.15),
    rgba(200,155,60,.05)
  );

  border:1px solid var(--border);

  border-radius:28px;

  padding:20px;

  display:flex;

  align-items:center;

  gap:16px;
}

.mobile-tiak img{
  width:70px;
}

.mobile-tiak span{
  color:var(--muted);

  font-size:13px;
}

.mobile-tiak strong{
  display:block;

  margin-top:4px;

  font-size:24px;

  color:var(--gold2);
}

/* SERVICE ROW */

.service-row{
  max-width:1350px;

  margin:35px auto;

  padding:0 25px;

  display:grid;

  grid-template-columns:
  repeat(4,1fr);

  gap:18px;
}

.service-row a{
  background:var(--card);

  border:1px solid var(--border);

  border-radius:30px;

  padding:24px;

  min-height:240px;

  transition:.25s;

  box-shadow:var(--shadow);
}

.service-row a:hover{
  transform:translateY(-6px);
}

.service-row img{
  width:68px;
  height:68px;
  object-fit:contain;
  margin-bottom:20px;
}

.service-row strong{
  display:block;

  font-size:24px;

  color:var(--gold2);

  margin-bottom:12px;
}

.service-row span{
  color:var(--muted);

  line-height:1.8;
}

/* FOOTER */

.main-footer{
  margin-top:50px;

  padding:35px 20px;

  text-align:center;

  border-top:1px solid var(--border);

  color:var(--muted);
}

.main-footer a{
  display:inline-block;

  margin:10px;

  color:var(--gold2);

  font-weight:800;
}

/* RESPONSIVE */

@media(max-width:1100px){

.desktop-home{
  grid-template-columns:1fr;
}

.desktop-hero-left{
  text-align:center;
  padding-right:0;
}

.desktop-hero-left p{
  margin:auto;
}

.hero-actions{
  justify-content:center;
}

.preview-card{
  max-width:500px;
  margin:auto;
}

.service-row{
  grid-template-columns:
  repeat(2,1fr);
}

}

@media(max-width:760px){

.main-header{
  display:none;
}

.desktop-home{
  display:none;
}

.mobile-home{
  display:block;

  padding:20px 18px 10px;
}

.service-row{
  grid-template-columns:1fr;
  padding:0 18px;
}

.service-row a{
  min-height:auto;
}

.preview-grid{
  grid-template-columns:1fr;
}

}

@media(max-width:500px){

.mobile-services a{
  min-height:125px;
}

.mobile-services img{
  width:50px;
  height:50px;
}

.mobile-welcome h1{
  font-size:32px;
}

}