@font-face {
  font-family: 'Velo-Bold';
  src: url('Velo-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Velo-Regular';
  src: url('Velo-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary-color: #1a4f8a;
  --bg-page: #f4f7fa;
  --bg-card: #ffffff;
  --text-main: #333333;
  --accent-soft: #e9ecef;
}

body {
  font-family: 'Velo-Regular', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
}

h1, h2, h3, h4, .fw-bold {
  font-family: 'Velo-Bold', sans-serif;
  color: var(--primary-color);
}

h1 {
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 1.5rem !important;
}

.custom-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  padding: 1.5rem;
  height: 100%;
}

.custom-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-card h2 i {
  font-size: 1.2rem;
  opacity: 0.8;
}

.contact-card {
  border: none;
  background: var(--bg-card);
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  padding: 1rem;
}

.contact-card .btn-contact {
  border-radius: 25px;
  padding: 6px 12px;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  width: 100%;
  justify-content: center;
}

.btn-call { background-color: var(--primary-color); color: white; }
.btn-call:hover { background-color: #123a66; color: #fff; transform: translateY(-1px); }

.btn-whatsapp { background-color: #25d366; color: white; }
.btn-whatsapp:hover { background-color: #1ebe57; color: #fff; transform: translateY(-1px); }

.btn-save { background-color: #6c757d; color: white; }
.btn-save:hover { background-color: #5a6268; color: #fff; transform: translateY(-1px); }

.contact-card .badge-license {
  background-color: var(--accent-soft);
  color: var(--primary-color);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  margin: 2px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}

.info-alert {
  background-color: #fffbe6;
  border-left: 5px solid #faad14;
  border-radius: 8px;
  color: #856404;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

a:hover {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}

@page {
  size: A4;
  margin: 1cm;
}

@media print {
  body { background-color: #fff; }
  .custom-card { box-shadow: none; border: 1px solid #ddd; }
  .btn-call { display: none; }
}