:root {
  --pt-primary: #1a56c4;   /* azul - cor principal da marca */
  --pt-status-ok: #2f6f4e; /* verde - usado só no status "em casa" */
  --pt-danger: #d64545;    /* vermelho - "perdido" */
  --pt-dark: #10233d;      /* azul-marinho escuro */
  --pt-cream: #f4f7fb;
}

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: #133f92 !important;
  border-color: #133f92 !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-status-ok);
}

.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), #0a1830);
  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::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
  z-index: 0;
}

.hero-visual-wrap .phone-mockup {
  position: relative;
  z-index: 1;
}

.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-status-ok);
  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;
}

/* ---- Mockup de celular no hero (visual realista) ---- */
.phone-mockup {
  width: 270px;
  background: linear-gradient(155deg, #3a4b5c 0%, #1a2430 45%, #0a1018 100%);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 45px 70px -20px rgba(0,0,0,.55),
    0 15px 25px -10px rgba(0,0,0,.4),
    inset 0 0 0 1px rgba(255,255,255,.15),
    inset 0 1px 1px rgba(255,255,255,.3);
  animation: float 4.2s ease-in-out infinite;
  position: relative;
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.phone-mockup::before, .phone-mockup::after {
  content: '';
  position: absolute;
  left: -3px;
  width: 3px;
  background: linear-gradient(#4a5a6c, #1a2430);
  border-radius: 2px 0 0 2px;
}
.phone-mockup::before { top: 100px; height: 32px; }
.phone-mockup::after { top: 140px; height: 55px; }

.phone-notch {
  width: 84px;
  height: 26px;
  background: #060a10;
  border-radius: 20px;
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.phone-notch::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3a6fc9, #0a1830 70%);
}

.phone-screen {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  color: var(--pt-dark);
  position: relative;
  box-shadow: inset 0 0 0 2px #000;
}

.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 22%, rgba(255,255,255,0) 78%, rgba(255,255,255,.08) 100%);
  pointer-events: none;
  z-index: 3;
}

.phone-home-indicator {
  width: 100px;
  height: 4px;
  border-radius: 4px;
  background: #d6dbe3;
  margin: 6px auto 4px;
}

/* ---- Botão flutuante de orçamento via WhatsApp (formato de tag de pet redonda) ---- */
.whatsapp-tag-fab {
  position: fixed;
  bottom: 30px;
  right: 26px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 35% 30%, #2ecf68, #1f9e4c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(31,158,76,.5), inset 0 -3px 6px rgba(0,0,0,.15), inset 0 2px 3px rgba(255,255,255,.4);
  animation: fabPulse 2.4s ease-in-out infinite;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.5);
}

.whatsapp-tag-fab i {
  color: #fff;
  font-size: 1.7rem;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.15));
}

.whatsapp-tag-fab::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 5px solid #9aa0a6;
  background: transparent;
  box-shadow: 0 1px 2px rgba(0,0,0,.25);
}

.whatsapp-tag-tooltip {
  position: fixed;
  bottom: 34px;
  right: 92px;
  z-index: 1000;
  background: var(--pt-dark);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .5rem .8rem;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.whatsapp-tag-wrap:hover .whatsapp-tag-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(37,179,88,.45); }
  50%      { box-shadow: 0 10px 24px rgba(37,179,88,.75), 0 0 0 8px rgba(37,179,88,.12); }
}

@media (max-width: 575px) {
  .whatsapp-tag-fab { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-tag-tooltip { display: none; }
}

.phone-topbar {
  background: var(--pt-dark);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: 1.6rem .9rem .6rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.phone-body {
  padding: .9rem;
  text-align: center;
}

.phone-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto .5rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--pt-primary), 0 6px 14px rgba(0,0,0,.15);
  position: relative;
}

.phone-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.phone-breed {
  font-size: .72rem;
  color: #7a7a7a;
  margin-bottom: .6rem;
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .6rem;
  text-align: left;
  font-size: .68rem;
  background: #f4f7fb;
  border-radius: 10px;
  padding: .5rem .6rem;
  margin-bottom: .6rem;
}

.phone-stats span { color: #7a7a7a; }
.phone-stats b { display: block; color: var(--pt-dark); font-size: .72rem; }

.phone-status-pill {
  display: inline-block;
  background: #e4f4ea;
  color: var(--pt-status-ok);
  font-weight: 700;
  font-size: .68rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}

.phone-actions {
  display: flex;
  gap: .4rem;
  margin-bottom: .6rem;
}

.phone-actions button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: .4rem;
  font-size: .66rem;
  font-weight: 700;
  color: #fff;
}

