/* =============================================================
   STYLE.CSS — A Gangue Mais Faminta da Cidade 🐾
   Tema: Pet Premium · Caramelo · Aconchegante · Divertido
   ============================================================= */

/* ----- RESET & BASE ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta Caramelo Premium */
  --brown-dark: #5C3A1E;
  --brown-medium: #8B5E3C;
  --brown-light: #CC9966;
  --caramel: #D4A373;
  --beige: #F5E6D3;
  --cream: #FDF8F3;
  --bg-cream: #FDF5EE;
  --white: #FFFFFF;
  --black: #2C1810;
  --gold: #D4A017;
  --gold-light: #F0D080;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px rgba(92, 58, 30, 0.12);

  /* Glows */
  --glow-soft: 0 0 20px rgba(212, 163, 115, 0.3);
  --glow-medium: 0 0 30px rgba(212, 163, 115, 0.4);

  /* Fontes */
  --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Transições */
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--beige);
}
::-webkit-scrollbar-thumb {
  background: var(--caramel);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brown-light);
}

/* ----- UTILITIES ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header i {
  font-size: 2.5rem;
  color: var(--brown-light);
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--brown-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--brown-medium);
  font-size: 1.1rem;
  margin-top: 8px;
  font-style: italic;
}

.icon-inline {
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

/* ----- GLASSMORPHISM ----- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
}

/* ----- KEYFRAMES ----- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-8px) rotate(2deg);
  }
  66% {
    transform: translateY(-4px) rotate(-1deg);
  }
}

@keyframes pawFall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 163, 115, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 163, 115, 0.5);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes progressGrow {
  from { width: 0%; }
}

@keyframes wagTail {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

/* =============================================================
   HERO SECTION
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--brown-dark) 0%,
    var(--brown-medium) 30%,
    var(--brown-light) 70%,
    var(--caramel) 100%
  );
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 50px 40px;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--cream);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
}

.hero-title .icon-inline {
  font-size: 3rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  font-weight: 400;
}

.hero-subtitle i {
  margin: 0 6px;
  color: var(--gold-light);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

/* Patinhas caindo (paw rain) */
.paw-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.paw-drop {
  position: absolute;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.12);
  animation: pawFall linear infinite;
  top: -60px;
}

/* =============================================================
   FRAMES / GALERIA
   ============================================================= */
.frames-section {
  background: var(--cream);
}

.frames-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.frame-card {
  text-align: center;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.frame-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.frame-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 320px;
  margin: 0 auto 16px;
  border-radius: 20px;
  overflow: hidden;
}

.frame-glow {
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--caramel), var(--gold), var(--brown-light));
  opacity: 0.4;
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 0;
}

.frame-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  transition: var(--transition-smooth);
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.frame-card:hover .frame-image {
  transform: scale(1.05);
  border-color: var(--gold);
}

.paw-deco {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-medium);
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
}

.frame-info h3 {
  color: var(--brown-dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.frame-tag {
  display: inline-block;
  background: var(--caramel);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

/* =============================================================
   CARDS PREMIUM DOS CACHORROS
   ============================================================= */
.dog-section {
  background: var(--cream);
}

.dog-section:nth-child(even) {
  background: var(--bg-cream);
}

.dog-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.dog-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brown-light), var(--gold));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.duke-badge {
  background: linear-gradient(135deg, #8B7355, #A0896B);
}

.choco-badge {
  background: linear-gradient(135deg, #6B3A1F, #8B5E3C);
}

.dog-header {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.dog-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: visible;
}

.dog-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel), var(--gold));
  opacity: 0.3;
  animation: glowPulse 3s ease-in-out infinite;
}

