/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background: #f4f6f9;
  color: #333;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 480px;
  margin: auto;
  padding: 20px;
}

/* ===== HEADER ===== */
.pet-header {
  text-align: center;
  margin-bottom: 20px;
}

.pet-logo {
  width: 120px;
  margin-bottom: 15px;
}

.pet-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ff6b6b;
  margin-bottom: 10px;
}

.pet-name {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 5px;
}

.pet-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.status-found {
  background: #ffe9e9;
  color: #d63031;
}

/* ===== BOTONES PRINCIPALES ===== */
.primary-actions {
  margin: 20px 0;
}

.btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 10px;
  transition: 0.2s ease;
}

.btn-call {
  background: #d63031;
  color: white;
}

.btn-call:hover {
  background: #b71c1c;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1da851;
}

/* ===== TARJETAS ===== */
.card {
  background: white;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.info-list li {
  list-style: none;
  margin-bottom: 6px;
}

/* ===== ALERTA MÉDICA ===== */
.medical-alert {
  background: #fff4e5;
  border-left: 5px solid #ff9800;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  margin-top: 20px;
}

.btn-secondary {
  background: #e0e0e0;
  color: #333;
}

.btn-secondary:hover {
  background: #c6c6c6;
}

/* ===== SMALL TEXT ===== */
.small-text {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 10px;
}