.phone-actions .whats { background: #25b358; }
.phone-actions .call { background: var(--pt-primary); }

.phone-section {
  text-align: left;
  font-size: .66rem;
  border-top: 1px solid #eee;
  padding-top: .5rem;
  margin-top: .3rem;
}

.phone-section strong {
  display: block;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #9aa3ad;
  margin-bottom: .2rem;
}

/* ================= REDESIGN MODERNO / FLUIDO (landing page) ================= */

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(20px,-25px) scale(1.06); }
  66%      { transform: translate(-15px,15px) scale(0.96); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-modern {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(135deg, #1a56c4 0%, #123f92 55%, #0a1830 100%);
  padding: 4rem 2.2rem;
  color: #fff;
  isolation: isolate;
}

.hero-blob {
  position: absolute;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(0px);
  z-index: -1;
  opacity: .5;
  animation: blobFloat 12s ease-in-out infinite;
}

.hero-blob.b1 { width: 320px; height: 320px; background: rgba(255,255,255,.10); top: -80px; left: -60px; }
.hero-blob.b2 { width: 260px; height: 260px; background: rgba(111,168,255,.25); bottom: -60px; right: 10%; animation-delay: -4s; }
.hero-blob.b3 { width: 180px; height: 180px; background: rgba(255,255,255,.08); top: 40%; right: -40px; animation-delay: -8s; }

.hero-modern .hero-eyebrow {
  animation: fadeInUp .6s ease both;
}
.hero-modern h1 { animation: fadeInUp .6s .08s ease both; }
.hero-modern .lead { animation: fadeInUp .6s .16s ease both; }
.hero-modern .hero-cta { animation: fadeInUp .6s .24s ease both; }
.hero-visual-wrap { animation: fadeInUp .7s .3s ease both; }

.btn-pill {
  border-radius: 999px !important;
  padding: .85rem 1.9rem !important;
  font-weight: 600;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, background .2s ease;
}
.btn-pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin: -1px 0;
}

.glass-step {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 28px;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}

.glass-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16,35,61,.14);
}

.fluid-benefits {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(160deg, #0e2a4a, var(--pt-dark));
  isolation: isolate;
}

.fluid-benefits .hero-blob {
  opacity: .35;
}

.section-reveal {
  animation: fadeInUp .6s ease both;
}

/* ---- Banner "Como Funciona" ---- */
.flow-banner {
  background: var(--pt-dark);
  border-radius: 24px;
  padding: 2.2rem 1.8rem;
  color: #fff;
}

.flow-banner-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.6rem;
  text-align: center;
}

.flow-steps {
  display: flex;
  align-items: stretch;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  flex: 1 1 190px;
  min-width: 170px;
  max-width: 220px;
  text-align: center;
}

.flow-step .flow-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .7rem;
  font-size: 1.1rem;
}

.flow-step h6 {
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: .35rem;
}

.flow-step p {
  font-size: .74rem;
  color: #b9c4d6;
  margin-bottom: 0;
}

.flow-arrow-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.flow-status-row {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: .7rem;
}

.flow-status-pill {
  font-size: .68rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 999px;
}

.flow-status-pill.ok { background: #e4f4ea; color: var(--pt-status-ok); }
.flow-status-pill.perdido { background: #fdeaea; color: var(--pt-danger); }

@media (max-width: 767px) {
  .flow-arrow-sep { transform: rotate(90deg); flex-basis: 100%; padding: .2rem 0; }
}

.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;
  transition: transform .2s ease, box-shadow .2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(16,35,61,.12);
}

.step-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f0fd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--pt-primary);
}

.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(26,86,196,.35);
}

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

.benefit-item .benefit-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .6rem;
}

.benefit-item i {
  font-size: 1.3rem;
  color: #6fa8ff;
}

.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);
}
/* ================= LINHA DO TEMPO DO PET — v2 (moderna) ================= */