.duke-glow {
  background: linear-gradient(135deg, #A0896B, #C4A882);
}

.choco-glow {
  background: linear-gradient(135deg, #8B5E3C, #A0714F);
}

.dog-avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.dog-avatar:hover {
  transform: scale(1.05) rotate(5deg);
}

.crown-deco {
  position: absolute;
  top: -18px;
  right: -10px;
  font-size: 2rem;
  color: var(--gold);
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(212, 160, 23, 0.5));
  z-index: 2;
}

.dog-title-group {
  flex: 1;
}

.dog-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.dog-name i {
  color: var(--brown-light);
  font-size: 1.6rem;
  margin-left: 8px;
}

.dog-subtitle {
  color: var(--brown-medium);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
}

.dog-body {
  margin-top: 10px;
}

.dog-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.info-item i {
  font-size: 1.3rem;
  color: var(--brown-light);
  margin-bottom: 4px;
}

.info-item strong {
  font-size: 1.1rem;
  color: var(--brown-dark);
}

.info-item span {
  font-size: 0.9rem;
  color: var(--brown-medium);
}

/* Traits */
.traits-section {
  margin-bottom: 30px;
}

.traits-section h4 {
  font-size: 1.1rem;
  color: var(--brown-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.traits-section h4 i {
  color: var(--brown-light);
}

.traits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.trait {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--brown-dark);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-smooth);
}

.trait i {
  color: var(--brown-light);
  font-size: 1rem;
}

.trait:hover {
  background: var(--caramel);
  color: var(--white);
  transform: translateX(4px);
  border-color: var(--caramel);
}

.trait:hover i {
  color: var(--white);
}

/* Dog Actions */
.dog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Patinhas decorativas no card */
.paw-prints {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  opacity: 0.15;
  font-size: 1.2rem;
  color: var(--brown-medium);
}

/* =============================================================
   BOTÕES
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-bounce);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn i {
  font-size: 1.2rem;
}

/* Primary Paw */
.btn-paw {
  background: linear-gradient(135deg, var(--brown-light), var(--caramel));
  color: var(--white);
  border-color: var(--brown-light);
  box-shadow: 0 4px 15px rgba(204, 153, 102, 0.3);
}

.btn-paw:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(204, 153, 102, 0.45);
}

.btn-paw:active {
  transform: scale(0.97);
}

/* Outline Paw */
.btn-outline-paw {
  background: transparent;
  color: var(--brown-dark);
  border-color: var(--brown-light);
}

