/* ==========================================================================
   VITRINE DAS AVES — DESIGN SYSTEM DE LUXO & ALTA CONVERSÃO
   Paleta Oficial: Deep Forest Jade, Emerald Teal, Royal Gold & Alabaster
   Domínio: vitrinedasaves.aondadigital.com.br
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Cores Principais Extraídas do Logo */
  --bg-deep: #061513;
  --bg-main: #0a1f1c;
  --bg-card: rgba(16, 45, 41, 0.75);
  --bg-card-hover: rgba(22, 59, 54, 0.95);
  --bg-surface: #102d29;
  --bg-surface-elevated: #163b36;
  --bg-glass: rgba(10, 31, 28, 0.85);

  /* Acentos de Destaque */
  --emerald-primary: #1b7a74;
  --emerald-light: #2ec4b6;
  --emerald-glow: rgba(46, 196, 182, 0.25);
  --emerald-gradient: linear-gradient(135deg, #1b7a74 0%, #2ec4b6 100%);

  /* Dourado Imperial */
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #a8841a;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #ffe082 50%, #b8860b 100%);

  /* Textos & Tipografia */
  --text-pure: #ffffff;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-accent: #5eead4;

  /* Bordas & Sombras */
  --border-subtle: rgba(46, 196, 182, 0.15);
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-bright: rgba(46, 196, 182, 0.4);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  --shadow-emerald: 0 8px 30px rgba(46, 196, 182, 0.25);

  /* Status Colors */
  --status-available: #10b981;
  --status-reserved: #f59e0b;
  --status-sold: #ef4444;

  /* Sex Colors */
  --sex-male: #38bdf8;
  --sex-female: #fb7185;
  --sex-pair: #a855f7;

  /* Transições e Bordas */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Alternate Class */
body.light-theme {
  --bg-deep: #f0fdf9;
  --bg-main: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-hover: #ffffff;
  --bg-surface: #e6f4f1;
  --bg-surface-elevated: #d1ebe6;
  --bg-glass: rgba(255, 255, 255, 0.9);
  --text-pure: #0f172a;
  --text-main: #1e293b;
  --text-muted: #475569;
  --text-dim: #64748b;
  --text-accent: #0d9488;
  --border-subtle: rgba(27, 122, 116, 0.15);
  --border-gold: rgba(212, 175, 55, 0.5);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.15);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #10332d 0%, var(--bg-deep) 60%, var(--bg-deep) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
  color: var(--text-pure);
  font-weight: 700;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-notice-bar {
  background: linear-gradient(90deg, #091a18 0%, #163b36 50%, #091a18 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.top-notice-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
}

.top-notice-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-notice-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.top-notice-links a:hover {
  color: var(--gold-light);
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(8, 24, 21, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-smooth);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 60%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--emerald-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Header Search & Actions */
.header-search-bar {
  flex: 1;
  max-width: 440px;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper svg {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 12px 18px 12px 46px;
  border-radius: var(--radius-full);
  color: var(--text-pure);
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
}

.search-input:focus {
  border-color: var(--emerald-light);
  box-shadow: 0 0 0 3px var(--emerald-glow);
  background: var(--bg-surface-elevated);
}

.search-input::placeholder {
  color: var(--text-dim);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-icon-action {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.btn-icon-action:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--emerald-light);
  color: var(--emerald-light);
  transform: translateY(-2px);
}

.btn-icon-action .action-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-gradient);
  color: #061513;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-deep);
}

.btn-gold-cta {
  background: var(--gold-gradient);
  color: #061513;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-gold-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   HERO SHOWCASE SECTION & 3D CARD
   ========================================================================== */
.hero-showcase {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(70px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 196, 182, 0.1);
  border: 1px solid var(--border-bright);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: var(--emerald-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  font-weight: 900;
}

.hero-title .highlight-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-title .highlight-emerald {
  background: linear-gradient(135deg, #5eead4 0%, #2ec4b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.btn-emerald-cta {
  background: var(--emerald-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-emerald);
  transition: all var(--transition-smooth);
}

.btn-emerald-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(46, 196, 182, 0.45);
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-pure);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.stat-number span {
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* 3D Hero Card */
.hero-3d-card-container {
  perspective: 1200px;
  width: 100%;
}

/* ==========================================================================
   HERO FEATURED BIRD CARD (PRIMEIRA VERSÃO)
   ========================================================================== */
.hero-card-featured-container {
  position: relative;
}

.hero-card-featured {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  backdrop-filter: blur(16px);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-card-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), var(--shadow-emerald);
}

.hero-card-badge-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-subtle);
}

.badge-tag-highlight {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-fob-pill {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-light);
  border: 1px solid rgba(46, 196, 182, 0.4);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-card-media-box {
  position: relative;
  width: 100%;
  height: 280px;
  background: #061513;
  overflow: hidden;
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card-featured:hover .hero-card-img {
  transform: scale(1.06);
}

.hero-card-overlay-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(6, 21, 19, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.hero-card-info-box {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-species {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--emerald-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-card-bird-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.2;
}

.hero-card-mutation-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-card-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 10px;
}

.hero-spec-item {
  display: flex;
  flex-direction: column;
}

.hero-spec-item .spec-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.hero-spec-item .spec-value {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-pure);
}

.hero-card-bottom-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 4px;
}

.hero-card-pricing {
  display: flex;
  flex-direction: column;
}

.hero-price-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.hero-price-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SPECIES FILTER PILLS
   ========================================================================== */
.species-filter-section {
  padding: 20px 0 30px;
}

.species-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 4px 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--emerald-primary) transparent;
}

.species-carousel-wrapper::-webkit-scrollbar {
  height: 6px;
}

.species-carousel-wrapper::-webkit-scrollbar-thumb {
  background: var(--emerald-primary);
  border-radius: 10px;
}

.species-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.species-pill-btn .pill-icon {
  font-size: 1.25rem;
}

.species-pill-btn .pill-count {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.species-pill-btn:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--emerald-light);
  transform: translateY(-2px);
  color: var(--text-pure);
}

