:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --primary: #111827;
  --secondary: #6b7280;
  --border: #e5e7eb;
  --accent: #2563eb;
  --whatsapp: #25d366;
}

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

/* BODY */
body {
  font-family: 'poppins', sans-serif;
  background: var(--bg);
  color: var(--primary);
  display: flex;
  justify-content: center;
  padding: 30px 15px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 420px;
}

/* PROFILE */
.profile {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 600;
}

.profile h1 {
  font-size: 22px;
  margin-bottom: 5px;
}

.profile p {
  font-size: 14px;
  color: var(--secondary);
}

/* SERVICES */
.services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--card);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: 0.2s ease;
}

/* .service-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
} */

.service-card i {
  font-size: 18px;
  color: var(--accent);
  margin-top: 4px;
}

.service-card h3 {
  font-size: 15px;
  margin-bottom: 3px;
}

.service-card p {
  font-size: 13px;
  color: var(--secondary);
}

/* LINKS */
.links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--primary);
  font-size: 14px;
  transition: 0.2s;
}

.link-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* CTA */
.cta {
  margin-top: 20px;
}

.whatsapp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: white;
  text-decoration: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 500;
  transition: 0.2s;
}

.whatsapp-btn:hover {
  opacity: 0.9;
}

/* FOOTER */
footer {
  margin-top: 25px;
  text-align: center;
  font-size: 12px;
  color: var(--secondary);
}