
/* =========================
   MGC Interiores — RADICAL MODERN 2026
   ========================= */

:root{
  --bg:#0a0a0b;
  --glass:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.16);
  --text:#f5f5f5;
  --muted:#b8b8b8;
  --brand:#c9a87a;
  --brand-strong:#e0c38f;
  --radius:22px;
}

html{scroll-behavior:smooth}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#ffffff;
}

/* ================= HERO ================= */
#hero.hero-2026{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.55)),
    url("../img/hero-bg.jpg") center/cover no-repeat;
}

#hero.hero-2026 .hero-text{
  max-width:640px;
  padding:56px 40px;
  background:var(--glass);
  backdrop-filter: blur(22px) saturate(160%);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 40px 120px rgba(0,0,0,.55);
}

#hero.hero-2026 h1{
  font-size:clamp(40px,6vw,64px);
  font-weight:900;
  letter-spacing:-0.02em;
  margin-bottom:14px;
  color:var(--text);
}

#hero.hero-2026 p{
  font-size:18px;
  color:var(--muted);
  margin-bottom:6px;
}

#hero.hero-2026 .btn-get-started{
  margin-top:26px;
  padding:14px 28px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--brand),var(--brand-strong));
  color:#0a0a0b;
  font-weight:800;
  letter-spacing:.4px;
  box-shadow:0 18px 40px rgba(201,168,122,.45);
  transition:transform .2s ease, box-shadow .2s ease;
}
#hero.hero-2026 .btn-get-started:hover{
  transform:translateY(-2px);
  box-shadow:0 26px 60px rgba(201,168,122,.55);
}

@media(max-width:768px){
  #hero.hero-2026 .hero-text{
    padding:40px 22px;
    margin:0 14px;
  }
}

/* ================= WhatsApp FAB ================= */
.whatsapp-fab{
  position:fixed;
  right:22px;
  bottom:22px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  z-index:99999;
}
.whatsapp-fab i{
  font-size:28px;
  color:#fff;
}

/* ================= Sections ================= */
section{
  padding:96px 0;
}
@media(max-width:768px){
  section{padding:72px 0}
}

.section-title h2{
  font-size:clamp(32px,4vw,44px);
  font-weight:800;
}

/* ================= Gallery ================= */
#gallery img{
  height:clamp(220px,30vw,320px);
  border-radius:18px;
}

/* ================= Contact ================= */
#contact input,
#contact textarea{
  border-radius:14px !important;
  padding:14px !important;
}
