:root {
  --brand-900: #7a0c17;
  --brand-700: #a3111f;
  --brand-500: #d41f2c;
  --accent-red: #e2231a;
  --bg: #faf5f5;
  --card-bg: #ffffff;
  --text: #1c2733;
  --text-muted: #6b5a5c;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(122, 12, 23, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--brand-900), var(--brand-500));
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.role {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

/* Buttons */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn:hover { transform: translateY(-2px); opacity: 0.95; }

.btn-whatsapp {
  background: #25d366;
  color: #05360f;
}

.btn-call {
  background: #ffffff;
  color: var(--brand-900);
}

.btn-email {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* About */
.about {
  text-align: center;
  padding: 56px 0 8px;
}

.about h2 {
  font-size: 1.6rem;
  color: var(--brand-900);
  margin-bottom: 14px;
}

.about p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 40px 24px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--brand-700);
  font-size: 1.08rem;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact block */
.contact-block {
  text-align: center;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 24px;
  margin: 24px auto 56px;
}

.contact-block h2 {
  color: var(--brand-900);
  margin-bottom: 6px;
}

.contact-block > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
}

.contact-list a {
  color: var(--brand-700);
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover { text-decoration: underline; }

footer {
  text-align: center;
  padding: 24px 0 40px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 620px) {
  .services { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 1.6rem; }
}
