/* Haras Broglio — site premium */
:root {
  --bg: #070708;
  --bg-elevated: #111114;
  --bg-card: #16161a;
  --text: #f5f5f7;
  --text-muted: #a1a1aa;
  --orange: #ff6b00;
  --orange-soft: #ff8c3a;
  --orange-glow: rgba(255, 107, 0, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 72px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.hidden { display: none !important; }

/* Splash */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.65s var(--ease), visibility 0.65s;
}
#splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash__logo {
  width: clamp(96px, 18vw, 140px);
  animation: splashPulse 2s var(--ease) infinite;
}
.splash__ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--orange);
  animation: spin 1.2s linear infinite;
}
@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.88; }
}
@keyframes spin { to { transform: rotate(360deg); } }

#main-content {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
#main-content.is-visible { opacity: 1; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
}
.site-header__inner {
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.site-header__brand img { width: 40px; height: 40px; object-fit: contain; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #e65c00);
  color: #fff;
  box-shadow: 0 12px 40px var(--orange-glow);
}
.btn-primary:hover { box-shadow: 0 16px 48px var(--orange-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,8,0.35) 0%, rgba(7,7,8,0.85) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(7,7,8,0.7) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero__content {
  position: relative;
  z-index: 1;
  width: min(800px, 100% - 40px);
  text-align: center;
  padding-top: var(--header-h);
}
.hero__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-soft);
  margin: 0 0 16px;
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  margin: 0 0 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Sections */
.section {
  padding: 100px 0;
}
.section--dark { background: var(--bg-elevated); }
.container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-soft);
  margin: 0 0 12px;
}
.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.section__lead {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

/* About cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.25);
}
.about-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.about-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}
.about-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Animals catalog — Netflix style row */
.animals-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.animals-row::-webkit-scrollbar { height: 6px; }
.animals-row::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}
.animal-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
}
.animal-card__link {
  text-decoration: none;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.animal-card__link:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.animal-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #1a1a1e;
}
.animal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.animal-card__link:hover .animal-card__media img { transform: scale(1.06); }
.animal-card__price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-soft);
}
.animal-card__body { padding: 18px 20px 22px; }
.animal-card__name {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 600;
}
.animal-card__facts {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.animal-card__facts li { margin-bottom: 4px; }
.animal-card__fact-label {
  color: var(--text);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.animal-card__obs {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.animal-card__meta {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.animal-card__desc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, #1e1e22 25%, #2a2a30 50%, #1e1e22 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}
.skeleton--media { aspect-ratio: 4/5; border-radius: var(--radius-lg); }
.skeleton--line { height: 14px; margin-top: 12px; }
.skeleton--line.short { width: 60%; }
.animal-card--skeleton { pointer-events: none; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.animals-error, .animals-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 20px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-card h3 { margin: 0 0 12px; }
.contact-card p { color: var(--text-muted); margin: 0 0 24px; }
.contact-card a.contact-link {
  color: var(--orange-soft);
  font-weight: 600;
  text-decoration: none;
}

/* Footer */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.site-footer a { color: var(--orange-soft); text-decoration: none; }
.site-footer p { margin: 8px 0; }

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Login — tema do app, centralizado */
.login-body {
  --app-bg: #ffffff;
  --app-surface: #ffffff;
  --app-surface-soft: #f6f6f6;
  --app-text: #111111;
  --app-text-muted: #4b5563;
  --app-border: #e5e7eb;
  --app-orange: #ff6b00;
  --app-orange-dark: #e65c00;
  --app-radius-md: 12px;
  --app-radius-xl: 20px;
  --app-btn-gradient: linear-gradient(135deg, #321e0e 0%, #e86c18 42%, #ec8224 100%);
  --app-card-gradient: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  min-height: 100vh;
  background: var(--app-bg);
  color: var(--app-text);
}

.login-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--app-border);
}
.login-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--app-text);
  font-weight: 700;
  font-size: 0.95rem;
}
.login-header__back {
  font-size: 0.875rem;
  color: var(--app-text-muted);
  text-decoration: none;
}
.login-header__back:hover { color: var(--app-orange); }

.login-page--centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  background: var(--app-bg);
}

.login-card--app {
  width: min(400px, 100%);
  padding: 28px 26px 32px;
  background: var(--app-card-gradient);
  border: 1.4px solid rgba(255, 107, 0, 0.24);
  border-radius: var(--app-radius-xl);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.08);
}

.login-card__logo {
  display: block;
  margin: 0 auto 16px;
}

.login-card--app h1 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--app-text);
  text-align: left;
}

.login-card--app .login-card__sub {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--app-text-muted);
  text-align: left;
}

.login-card--app .terms-check {
  color: var(--app-text-muted);
  font-size: 0.85rem;
  margin: 4px 0 16px;
}

