:root {
  color-scheme: dark;
  --foreground: #f8f4f0;
  --panel-border: rgba(255, 255, 255, 0.12);
  --muted: #d7d1cb;
}

* { box-sizing: border-box; }

html { min-height: 100%; scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at top, rgba(215, 38, 38, 0.2), transparent 35%), linear-gradient(135deg, #0d0d0d 0%, #121212 45%, #090909 100%);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

.page-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 32px 20px;
}

.glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}

.orb-one { top: 8%; left: 18%; width: 320px; height: 320px; background: rgba(220, 38, 38, 0.45); }
.orb-two { right: 16%; bottom: 10%; width: 300px; height: 300px; background: rgba(251, 191, 36, 0.2); }

.business-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 28px 22px 22px;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(10, 10, 10, 0.94));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.card-topbar { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.brand-mark { display: grid; width: 72px; height: 72px; place-items: center; padding: 6px; border: 1px solid rgba(255, 255, 255, 0.03); border-radius: 14px; background: #000; color: #fff; font-weight: 800; letter-spacing: 0.08em; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); }
.brand-logo { display: block; width: 100%; height: 100%; border-radius: 10px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-name { margin: 0; font-size: 1.4rem; font-weight: 800; letter-spacing: 0.04em; }
.brand-copy span { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

.hero-block { display: flex; align-items: end; justify-content: space-between; gap: 16px; padding-top: 26px; }
.eyebrow { margin: 0 0 10px; color: #fbbf24; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.hero-block h1 { max-width: 250px; margin: 0; font-size: clamp(0.72rem, 1.6vw, 0.95rem); font-weight: 700; line-height: 1.2; }
.feature-pill { align-self: flex-start; padding: 9px 12px; border: 1px solid rgba(251, 191, 36, 0.28); border-radius: 999px; background: rgba(251, 191, 36, 0.12); color: #fcd34d; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }

.info-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 22px 0 18px; }
.info-row > div { padding: 14px 12px; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 16px; background: rgba(255, 255, 255, 0.02); }
.label { display: block; margin-bottom: 6px; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.info-row strong { font-size: 0.96rem; }

.button-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding-top: 10px; }
.action-button { display: flex; min-height: 58px; align-items: center; justify-content: center; gap: 10px; padding: 14px 16px; border-radius: 18px; color: #fff; font-weight: 700; letter-spacing: 0.02em; text-decoration: none; box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.action-button:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32); }
.social-instagram { background: linear-gradient(110deg, #f58529, #dd2a7b, #8134af); }
.social-facebook { background: linear-gradient(110deg, #1877f2, #0b57d0); }
.social-whatsapp { background: linear-gradient(110deg, #25d366, #128c7e); }
.social-phone { background: linear-gradient(110deg, #f59e0b, #ea580c); }
.icon-wrap { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; }
.icon-wrap svg { width: 100%; height: 100%; }

@media (max-width: 480px) {
  .business-card { padding: 22px 18px 18px; }
  .hero-block { flex-direction: column; align-items: flex-start; }
  .button-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .action-button { transition: none; }
}