.species-pill-btn.active {
  background: var(--emerald-gradient);
  border-color: var(--emerald-light);
  color: #ffffff;
  box-shadow: var(--shadow-emerald);
}

.species-pill-btn.active .pill-count {
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

/* ==========================================================================
   MAIN VITRINE SECTION (FILTROS + CARDS)
   ========================================================================== */
.catalog-section {
  padding: 20px 0 80px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.filter-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 104px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.filter-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-clear-filters {
  font-size: 0.78rem;
  color: var(--emerald-light);
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.btn-clear-filters:hover {
  text-decoration: underline;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.filter-select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.filter-select:focus {
  border-color: var(--emerald-light);
}

.fob-years-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.fob-year-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fob-year-chip:hover {
  background: var(--bg-surface-elevated);
}

.fob-year-chip.active {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.15);
}

.fob-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

/* Catalog Main */
.catalog-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 20px;
}

.catalog-counter {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.catalog-counter strong {
  color: var(--gold-light);
  font-size: 1.1rem;
}

.catalog-sort-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sort-select {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
}

/* Birds Grid */
.birds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}

.bird-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.bird-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), var(--shadow-emerald);
}

.card-media {
  position: relative;
  width: 100%;
  height: 280px;
  background: #061513;
  overflow: hidden;
  cursor: pointer;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bird-card:hover .card-media img {
  transform: scale(1.08);
}

.card-overlay-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.badge-status {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}

.badge-status.disponivel {
  background: #10b981;
  color: #ffffff;
}

.badge-status.reservado {
  background: #f59e0b;
  color: #061513;
}

.badge-fob-ring {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.card-action-fav {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(6, 21, 19, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.card-action-fav:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
  transform: scale(1.1);
}

.card-action-fav.active {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.card-category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-species-name {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--emerald-light);
}

.card-sex-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.card-sex-badge.macho {
  background: rgba(56, 189, 248, 0.15);
  color: var(--sex-male);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.card-sex-badge.femea {
  background: rgba(251, 113, 133, 0.15);
  color: var(--sex-female);
  border: 1px solid rgba(251, 113, 133, 0.3);
}

.card-sex-badge.casal {
  background: rgba(168, 85, 247, 0.15);
  color: var(--sex-pair);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.2;
}

.card-mutation-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.card-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-top: 4px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.spec-val {
  font-size: 0.8rem;
  color: var(--text-pure);
  font-weight: 700;
}

.card-price-container {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.price-main {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
}

.price-installments {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8px;
}

.btn-card-details {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-card-details:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--emerald-light);
  color: var(--emerald-light);
}

.btn-card-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-card-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   TRUST & LOGISTICS BANNER
   ========================================================================== */
.trust-banner-section {
  padding: 60px 0;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(46, 196, 182, 0.12);
  border: 1px solid var(--border-bright);
  color: var(--emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.trust-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-pure);
}

.trust-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   FREIGHT CALCULATOR SIMULATOR
   ========================================================================== */
.freight-calculator-section {
  padding: 40px 0 80px;
}

.freight-calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.freight-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.freight-form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.freight-input-group {
  display: flex;
  gap: 10px;
}

.freight-select {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

.freight-results-table {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.freight-table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 12px 18px;
  font-size: 0.85rem;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
}

.freight-table-row.header {
  background: rgba(0, 0, 0, 0.25);
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 0.75rem;
}

.freight-table-row:last-child {
  border-bottom: none;
}

/* ==========================================================================
   MODAL — FICHA TÉCNICA DA AVE & GENEALOGIA
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 15, 13, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-main);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.btn-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-modal-close:hover {
  background: #ef4444;
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  padding: 32px;
}

.modal-gallery-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-main-img-box {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000000;
}

.modal-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-thumbs-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.modal-thumb-btn {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.modal-thumb-btn.active {
  border-color: var(--gold-primary);
}

.modal-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-badges-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-bird-title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.2;
}

.modal-scientific-name {
  font-size: 0.88rem;
  color: var(--emerald-light);
  font-style: italic;
}

.modal-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  gap: 16px;
  margin-top: 6px;
}

.modal-tab-btn {
  padding: 8px 4px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-tab-btn.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-primary);
}

.modal-tab-content {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.modal-tab-content.active {
  display: flex;
}

.pedigree-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pedigree-branch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pedigree-node {
  background: var(--bg-surface-elevated);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-primary);
}

.pedigree-node-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}

.pedigree-node-ring {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-pure);
}

.pedigree-node-mut {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.modal-footer-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   DRAWER — FAVORITOS / RESERVA
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 15, 13, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg-main);
  border-left: 1px solid var(--border-gold);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

.drawer-backdrop.active .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   MAIN FOOTER — DESIGN DE LUXO
   ========================================================================== */
.main-footer {
  background: linear-gradient(180deg, #061513 0%, #030a09 100%);
  border-top: 1.5px solid var(--border-gold);
  padding: 70px 0 30px;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-header img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-brand-header span {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--text-pure);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Outfit', sans-serif;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact-item strong {
  color: var(--text-pure);
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .filter-sidebar {
    position: static;
  }
  .modal-inner-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .freight-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-notice-bar {
    display: none;
  }
  .nav-container {
    height: 70px;
  }
  .header-search-bar {
    display: none;
  }
}