.timeline-hero {
  background: linear-gradient(135deg, #1a56c4 0%, #123f92 55%, #0a1830 100%);
  border-radius: 28px;
  padding: 1.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.timeline-hero::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -80px;
  right: -60px;
}

.timeline-hero-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.6);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-hero-info { position: relative; z-index: 1; }
.timeline-hero-info h3 { margin-bottom: .15rem; font-weight: 700; }
.timeline-hero-info p { margin-bottom: 0; opacity: .85; font-size: .9rem; }

/* ---- Linha do tempo alternada ---- */
.timeline-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 0;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--pt-primary), #e3e9f2 92%, transparent);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 2.6rem 2.4rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 2px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
  box-shadow: 0 0 0 5px #f4f7fb, 0 6px 14px rgba(0,0,0,.15);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -19px; }
.timeline-item:nth-child(even) .timeline-dot { left: -19px; }

.timeline-dot.tipo-nascimento { background: linear-gradient(135deg,#ff8fc0,#ff5f9e); }
.timeline-dot.tipo-vacina { background: linear-gradient(135deg,#4caf7d,#2f6f4e); }
.timeline-dot.tipo-veterinario { background: linear-gradient(135deg,#4b83e0,#1a56c4); }
.timeline-dot.tipo-tosa,
.timeline-dot.tipo-banho { background: linear-gradient(135deg,#8fb9ff,#5c8fee); }
.timeline-dot.tipo-procedimento { background: linear-gradient(135deg,#b48bff,#8a5cf5); }
.timeline-dot.tipo-castracao { background: linear-gradient(135deg,#cf8fff,#a855f7); }
.timeline-dot.tipo-procriacao { background: linear-gradient(135deg,#ffb066,#ff8c1a); }
.timeline-dot.tipo-doenca { background: linear-gradient(135deg,#f16565,#d64545); }
.timeline-dot.tipo-outro { background: linear-gradient(135deg,#9aa3ad,#6c7580); }

.timeline-card {
  display: inline-block;
  text-align: left;
  background: #fff;
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 6px 18px rgba(16,35,61,.08);
  border: 1px solid rgba(16,35,61,.04);
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
  max-width: 100%;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(16,35,61,.14);
}

.timeline-card .timeline-data {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #9aa3ad;
  font-weight: 700;
  margin-bottom: .3rem;
}

.timeline-card .timeline-titulo {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .2rem;
  color: var(--pt-dark);
}

.timeline-card .timeline-desc {
  font-size: .84rem;
  color: #6a7480;
  margin-bottom: 0;
}

.timeline-badge-tipo {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  padding: .2rem .55rem;
  border-radius: 999px;
  margin-bottom: .4rem;
}

/* ---- Cards de genealogia / adicionar evento (topo da página) ---- */
.genealogia-card {
  background: linear-gradient(160deg, #f4f7fb, #eaf0fa);
  border-radius: 20px;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(26,86,196,.08);
}

.genealogia-card h6 {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
}

.timeline-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8f0fd;
  color: var(--pt-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

/* ---- Responsivo: empilha tudo de um lado só no celular ---- */
@media (max-width: 767px) {
  .timeline-wrap::before { left: 18px; }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 1.8rem 3rem;
  }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 0;
    right: auto;
  }
  .timeline-hero { flex-direction: column; text-align: center; }
}
/* ================= FLUIDEZ / ANIMAĆ‡Ć•ES DE SCROLL ================= */

html {
  scroll-behavior: smooth;
}

/* Barra de progresso de leitura no topo da pĆ�gina */
#barraProgressoScroll {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #1a56c4, #6fa8ff);
  z-index: 2000;
  transition: width .1s linear;
}

/* Estado inicial: elemento escondido e levemente deslocado */
.section-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Efeito escalonado: filhos diretos (cards) aparecem em sequĆŖncia */
.section-reveal.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}

.section-reveal.stagger-children.is-visible > *:nth-child(1) { transition-delay: .05s; }
.section-reveal.stagger-children.is-visible > *:nth-child(2) { transition-delay: .12s; }
.section-reveal.stagger-children.is-visible > *:nth-child(3) { transition-delay: .19s; }
.section-reveal.stagger-children.is-visible > *:nth-child(4) { transition-delay: .26s; }
.section-reveal.stagger-children.is-visible > *:nth-child(5) { transition-delay: .33s; }
.section-reveal.stagger-children.is-visible > *:nth-child(6) { transition-delay: .40s; }

.section-reveal.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Zoom suave em cards ao entrar na tela (variaĆ§Ć£o, opcional) */
.section-reveal.reveal-zoom {
  transform: translateY(20px) scale(.96);
}
.section-reveal.reveal-zoom.is-visible {
  transform: translateY(0) scale(1);
}

/* Respeita quem prefere menos movimento (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .section-reveal,
  .section-reveal.stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ================= VISUAL MAIS ILUSTRADO / MENOS CORPORATIVO ================= */

:root {
  --pt-coral: #FF7A59;
  --pt-coral-dark: #E85F3D;
  --pt-coral-light: #FFE4DA;
}

/* ---- Badges e emojis com toque coral ---- */
.badge-coral {
  background: var(--pt-coral-light);
  color: var(--pt-coral-dark);
  font-weight: 700;
  border-radius: 999px;
  padding: .35rem .8rem;
  display: inline-block;
}

.hero-eyebrow {
  background: var(--pt-coral-light) !important;
  color: var(--pt-coral-dark) !important;
}

/* ---- Doodles de patinha espalhados no fundo ---- */
.paw-doodle {
  position: absolute;
  opacity: .10;
  pointer-events: none;
  z-index: 0;
  color: var(--pt-primary);
}

.paw-doodle.coral { color: var(--pt-coral); opacity: .14; }

/* ---- Mascote "patinha acenando" ---- */
.mascote-pata {
  display: inline-block;
  animation: acenarPata 1.6s ease-in-out infinite;
  transform-origin: 70% 70%;
}

@keyframes acenarPata {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(6deg); }
}

/* ================= SEÇÃO "VEJA ACONTECENDO" — chat estilo WhatsApp realista ================= */

.demo-chat-secao {
  position: relative;
  background: linear-gradient(160deg, #fff 0%, #fff5f2 100%);
  border-radius: 32px;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.demo-chat-secao .demo-chat-titulo {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.2rem;
}

.wa-phone-frame {
  max-width: 320px;
  margin: 0 auto;
  background: #0b141a;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(10,24,48,.25);
}

.wa-phone-inner {
  background: #111b21;
  border-radius: 20px;
  overflow: hidden;
}

.wa-header {
  background: #1f2c34;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.wa-header-nome { color: #e9edef; font-size: 13.5px; font-weight: 700; margin: 0; }
.wa-header-status { color: #8696a0; font-size: 10.5px; margin: 0; }

.wa-body {
  background: #0b141a;
  background-image: radial-gradient(#1a2329 1px, transparent 1px);
  background-size: 14px 14px;
  padding: 14px 10px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-bubble {
  max-width: 82%;
  font-size: 12.5px;
  padding: 7px 9px 6px;
  border-radius: 8px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1);
}

.wa-bubble.visivel { opacity: 1; transform: translateY(0); }

.wa-bubble.recebida { align-self: flex-start; background: #202c33; color: #e9edef; border-top-left-radius: 0; }
.wa-bubble.enviada { align-self: flex-end; background: #005c4b; color: #e9edef; border-top-right-radius: 0; }

.wa-hora { text-align: right; font-size: 9.5px; color: #8696a0; margin-top: 3px; }
.wa-hora.check { display: flex; justify-content: flex-end; align-items: center; gap: 3px; color: #8fdbc4; }

.wa-mapa-bubble {
  align-self: flex-start;
  max-width: 75%;
  width: 210px;
  background: #202c33;
  border-radius: 8px;
  border-top-left-radius: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1);
}

.wa-mapa-bubble.visivel { opacity: 1; transform: translateY(0); }

.wa-mapa-preview {
  height: 90px;
  background: #3a4750;
  position: relative;
  background-image: linear-gradient(#4a5760 1px,transparent 1px), linear-gradient(90deg,#4a5760 1px,transparent 1px);
  background-size: 16px 16px;
}

.wa-mapa-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-100%); }
.wa-mapa-info { padding: 6px 9px 7px; }
.wa-mapa-info p { margin: 0; }
.wa-mapa-titulo { color: #e9edef; font-size: 11.5px; font-weight: 700; margin-bottom: 2px !important; }
.wa-mapa-sub { color: #8696a0; font-size: 10px; }

.wa-footer {
  background: #1f2c34;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-footer-input {
  flex: 1;
  background: #2a3942;
  border-radius: 20px;
  padding: 7px 12px;
  color: #8696a0;
  font-size: 11.5px;
}

.wa-footer-send {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.demo-chat-scroll-hint {
  text-align: center;
  font-size: .78rem;
  color: #9aa3ad;
  margin-top: 1rem;
}

/* ================= SEÇÃO DE NOTIFICAÇÃO NO CELULAR ================= */

.notif-demo-secao {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 3rem 1.5rem;
  text-align: center;
}

.notif-phone-frame {
  max-width: 260px;
  margin: 1.5rem auto 0;
  background: #000;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 16px 34px rgba(0,0,0,.25);
}

.notif-phone-screen {
  background: linear-gradient(160deg, #1a56c4 0%, #0a1830 100%);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  height: 420px;
}

.notif-clock { text-align: center; padding-top: 26px; }
.notif-clock .hora { color: #fff; font-size: 40px; font-weight: 300; margin: 0; letter-spacing: 1px; }
.notif-clock .data { color: rgba(255,255,255,.75); font-size: 11.5px; margin: 2px 0 0; }

.notif-card {
  position: absolute;
  top: 92px;
  left: 12px;
  right: 12px;
  background: rgba(20,30,50,.72);
  border-radius: 16px;
  padding: 11px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,1,.36,1);
}

.notif-card.visivel { opacity: 1; transform: translateY(0); }

.notif-icone {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--pt-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.notif-conteudo { flex: 1; text-align: left; }
.notif-conteudo p { margin: 0; }
.notif-linha-topo { display: flex; justify-content: space-between; align-items: baseline; }
.notif-app-nome { color: #fff; font-size: 12px; font-weight: 700; }
.notif-tempo { color: rgba(255,255,255,.55); font-size: 9.5px; }
.notif-titulo { color: #fff; font-size: 11.5px; font-weight: 600; margin: 3px 0 1px !important; }
.notif-texto { color: rgba(255,255,255,.85); font-size: 11px; line-height: 1.4; }

.notif-home-indicator {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}
.notif-home-indicator span {
  display: inline-block;
  width: 110px;
  height: 4px;
  background: rgba(255,255,255,.4);
  border-radius: 4px;
}

.notif-demo-legenda { font-size: .78rem; color: #9aa3ad; margin-top: 1rem; }
/* ================= LINHA DO TEMPO DO PET — v2 (moderna) ================= */

.timeline-hero {
  background: linear-gradient(135deg, #1a56c4 0%, #123f92 55%, #0a1830 100%);
  border-radius: 28px;
  padding: 1.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.timeline-hero::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -80px;
  right: -60px;
}

.timeline-hero-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.6);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-hero-info { position: relative; z-index: 1; }
.timeline-hero-info h3 { margin-bottom: .15rem; font-weight: 700; }
.timeline-hero-info p { margin-bottom: 0; opacity: .85; font-size: .9rem; }

/* ---- Linha do tempo alternada ---- */
.timeline-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 0;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--pt-primary), #e3e9f2 92%, transparent);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 2.6rem 2.4rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 2px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
  box-shadow: 0 0 0 5px #f4f7fb, 0 6px 14px rgba(0,0,0,.15);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -19px; }
.timeline-item:nth-child(even) .timeline-dot { left: -19px; }

.timeline-dot.tipo-nascimento { background: linear-gradient(135deg,#ff8fc0,#ff5f9e); }
.timeline-dot.tipo-vacina { background: linear-gradient(135deg,#4caf7d,#2f6f4e); }
.timeline-dot.tipo-veterinario { background: linear-gradient(135deg,#4b83e0,#1a56c4); }
.timeline-dot.tipo-tosa,
.timeline-dot.tipo-banho { background: linear-gradient(135deg,#8fb9ff,#5c8fee); }
.timeline-dot.tipo-procedimento { background: linear-gradient(135deg,#b48bff,#8a5cf5); }
.timeline-dot.tipo-castracao { background: linear-gradient(135deg,#cf8fff,#a855f7); }
.timeline-dot.tipo-procriacao { background: linear-gradient(135deg,#ffb066,#ff8c1a); }
.timeline-dot.tipo-doenca { background: linear-gradient(135deg,#f16565,#d64545); }
.timeline-dot.tipo-outro { background: linear-gradient(135deg,#9aa3ad,#6c7580); }

.timeline-card {
  display: inline-block;
  text-align: left;
  background: #fff;
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 6px 18px rgba(16,35,61,.08);
  border: 1px solid rgba(16,35,61,.04);
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
  max-width: 100%;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(16,35,61,.14);
}

.timeline-card .timeline-data {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #9aa3ad;
  font-weight: 700;
  margin-bottom: .3rem;
}

.timeline-card .timeline-titulo {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .2rem;
  color: var(--pt-dark);
}

.timeline-card .timeline-desc {
  font-size: .84rem;
  color: #6a7480;
  margin-bottom: 0;
}

.timeline-badge-tipo {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  padding: .2rem .55rem;
  border-radius: 999px;
  margin-bottom: .4rem;
}

/* ---- Cards de genealogia / adicionar evento (topo da página) ---- */
.genealogia-card {
  background: linear-gradient(160deg, #f4f7fb, #eaf0fa);
  border-radius: 20px;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(26,86,196,.08);
}

.genealogia-card h6 {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
}

.timeline-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8f0fd;
  color: var(--pt-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

/* ---- Responsivo: empilha tudo de um lado só no celular ---- */
@media (max-width: 767px) {
  .timeline-wrap::before { left: 18px; }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 1.8rem 3rem;
  }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 0;
    right: auto;
  }
  .timeline-hero { flex-direction: column; text-align: center; }
}
/* ================= FLUIDEZ / ANIMAÇÕES DE SCROLL ================= */

html {
  scroll-behavior: smooth;
}

/* Barra de progresso de leitura no topo da página */
#barraProgressoScroll {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #1a56c4, #6fa8ff);
  z-index: 2000;
  transition: width .1s linear;
}

/* Estado inicial: elemento escondido e levemente deslocado */
.section-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Efeito escalonado: filhos diretos (cards) aparecem em sequência */
.section-reveal.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}

.section-reveal.stagger-children.is-visible > *:nth-child(1) { transition-delay: .05s; }
.section-reveal.stagger-children.is-visible > *:nth-child(2) { transition-delay: .12s; }
.section-reveal.stagger-children.is-visible > *:nth-child(3) { transition-delay: .19s; }
.section-reveal.stagger-children.is-visible > *:nth-child(4) { transition-delay: .26s; }
.section-reveal.stagger-children.is-visible > *:nth-child(5) { transition-delay: .33s; }
.section-reveal.stagger-children.is-visible > *:nth-child(6) { transition-delay: .40s; }

.section-reveal.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Zoom suave em cards ao entrar na tela (variação, opcional) */
.section-reveal.reveal-zoom {
  transform: translateY(20px) scale(.96);
}
.section-reveal.reveal-zoom.is-visible {
  transform: translateY(0) scale(1);
}

/* Respeita quem prefere menos movimento (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .section-reveal,
  .section-reveal.stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ---- Card "sem pets ainda" — gradiente azul animado ---- */
@keyframes flutuarBlobDashboard {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.05); }
}

.dashboard-empty-hero {
  background: linear-gradient(135deg, #1a56c4 0%, #123f92 55%, #0a1830 100%);
  border-radius: 28px;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.dashboard-empty-hero .blob-float {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.dashboard-empty-hero .blob-float.b1 {
  width: 180px; height: 180px;
  background: rgba(255,255,255,.08);
  top: -70px; right: -50px;
  animation: flutuarBlobDashboard 7s ease-in-out infinite;
}

.dashboard-empty-hero .blob-float.b2 {
  width: 120px; height: 120px;
  background: rgba(255,122,89,.15);
  bottom: -40px; left: -30px;
  animation: flutuarBlobDashboard 9s ease-in-out infinite reverse;
}

.dashboard-empty-hero > * { position: relative; z-index: 1; }

.dashboard-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 1rem;
}

.dashboard-empty-hero input.form-control {
  border: none;
  color: #10233d;
}

.dashboard-empty-hero hr { border-top: 1px solid rgba(255,255,255,.25); }
.dashboard-empty-hero .divisor-ou-texto { color: rgba(255,255,255,.7); }
.dashboard-empty-hero p.text-muted { color: rgba(255,255,255,.8) !important; }
.dashboard-empty-hero .btn-outline-primary {
  border-color: #fff;
  color: #fff;
}
.dashboard-empty-hero .btn-outline-primary:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
/* ---- Card "sem pets ainda" — gradiente azul animado ---- */
@keyframes flutuarBlobDashboard {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.05); }
}

.dashboard-empty-hero {
  background: linear-gradient(135deg, #1a56c4 0%, #123f92 55%, #0a1830 100%);
  border-radius: 28px;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.dashboard-empty-hero .blob-float {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.dashboard-empty-hero .blob-float.b1 {
  width: 180px; height: 180px;
  background: rgba(255,255,255,.08);
  top: -70px; right: -50px;
  animation: flutuarBlobDashboard 7s ease-in-out infinite;
}

.dashboard-empty-hero .blob-float.b2 {
  width: 120px; height: 120px;
  background: rgba(255,122,89,.15);
  bottom: -40px; left: -30px;
  animation: flutuarBlobDashboard 9s ease-in-out infinite reverse;
}

.dashboard-empty-hero > * { position: relative; z-index: 1; }

.dashboard-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 1rem;
}

.dashboard-empty-hero input.form-control {
  border: none;
  color: #10233d;
}

.dashboard-empty-hero hr { border-top: 1px solid rgba(255,255,255,.25); }
.dashboard-empty-hero .divisor-ou-texto { color: rgba(255,255,255,.7); }
.dashboard-empty-hero p.text-muted { color: rgba(255,255,255,.8) !important; }
.dashboard-empty-hero .btn-outline-primary {
  border-color: #fff;
  color: #fff;
}
.dashboard-empty-hero .btn-outline-primary:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
/* ---- Card "sem pets ainda" — gradiente azul animado ---- */
@keyframes flutuarBlobDashboard {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.05); }
}

.dashboard-empty-hero {
  background: linear-gradient(135deg, #1a56c4 0%, #123f92 55%, #0a1830 100%);
  border-radius: 28px;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.dashboard-empty-hero .blob-float {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.dashboard-empty-hero .blob-float.b1 {
  width: 180px; height: 180px;
  background: rgba(255,255,255,.08);
  top: -70px; right: -50px;
  animation: flutuarBlobDashboard 7s ease-in-out infinite;
}

.dashboard-empty-hero .blob-float.b2 {
  width: 120px; height: 120px;
  background: rgba(255,122,89,.15);
  bottom: -40px; left: -30px;
  animation: flutuarBlobDashboard 9s ease-in-out infinite reverse;
}

.dashboard-empty-hero > * { position: relative; z-index: 1; }

.dashboard-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 1rem;
}

.dashboard-empty-hero input.form-control {
  border: none;
  color: #10233d;
}

.dashboard-empty-hero hr { border-top: 1px solid rgba(255,255,255,.25); }
.dashboard-empty-hero .divisor-ou-texto { color: rgba(255,255,255,.7); }
.dashboard-empty-hero p.text-muted { color: rgba(255,255,255,.8) !important; }
.dashboard-empty-hero .btn-outline-primary {
  border-color: #fff;
  color: #fff;
}
.dashboard-empty-hero .btn-outline-primary:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
/* ---- Card "sem pets ainda" — gradiente azul animado ---- */
@keyframes flutuarBlobDashboard {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.05); }
}

.dashboard-empty-hero {
  background: linear-gradient(135deg, #1a56c4 0%, #123f92 55%, #0a1830 100%);
  border-radius: 28px;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.dashboard-empty-hero .blob-float {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.dashboard-empty-hero .blob-float.b1 {
  width: 180px; height: 180px;
  background: rgba(255,255,255,.08);
  top: -70px; right: -50px;
  animation: flutuarBlobDashboard 7s ease-in-out infinite;
}

.dashboard-empty-hero .blob-float.b2 {
  width: 120px; height: 120px;
  background: rgba(255,122,89,.15);
  bottom: -40px; left: -30px;
  animation: flutuarBlobDashboard 9s ease-in-out infinite reverse;
}

.dashboard-empty-hero > * { position: relative; z-index: 1; }

.dashboard-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 1rem;
}

.dashboard-empty-hero input.form-control {
  border: none;
  color: #10233d;
}

.dashboard-empty-hero hr { border-top: 1px solid rgba(255,255,255,.25); }
.dashboard-empty-hero .divisor-ou-texto { color: rgba(255,255,255,.7); }
.dashboard-empty-hero p.text-muted { color: rgba(255,255,255,.8) !important; }
.dashboard-empty-hero .btn-outline-primary {
  border-color: #fff;
  color: #fff;
}
.dashboard-empty-hero .btn-outline-primary:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.dashboard-empty-mascote {
  max-width: 100%;
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: -4px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.22));
}
