:root {
  --bg1: #0f172a;
  --bg2: #1e293b;
  --bg3: #020817;
  --accent: #fbbf24;
  --accent-strong: #f59e0b;
  --glass: rgba(15, 23, 42, 0.72);
  --card-border: rgba(255,255,255,0.14);
  --text: #f8fafc;
  --muted: #cbd5e1;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Inter", system-ui, sans-serif; }

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #1e293b 0%, var(--bg1) 35%, var(--bg3) 100%);
  color: var(--text);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 28px 0;
}

.bg-blur {
  position: fixed;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(251,191,36,0.35) 0%, rgba(245,158,11,0.18) 28%, transparent 70%);
  filter: blur(100px);
  animation: float 8s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes float {
  from { transform: translate(-8%, -8%) scale(1); }
  to { transform: translate(10%, 12%) scale(1.12); }
}

.card {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 420px;
  padding: 28px 24px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15,23,42,0.86), rgba(15,23,42,0.72));
  backdrop-filter: blur(18px);
  border: 1px solid var(--card-border);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.68), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 18px;
  width: fit-content;
  padding: 7px 14px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #86efac;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.logo {
  width: 150px;
  height: 150px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(135deg, #fff8d8 0%, #ffffff 50%, #fef3c7 100%);
  border: 3px solid rgba(251,191,36,0.7);
  box-shadow: 0 0 0 8px rgba(251,191,36,0.15), 0 18px 35px rgba(245,158,11,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo:hover {
  transform: translateY(-4px) rotate(3deg) scale(1.02);
  box-shadow: 0 0 0 10px rgba(251,191,36,0.18), 0 22px 40px rgba(245,158,11,0.4);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(15, 23, 42, 0.18));
}

h1 {
  text-align: center;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.actions { display: flex; gap: 12px; margin-bottom: 20px; }
.btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.28);
  filter: brightness(1.05);
}
.btn-call { background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #1f2937; }
.btn-whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); }

.info-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148,163,184,0.12);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.info-row:hover {
  background: rgba(255,255,255,0.07);
  transform: translateX(4px);
  border-color: rgba(251,191,36,0.26);
}
.info-row.link { text-decoration: none; color: inherit; cursor: pointer; }
.location-row {
  background: linear-gradient(135deg, rgba(134, 239, 172, 0.9), rgba(163, 230, 53, 0.8));
  border: 1px solid rgba(134, 239, 172, 0.9);
  color: #0f172a;
  box-shadow: 0 12px 24px rgba(74, 222, 128, 0.18);
}
.location-row:hover {
  background: linear-gradient(135deg, rgba(134, 239, 172, 1), rgba(163, 230, 53, 0.84));
  border-color: rgba(34, 197, 94, 0.7);
  transform: translateY(-2px);
}
.location-row .label,
.location-row .value {
  color: #0f172a;
}
.website-row {
  background: rgba(255,255,255,0.04);
}
.address-row {
  background: rgba(255,255,255,0.05);
  align-items: flex-start;
}
.address-row .value {
  line-height: 1.45;
  font-size: 13px;
}
.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(251,191,36,0.16);
  font-size: 18px;
}
.location-row .icon-box {
  background: rgba(15, 23, 42, 0.08);
}
.address-row .icon-box {
  background: rgba(251,191,36,0.18);
}
.label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.value { font-size: 14px; font-weight: 700; }

.socials { display: flex; gap: 12px; margin: 18px 0 16px; }
.btn-social {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: white;
  transition: transform 0.25s ease;
}
.btn-social:hover { transform: translateY(-2px); }
.fb { background: linear-gradient(135deg, #1877f2, #0d65d9); }
.ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }

.footer { text-align: center; font-size: 12px; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }
.footer p { margin: 4px 0; }

.tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.tags span {
  padding: 6px 12px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1e293b;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  animation: pop 0.6s ease backwards;
}
.tags span:nth-child(1){animation-delay:0.2s}
.tags span:nth-child(2){animation-delay:0.3s}
.tags span:nth-child(3){animation-delay:0.4s}

@keyframes pop {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}