.btn-outline-paw:hover {
  background: var(--brown-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(204, 153, 102, 0.3);
}

/* Danger Paw */
.btn-danger-paw {
  background: transparent;
  color: #C0392B;
  border-color: #E74C3C;
}

.btn-danger-paw:hover {
  background: #E74C3C;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Warning Paw */
.btn-warning-paw {
  background: linear-gradient(135deg, #F39C12, #E67E22);
  color: var(--white);
  border-color: #F39C12;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-warning-paw:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.45);
}

/* Dark Paw */
.btn-dark-paw {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
  color: var(--white);
  border-color: var(--brown-dark);
  box-shadow: 0 4px 15px rgba(92, 58, 30, 0.3);
}

.btn-dark-paw:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(92, 58, 30, 0.45);
}

/* Large Buttons */
.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-lg i {
  font-size: 1.4rem;
}

/* =============================================================
   SEÇÃO NÍVEL DE FOME
   ============================================================= */
.hunger-section {
  background: linear-gradient(180deg, var(--bg-cream), var(--cream));
}

.hunger-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.hunger-card {
  padding: 30px;
  text-align: center;
  transition: var(--transition-bounce);
}

.hunger-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(92, 58, 30, 0.15);
}

.hunger-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hunger-header i {
  font-size: 1.8rem;
  color: var(--brown-light);
}

.hunger-header h3 {
  font-size: 1.2rem;
  color: var(--brown-dark);
  font-weight: 700;
}

.hunger-emoji {
  font-size: 1.8rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Progress Bars */
.progress-bar-container {
  width: 100%;
  height: 32px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brown-light), var(--caramel), var(--gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: progressGrow 2s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.progress-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  z-index: 1;
  letter-spacing: 0.5px;
}

.duke-progress {
  background: linear-gradient(90deg, #8B7355, #A0896B, #C4A882);
}

.choco-progress {
  background: linear-gradient(90deg, #6B3A1F, #8B5E3C, #A0714F);
}

.hunger-comment {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--brown-medium);
  margin-top: 4px;
}

/* =============================================================
   SEÇÃO AÇÕES
   ============================================================= */
.actions-section {
  background: var(--cream);
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.actions-grid .btn {
  width: 100%;
  justify-content: center;
}

/* =============================================================
   TOAST NOTIFICATIONS
   ============================================================= */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.toast {
  background: var(--white);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastIn 0.4s ease-out;
  font-size: 0.95rem;
  color: var(--brown-dark);
}

.toast i {
  font-size: 1.4rem;
  color: var(--brown-light);
}

.toast-out {
  animation: toastOut 0.4s ease-in forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(100px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(100px) scale(0.8);
  }
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
  color: var(--cream);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand i {
  font-size: 2.5rem;
  color: var(--caramel);
  display: block;
  margin-bottom: 10px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.footer-brand h3 strong {
  font-weight: 800;
  color: var(--gold-light);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-top: 6px;
  font-size: 0.95rem;
}

.footer-divider {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 24px 0;
  opacity: 0.15;
  font-size: 1.3rem;
  color: var(--caramel);
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-size: 1.4rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-bounce);
}

.social-link:hover {
  background: var(--caramel);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
  border-color: var(--caramel);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

.footer-copy i {
  margin-right: 4px;
}

/* =============================================================
   RESPONSIVIDADE — TABLET
   ============================================================= */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .frames-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .hunger-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .dog-header {
    flex-direction: column;
    text-align: center;
  }

  .dog-avatar-wrapper {
    width: 120px;
    height: 120px;
  }

  .dog-name {
    font-size: 1.7rem;
  }

  .dog-card {
    padding: 30px 24px;
  }

  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* =============================================================
   RESPONSIVIDADE — MOBILE GRANDE
   ============================================================= */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 100px 16px 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-title .icon-inline {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .frames-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 30px;
  }

  .frame-image-wrapper {
    max-width: 280px;
  }

  .dog-info-grid {
    grid-template-columns: 1fr;
  }

  .traits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trait {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .dog-actions {
    flex-direction: column;
  }

  .dog-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hunger-cards {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .actions-grid {
    grid-template-columns: 1fr;
  }

  .actions-grid .btn {
    padding: 16px 24px;
  }

  .footer-social {
    gap: 12px;
  }

  .social-link {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .footer-brand h3 {
    font-size: 1.2rem;
  }

  .toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

/* =============================================================
   RESPONSIVIDADE — MOBILE PEQUENO
   ============================================================= */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .dog-name {
    font-size: 1.4rem;
  }

  .dog-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .dog-avatar-wrapper {
    width: 100px;
    height: 100px;
  }

  .traits-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .hunger-card {
    padding: 20px;
  }

  .progress-label {
    font-size: 0.6rem;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .toast {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

/* =============================================================
   ANIMAÇÕES DE ENTRADA (AOS SIMULADO)
   ============================================================= */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   ESTADOS ESPECIAIS
   ============================================================= */

/* Estado animado de "fugindo" para Duke */
.dog-card.run-away .dog-avatar {
  animation: runAway 0.6s ease-in-out 3;
}

@keyframes runAway {
  0%, 100% {
    transform: translateX(0) scaleX(1);
  }
  25% {
    transform: translateX(-10px) scaleX(-1);
  }
  75% {
    transform: translateX(10px) scaleX(1);
  }
}

/* Estado "rosnando" para Choconona */
.dog-card.growling .dog-avatar {
  animation: growl 0.3s ease-in-out 6;
}

@keyframes growl {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08) rotate(-3deg);
  }
}

/* Estado "abanando o rabo" para Odinzete */
.dog-card.tail-wag .paw-prints i {
  animation: wagTail 0.4s ease-in-out infinite;
  display: inline-block;
}

/* Glow extra para quando um petisco é dado */
.dog-card.treat-glow .dog-glow {
  animation: treatGlow 0.8s ease-out 3;
}

@keyframes treatGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.3);
  }
}

/* =============================================================
   EFEITO DE PATINHAS NO FUNDO (background fixo)
   ============================================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23D4A373' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.06'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z'/%3E%3Ccircle cx='9' cy='9' r='1'/%3E%3Ccircle cx='15' cy='9' r='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 60px 60px;
  pointer-events: none;
}

/* =============================================================
   SELO/RIBBON DECORATIVO
   ============================================================= */
.dog-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, rgba(212, 163, 115, 0.08) 50%);
  pointer-events: none;
  border-radius: 0 24px 0 0;
}

/* =============================================================
   IMPRESSÃO
   ============================================================= */
@media print {
  .hero {
    min-height: auto;
    padding: 40px 20px;
  }

  .paw-rain,
  .toast-container,
  .btn {
    display: none !important;
  }

  .glass {
    backdrop-filter: none;
    background: var(--white);
  }

  .dog-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
