:root {
  --bg: #050507;
  --card: #101216;
  --red: #ff1f3d;
  --text: #ffffff;
  --muted: #9aa0aa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: radial-gradient(circle at top, #0d0f14, #050507 60%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.logo-section {
  margin-bottom: 40px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 800;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
  border-radius: 8px;
}

.logo-text {
  color: var(--red);
}

.maintenance-container {
  max-width: 620px;
  width: 100%;
  background: linear-gradient(180deg, #111319, #0a0b0f);
  padding: 55px 45px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,.75);
}

.maintenance-icon {
  width: 120px;
  margin: 0 auto 35px;
}

svg circle,
svg rect {
  stroke: var(--red);
  fill: none;
  stroke-width: 3;
}

.gear {
  animation: rotate 8s linear infinite;
  transform-origin: center;
}

h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 18px;
}

h1 span {
  color: var(--red);
}

.message {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 45px;
}

.contact-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 28px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
}

.contact-card {
  background: rgba(255,255,255,.04);
  padding: 26px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
}

.contact-card h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-card a {
  display: block;
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Platform colors */
.contact-card.instagram a {
  background: linear-gradient(135deg, #ff1f3d, #b8122a);
  box-shadow: 0 6px 20px rgba(255,31,61,.35);
}

.contact-card.whatsapp a,
.contact-card.phone a {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.contact-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}

footer {
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
  h1 {
    font-size: 32px;
  }

  .maintenance-container {
    padding: 40px 28px;
  }
}
