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

:root {
  --navy: #0f2340;
  --gold: #c8a96e;
  --gold-light: #e8d5a8;
  --cream: #f8f5ef;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --shadow: 0 20px 60px rgba(15,35,64,0.18);
}

body {
  font-family: 'Lato', sans-serif;
  background: linear-gradient(135deg, #0f2340 0%, #1a3a6e 50%, #0f2340 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(200,169,110,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(200,169,110,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.card {
  background: var(--white);
  border-radius: 24px;
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(200,169,110,0.15);
  position: relative;
  animation: cardIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.header-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3d7a 100%);
  padding: 36px 28px 0;
  position: relative;
  overflow: hidden;
}
.header-band::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 48px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.gold-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  margin-bottom: 28px;
  border-radius: 2px;
}
.photo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.photo-ring {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  box-shadow: 0 8px 24px rgba(15,35,64,0.4);
}
.photo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 3px solid var(--white);
}
.card-body {
  padding: 20px 28px 32px;
  text-align: center;
}
.name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.title {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.company {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 24px;
}
.spec-tag {
  background: var(--cream);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(200,169,110,0.3);
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.4), transparent);
  margin: 0 0 22px;
}
/* Contact action buttons */
.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.96); }
.btn:hover  { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-call {
  background: linear-gradient(135deg, #0f2340, #1e3d7a);
  color: var(--white);
  grid-column: span 2;
}
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-email    { background: linear-gradient(135deg, #c8a96e, #e8d5a8); color: var(--navy); }
.btn-web      { background: var(--cream); color: var(--navy); border: 1.5px solid rgba(200,169,110,0.5); grid-column: span 2; }
.btn-calendar { background: linear-gradient(135deg, #c8a96e, #a07840); color: var(--white); grid-column: span 2; }

/* vCard button */
.btn-vcard {
  width: 100%;
  background: linear-gradient(135deg, #0f2340 0%, #1e3d7a 100%);
  color: var(--gold-light);
  border-radius: 14px;
  padding: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(15,35,64,0.25);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; border: none;
  font-family: 'Lato', sans-serif; font-weight: 700;
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
}
.btn-vcard:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,35,64,0.35); }
.btn-vcard svg { width: 20px; height: 20px; }

/* Social networks */
.social-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.social-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  -webkit-tap-highlight-color: transparent;
}
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }
.social-btn:active { transform: scale(0.93); }
.social-btn svg { width: 22px; height: 22px; }

.soc-linkedin  { background: #0A66C2; color: #fff; }
.soc-facebook  { background: #1877F2; color: #fff; }
.soc-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.soc-tiktok    { background: #010101; color: #fff; }
.soc-youtube   { background: #FF0000; color: #fff; }
.soc-x         { background: #000000; color: #fff; }

.card-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.62rem;
  color: rgba(74,74,106,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