.login-card--app .terms-check a {
  color: var(--app-orange);
}

.login-card__rule {
  border: none;
  border-top: 1.2px solid var(--app-border);
  margin: 14px 0 20px;
}

.login-body .form-group label {
  color: var(--app-text-muted);
  font-size: 0.875rem;
}

.login-body .form-group input {
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  color: var(--app-text);
  border-radius: var(--app-radius-md);
  padding: 12px 14px;
}

.login-body .form-group input:focus {
  outline: none;
  border-color: var(--app-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

.btn-app-primary {
  width: 100%;
  padding: 14px 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--app-radius-md);
  background: var(--app-btn-gradient);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 108, 24, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-app-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 108, 24, 0.4);
}
.btn-app-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: var(--app-surface-soft);
  color: var(--app-text-muted);
  box-shadow: none;
}

.btn-app-secondary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--app-border);
  background: var(--app-surface-soft);
  color: var(--app-text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, border-color 0.2s;
}
.btn-app-secondary:hover:not(:disabled) {
  background: #efefef;
  border-color: #d1d5db;
}
.btn-app-secondary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-app-secondary--sm {
  margin-top: 10px;
  font-size: 0.85rem;
  padding: 10px 14px;
}

.login-forgot {
  text-align: center;
  margin: 14px 0 0;
}
.login-body .link-btn {
  color: var(--app-orange);
}
.login-body .link-btn:hover { color: var(--app-orange-dark); }

.login-body .login-divider {
  color: var(--app-text-muted);
  margin: 22px 0 18px;
}
.login-body .login-divider::before,
.login-body .login-divider::after {
  background: var(--app-border);
}

.login-social--stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-body .phone-panel {
  border-top-color: var(--app-border);
}
.login-body .phone-panel__title {
  color: var(--app-text-muted);
}

.login-body .login-message--error { color: #ef4444; }
.login-body .login-message--success { color: #059669; }

.login-footer-link {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--app-text-muted);
}
.login-footer-link a {
  color: var(--app-orange);
  font-weight: 600;
  text-decoration: none;
}
.login-footer-link a:hover { text-decoration: underline; }

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255,107,0,0.15), transparent),
    var(--bg);
}
.login-card {
  width: min(420px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.login-card__brand {
  text-align: center;
  margin-bottom: 32px;
}
.login-card__brand img { width: 72px; margin: 0 auto 16px; }
.login-card h1 {
  font-size: 1.5rem;
  margin: 0 0 8px;
  text-align: center;
}
.login-card__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}
.login-message {
  font-size: 0.875rem;
  margin: 12px 0 0;
  min-height: 1.25em;
}
.login-message--error { color: #f87171; }
.login-message--success { color: #4ade80; }
.login-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.login-footer a { color: var(--orange-soft); }

.login-card--wide {
  width: min(460px, 100%);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
  padding: 4px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.auth-tab {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.auth-tab.is-active {
  background: var(--bg-card);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.auth-tab:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.register-extra { margin-bottom: 4px; }

.terms-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 18px;
  cursor: pointer;
}
.terms-check input { margin-top: 3px; flex-shrink: 0; }
.terms-check a { color: var(--orange-soft); }

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.login-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn-social {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-social:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}
.btn-social:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-social__icon { flex-shrink: 0; }

.phone-panel {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.phone-panel__title {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}
.recaptcha-container {
  min-height: 1px;
  margin-top: 8px;
}

/* Animal detail */
.animal-detail-page {
  padding: calc(var(--header-h) + 40px) 0 80px;
}
.back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 28px;
  font-size: 0.9rem;
}
.back-link:hover { color: var(--text); }
.animal-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.gallery__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}
.gallery__slide {
  display: none;
  width: 100%;
  height: 100%;
}
.gallery__slide.is-active { display: block; }
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}
.gallery__thumb {
  flex: 0 0 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: none;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}
.gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--orange);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.animal-detail__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange-soft);
  margin: 0 0 24px;
}
.detail-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 28px;
}
.detail-facts dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.detail-facts dd { margin: 0; font-weight: 500; }
.animal-detail__desc h2 {
  font-size: 1rem;
  margin: 0 0 10px;
}
.animal-detail__desc p {
  color: var(--text-muted);
  margin: 0 0 28px;
  white-space: pre-wrap;
}
.animal-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  text-decoration: none;
  font-size: 1.5rem;
  transition: transform 0.25s;
}
.fab-wa:hover { transform: scale(1.08); }

/* Mobile */
@media (max-width: 768px) {
  .login-page--centered {
    padding: 72px 16px 32px;
  }
  .login-card--app {
    padding: 24px 20px 28px;
  }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(7,7,8,0.96);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a { width: 100%; text-align: center; }
  .animal-detail__grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .detail-facts { grid-template-columns: 1fr; }
}
