:root {
  --primary: #f16464;
  --primary-dark: #d94d4d;
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #1f2a44;
  --muted: #6b7280;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, #ffe3e3, #f6f7fb 45%);
  color: var(--text);
}

.page {
  max-width: 960px;
  margin: 48px auto;
  padding: 0 20px 40px;
}

.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  padding: 28px 24px;
  border-radius: 24px;
  position: relative;
  box-shadow: var(--shadow);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #ffffff;
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.logo-cover {
  width: 96px;
  height: 72px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
}

.logo-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.9;
}

h1 {
  margin: 0 0 6px;
  font-size: 2rem;
}

.subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  display: grid;
  gap: 6px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.label {
  font-size: 1rem;
  font-weight: 700;
}

.desc {
  font-size: 0.9rem;
  color: var(--muted);
}

.info-block {
  margin-top: 30px;
  background: var(--card);
  border-radius: 22px;
  padding: 20px 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.info-eyebrow {
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
}

.info-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.info-subtitle a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.info-subtitle a:hover {
  text-decoration: underline;
}

.info-chip {
  background: rgba(241, 100, 100, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(241, 100, 100, 0.2);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.info-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  padding: 14px;
  background: #fff8f6;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.info-card h3 {
  margin: 0 0 8px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.icon.whatsapp {
  color: #25d366;
}

.icon.mail {
  color: var(--primary-dark);
}

.info-card ol,
.info-card ul {
  margin: 0 0 8px 18px;
  padding: 0;
  color: var(--text);
}

.info-card p {
  margin: 0 0 6px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 640px) {
  .page {
    margin-top: 28px;
  }

  .hero {
    padding: 24px;
  }

  h1 {
    font-size: 1.7rem;
  }
}
