:root {
  --pt-primary: #2f6f4e;   /* verde - "em casa" */
  --pt-danger: #d64545;    /* vermelho - "perdido" */
  --pt-dark: #1f2a24;
  --pt-cream: #faf7f2;
}

body {
  background-color: var(--pt-cream);
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.app-navbar {
  background-color: var(--pt-dark);
}

.btn-primary, .bg-primary {
  background-color: var(--pt-primary) !important;
  border-color: var(--pt-primary) !important;
}

.btn-primary:hover {
  background-color: #244f39 !important;
  border-color: #244f39 !important;
}

/* ---- Cartão de perfil público do pet ---- */
.pet-card {
  max-width: 480px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  background: #fff;
}

.pet-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.pet-status-banner {
  padding: .9rem 1.25rem;
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: .3px;
}

.pet-status-banner.em_casa {
  background-color: #e4f4ea;
  color: var(--pt-primary);
}

.pet-status-banner.perdido {
  background-color: #fdeaea;
  color: var(--pt-danger);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%   { background-color: #fdeaea; }
  50%  { background-color: #f9cccc; }
  100% { background-color: #fdeaea; }
}

.pet-info-item {
  border-bottom: 1px solid #eee;
  padding: .6rem 0;
}

.pet-info-item:last-child { border-bottom: none; }

.pet-action-buttons .btn {
  border-radius: 14px;
  padding: .8rem;
  font-weight: 600;
}

.landing-hero {
  border-radius: 28px;
  background: linear-gradient(135deg, var(--pt-primary), #17402c);
  color: #fff;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 1rem;
}

.hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}

.hero-visual-wrap svg {
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.25));
}

.floating-card {
  position: absolute;
  bottom: -18px;
  right: 6px;
  width: 190px;
  background: #fff;
  color: var(--pt-dark);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  padding: .8rem;
  animation: float 3.2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-card .fc-photo {
  width: 100%;
  height: 74px;
  border-radius: 12px;
  background: linear-gradient(135deg,#f0c68c,#e0aa63);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

.floating-card .fc-status {
  font-size: .72rem;
  font-weight: 700;
  color: var(--pt-primary);
  background: #e4f4ea;
  border-radius: 8px;
  padding: .2rem .5rem;
  display: inline-block;
  margin-bottom: .35rem;
}

.floating-card .fc-name {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .1rem;
}

.floating-card .fc-sub {
  font-size: .72rem;
  color: #7a7a7a;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.85);
  color: var(--pt-dark);
  border-radius: 999px;
  padding: .3rem .7rem;
  font-size: .75rem;
  font-weight: 600;
  position: absolute;
}

.step-card {
  position: relative;
  padding-top: 2.2rem !important;
}

.step-number {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pt-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 16px rgba(47,111,78,.35);
}

.benefits-strip {
  background: var(--pt-dark);
  color: #fff;
  border-radius: 24px;
  padding: 2.2rem 1.5rem;
}

.benefit-item i {
  font-size: 1.5rem;
  color: #7fd6a8;
  margin-bottom: .6rem;
}

.benefit-item h6 {
  font-weight: 700;
  margin-bottom: .3rem;
}

.benefit-item p {
  font-size: .82rem;
  color: #b9c4bd;
  margin-bottom: 0;
}

.card-rounded {
  border-radius: 18px;
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
