/* ==========================================================================
   DIP DOG — MASTER STYLESHEET (LARANJA VIBRANTE & ALTO IMPACTO)
   Fidelidade Estrutural, Cães Ampliados e Destaque para Embalagens
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS & CSS VARIABLES (COZYPAWS + DIP DOG VIBRANTE)
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* CozyPaws Official Palette */
  --cozy-bg: #EFFDF0;               /* Light mint green */
  --cozy-primary: #1a3d1a;          /* Primary dark green */
  --cozy-primary-hover: #2a5a2a;    /* Hover green */
  --cozy-orange: #FF5A00;           /* Vivid Orange accent */
  --cozy-orange-hover: #d45e0d;     /* Orange hover */

  /* Dip Dog Laranja Elétrico & Vibrante */
  --brand-orange: #FF5A00;          /* Laranja Super Vivo e Luminoso */
  --brand-orange-vivid: #FF4400;    /* Laranja Puro Saturado */
  --brand-coral: #FF7D3C;           /* Coral Radiante */
  --brand-orange-dark: #D93B00;     /* Laranja Queimado de Alto Contraste */
  --brand-orange-light: #FFF2EB;    /* Fundo Claro com Nuance Laranja */
  --brand-burgundy: #7A1020;        /* Vinho de Apoio */
  
  /* Neutrals & Carvão Dip Dog */
  --charcoal-dark: #0D0F11;
  --charcoal: #141716;              /* Preto Suave Oficial */
  --text-main: #1C2226;
  --text-muted: #6B625B;
  --white: #FFFFFF;
  --cream-bg: #EFFDF0;              /* Cozy mint green base */
  --cream-surface: #FDF1E8;
  --cream-card: #FCECE0;            /* Fundo suave dos cards de embalagem */
  --border-light: #EFE2D6;
  --border-orange: rgba(255, 90, 0, 0.25);

  /* Accents */
  --gold-accent: #FFAE1A;
  --gold-light: #FCE7BE;

  /* Typography */
  --font-main: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif-display: 'DM Serif Display', serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-display: 'Outfit', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(26, 61, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 61, 26, 0.14);
  --shadow-lg: 0 18px 40px rgba(255, 90, 0, 0.2);
  --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.font-serif-display {
  font-family: var(--font-serif-display);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & BUTTON UTILITIES
   -------------------------------------------------------------------------- */
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.orange-text {
  color: var(--brand-orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 999px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-pill-orange {
  background-color: var(--brand-orange);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(255, 90, 0, 0.35);
  transition: all var(--transition-fast);
}

.btn-pill-orange:hover {
  background-color: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 90, 0, 0.48);
}

.btn-pill-orange:active {
  transform: translateY(0);
}

.btn-outline-pill {
  padding: 8px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  transition: all var(--transition-fast);
}

.btn-outline-pill:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--cream-bg);
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(239, 226, 214, 0.6);
}

.site-header.scrolled {
  background-color: rgba(255, 248, 242, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(255, 90, 0, 0.1);
  border-bottom-color: var(--border-light);
}

.header-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo Dip Dog */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  width: 160px;
  height: 36px;
  flex: 0 0 160px;
}

.brand-logo-image {
  position: absolute;
  left: 0;
  top: 50%;
  width: 90px;
  height: 90px;
  object-fit: contain;
  transform: translateY(-50%);
}

.brand-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(255, 90, 0, 0.3));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo-text strong {
  color: var(--brand-orange);
  font-weight: 800;
}

.logo-text span {
  color: var(--charcoal);
  font-weight: 800;
}

.brand-dot {
  color: var(--brand-orange);
  font-style: normal;
  font-size: 1.1rem;
  margin-left: 2px;
}

.light-logo strong {
  color: var(--brand-orange);
}

.light-logo span {
  color: var(--white);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-orange);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--brand-orange);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle .arrow-down {
  font-size: 0.7rem;
  margin-left: 2px;
  display: inline-block;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-toggle .arrow-down {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  z-index: 10;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  transition: background var(--transition-fast);
}

.dropdown-content a:hover {
  background-color: var(--brand-orange-light);
  color: var(--brand-orange);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--charcoal);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  position: relative;
}

.icon-btn:hover {
  background-color: rgba(255, 90, 0, 0.12);
  color: var(--brand-orange);
}

.cart-btn .cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--brand-orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream-bg);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   KEYFRAME ANIMATIONS (COZYPAWS OFFICIAL SPECS)
   -------------------------------------------------------------------------- */
@keyframes wordPop {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.7) rotate(-4deg);
    filter: blur(8px);
  }
  65% {
    opacity: 1;
    transform: translateY(-8px) scale(1.05) rotate(1deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) skewY(3deg);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) skewY(0);
    filter: blur(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes photoReveal {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate-word-pop {
  opacity: 0;
  animation: wordPop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.animate-fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out both;
}

.animate-slide-up {
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-text-reveal {
  animation: textReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-scale-in {
  animation: scaleIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-photo-reveal {
  animation: photoReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Stagger Delay Classes */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }
.delay-700 { animation-delay: 700ms; }
.delay-800 { animation-delay: 800ms; }
.delay-900 { animation-delay: 900ms; }
.delay-1000 { animation-delay: 1000ms; }
.delay-1100 { animation-delay: 1100ms; }
.delay-1200 { animation-delay: 1200ms; }

/* --------------------------------------------------------------------------
   5. DIP DOG MASTER HERO (PRODUTO: ORELHA BOVINA DESIDRATADA DIP DOG)
   -------------------------------------------------------------------------- */
/* ======= HERO SECTION: IMG-BASED (ZERO CROP) ======= */
.hero-dipdog-master {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  background: #111417;
  overflow: hidden;
}

.hero-dipdog-master::before,
.hero-dipdog-master::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-dipdog-master::before {
  left: 0;
  width: 56px;
  background: linear-gradient(
    to bottom,
    #101214 0 56px,
    transparent 56px calc(100% - 56px),
    #211e1c calc(100% - 56px) 100%
  );
}

.hero-dipdog-master::after {
  right: 0;
  width: 22px;
  background: linear-gradient(
    to bottom,
    #ff4908 0 22px,
    transparent 22px calc(100% - 22px),
    #ff4908 calc(100% - 22px) 100%
  );
}

.hero-full-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.hero-product-overlay {
  position: absolute;
  z-index: 3;
  left: 27%;
  bottom: 3%;
  width: auto;
  height: 60%;
  max-width: 25%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
}

.hero-product-info {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 55%;
  width: min(39%, 520px);
  color: #fff;
  transform: translateY(-50%);
}

.hero-product-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  color: #fff;
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  font-weight: 750;
  letter-spacing: 0.02em;
}

.hero-product-info h1 {
  max-width: 520px;
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.2);
}

.hero-product-info h1 em {
  display: block;
  color: #fff275;
  font-family: var(--font-serif-display);
  font-weight: 500;
}

.hero-product-info p {
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 600;
}

.hero-product-price {
  display: block;
  margin: -10px 0 18px;
  color: #FFF275;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
}

.hero-dipdog-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: 380px;
  position: relative;
  z-index: 2;
}

/* Coluna Visual: contém o cão e o produto como <img> */
.hero-visual-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 380px;
  padding-left: clamp(90px, 10vw, 170px);
  padding-bottom: 0;
}

/* Imagem do Cachorro: NUNCA cortada */
.hero-dog-img {
  height: 340px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 2;
}

/* Imagem do Produto: ao lado do cão, tamanho proporcional à referência */
.hero-product-img {
  height: 320px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  margin-left: -50px;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

/* Coluna de Conteúdo sobre a área laranja vibrante à direita */
.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: clamp(72px, 8vw, 140px);
  max-width: 700px;
  color: var(--white);
  position: relative;
  z-index: 5;
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.hero-main-title {
  font-family: var(--font-main);
  font-size: clamp(2.3rem, 3.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.hero-highlight-serif {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-weight: 400;
  color: #FFF275;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Resumo ultra conciso do produto */
.hero-main-desc {
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 22px;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

/* Preço e Destaque do Produto */
.hero-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-price-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: #FFF275;
  letter-spacing: -0.01em;
}

/* Grupo de Ação */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* 1. Atributos Visuais Base: Botão Sólido Verde Esmeralda Profundo (#0D8A4E) */
.btn-hero-comprar-agora {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #0D8A4E; /* Verde Esmeralda Profundo */
  color: #FFFFFF; /* Branco Puro */
  font-family: var(--font-main);
  font-weight: 700; /* Negrito */
  font-size: 1.12rem;
  letter-spacing: 0.04em; /* Espaçamento entre letras ligeiramente aumentado (tracking) */
  line-height: 1;
  white-space: nowrap; /* Linha única de texto */
  padding: 16px 36px;
  border-radius: 50px; /* Cantos arredondados de ~50px */
  border: none;
  cursor: pointer;
  text-decoration: none;

  /* 2. Atributos de Efeito (Elevação): Sombra de Profundidade */
  box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.4), 0px 8px 10px -6px rgba(0, 0, 0, 0.3);

  /* 3. Atributos de Microinteração: Transição suave de 0.2s */
  transition: all 0.2s ease;
}

.btn-hero-comprar-agora .btn-arrow {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
  display: inline-block;
  transition: transform 0.2s ease;
}

/* Estado Hover: Tom de verde mais brilhante, expansão da sombra e deslocamento de 2px para cima */
.btn-hero-comprar-agora:hover {
  background-color: #0FA55D; /* Tom mais brilhante e saturado */
  box-shadow: 0px 14px 28px -4px rgba(0, 0, 0, 0.45), 0px 10px 14px -5px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.btn-hero-comprar-agora:hover .btn-arrow {
  transform: translateX(4px);
}

/* 4. Botão Secundário: Ghost Button transparente com borda branca 40% opaca */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.4); /* Borda branca 40% opaca */
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

/* Botão Verde Esmeralda para Modal */
.btn-emerald-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #0D8A4E;
  color: #FFFFFF;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0px 8px 20px -4px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease;
}

.btn-emerald-pill:hover {
  background-color: #0FA55D;
  transform: translateY(-2px);
  box-shadow: 0px 10px 24px -4px rgba(0, 0, 0, 0.45);
}

/* Selos de Benefícios do Produto */
.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-trust-item svg {
  color: #FFF275;
  flex-shrink: 0;
}

/* Transição de onda suave do hero para o banner de estatísticas */
.hero-master-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.hero-master-wave svg {
  width: 100%;
  height: 50px;
  display: block;
}

/* Responsividade Mobile e Tablet: Separação Vertical */
@media (max-width: 960px) {
  .hero-dipdog-master {
    width: 100%;
    height: clamp(360px, 72vw, 520px);
    min-height: 0;
    padding-top: 0;
    border-radius: 0;
  }

  .hero-full-image {
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }

  .hero-product-overlay {
    left: 30%;
    bottom: 5%;
    height: 40%;
    max-width: 28%;
  }

  .hero-product-info {
    right: 4%;
    left: auto;
    width: 42%;
  }

  .hero-product-info h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-dipdog-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    min-height: 340px;
  }

  .hero-visual-col {
    min-height: 340px;
    justify-content: center;
    padding: 20px 20px 0;
  }

  .hero-visual-col:empty {
    display: none;
  }

  .hero-dog-img {
    height: 320px;
  }

  .hero-product-img {
    height: 180px;
    margin-left: -20px;
  }

  .hero-content-col {
    background: linear-gradient(135deg, #FF5A00 0%, #D93B00 100%);
    padding: 36px 24px 44px;
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }

  .hero-main-title {
    font-size: 2.2rem;
  }

  .hero-main-desc {
    max-width: 100%;
  }

  .hero-price-row {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-dipdog-master {
    width: 100%;
    height: clamp(380px, 120vw, 560px);
    border-radius: 0;
  }

  .hero-full-image {
    object-position: left center;
  }

  .hero-product-overlay {
    right: 2%;
    bottom: 3%;
    left: auto;
    height: 29%;
    max-width: 40%;
  }

  .hero-product-info {
    top: 7%;
    right: 4%;
    left: auto;
    width: 48%;
    transform: none;
  }

  .hero-product-kicker {
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 0.64rem;
  }

  .hero-product-info h1 {
    margin-bottom: 9px;
    font-size: clamp(1.65rem, 8.2vw, 2.25rem);
  }

  .hero-product-info p {
    margin-bottom: 15px;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .hero-product-info .btn-hero-comprar-agora {
    padding: 13px 19px;
    font-size: 0.88rem;
  }
}

/* --------------------------------------------------------------------------
   6. STATS COUNTER BANNER (LARANJA VIBRANTE)
   -------------------------------------------------------------------------- */
.stats-banner {
  background: linear-gradient(135deg, #FF5A00 0%, #E63D00 100%);
  color: var(--white);
  padding: 24px 0 28px;
  position: relative;
  z-index: 4;
  box-shadow: 0 6px 24px rgba(255, 90, 0, 0.32);
}

.stats-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.stat-icon-wrap {
  color: #FFF0E6;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------------
   7. MANIFESTO COM FOTO DO CÃO AMPLIADA
   -------------------------------------------------------------------------- */
.corgis-poem-section {
  padding: 70px 0 50px;
  background-color: var(--white);
}

.corgis-poem-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.corgis-image-wrap {
  display: flex;
  width: 100%;
  max-width: 560px;
  height: 373px;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 28px;
  background: #fff8f2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dog-manifesto-large {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform var(--transition-normal);
}

.dog-manifesto-large:hover {
  transform: scale(1.02);
}

.poem-content {
  position: relative;
  padding-left: 10px;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 5.2rem;
  line-height: 1;
  color: var(--brand-orange);
  opacity: 0.5;
  margin-bottom: -15px;
}

.poem-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--charcoal);
}

.poem-deco-leaf {
  margin-top: 14px;
  font-size: 1.4rem;
  opacity: 0.5;
  color: var(--brand-coral);
}

/* --------------------------------------------------------------------------
   8. SOBRE NÓS — CARDS APENAS COM IMAGENS DOS PACOTES
   -------------------------------------------------------------------------- */
.about-section {
  padding: 60px 0 80px;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.about-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 18px 0 28px;
}

.arrow-right {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn:hover .arrow-right {
  transform: translateX(4px);
}

.about-right-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

.package-showcase-card {
  background-color: var(--cream-card);
  border-radius: 22px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 90, 0, 0.06);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
}

.package-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}

.package-showcase-card img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.package-bifinhos-images {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
}

.package-showcase-card .package-bifinhos-images img {
  width: calc(50% - 2px);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 12px;
}

@media (max-width: 600px) {
  .package-bifinhos-images {
    height: 120px;
    gap: 2px;
  }

  .package-showcase-card .package-bifinhos-images img {
    width: calc(50% - 1px);
    border-radius: 10px;
  }
}

.package-tag {
  position: absolute;
  bottom: 8px;
  background: rgba(20, 23, 22, 0.85);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: background var(--transition-fast);
}

.package-showcase-card:hover .package-tag {
  background: var(--brand-orange);
}

/* --------------------------------------------------------------------------
   9. MAIS VENDIDOS (BEST SELLER)
   -------------------------------------------------------------------------- */
.bestsellers-section {
  padding: 60px 0;
  background-color: var(--white);
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--brand-orange);
  color: var(--white);
  border-color: var(--brand-orange);
  transform: scale(1.08);
}

.bestsellers-track {
  display: flex;
  gap: 20px;
  width: 100%;
  margin: 0 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bestsellers-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  background: var(--white);
  border: 1px solid #EFEAE0;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 290px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 90, 0, 0.3);
}

.product-img-wrap {
  background-color: #FAF8F5;
  border-radius: 14px;
  padding: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  min-height: 180px;
}

.product-img-wrap img {
  max-height: 160px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.quick-view-badge {
  position: absolute;
  bottom: 8px;
  background: rgba(255, 90, 0, 0.92);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition-fast);
}

.product-img-wrap:hover .quick-view-badge {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta {
  font-size: 0.75rem;
  color: var(--brand-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.product-title:hover {
  color: var(--brand-orange);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 6px 0 10px;
}

.stars {
  color: var(--gold-accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.review-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 8px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
}

.product-actions-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-ml-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2D3277;
  background-color: #FFF159;
  padding: 6px 8px;
  border-radius: 6px;
  transition: transform var(--transition-fast);
}

.btn-ml-link:hover {
  transform: scale(1.05);
}

.btn-add-cart {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: var(--brand-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(255, 90, 0, 0.3);
}

.btn-add-cart:hover {
  background-color: var(--brand-orange-dark);
  transform: scale(1.08);
}

.btn-add-cart:active {
  transform: scale(0.95);
}

/* --------------------------------------------------------------------------
   10. PETISCOS SELECIONADOS (PEDESTAIS CIRCULARES)
   -------------------------------------------------------------------------- */
.petfood-section {
  padding: 40px 0 70px;
  background-color: var(--white);
}

.petfood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.petfood-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kit-card-copy {
  width: 100%;
  max-width: 220px;
  margin-top: 18px;
  text-align: left;
}

.kit-card-category {
  display: block;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kit-card-title {
  margin: 4px 0 6px;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.24;
}

.kit-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
}

.kit-card-rating .stars {
  color: #FFAE00;
  letter-spacing: 0.04em;
}

.kit-card-rating .review-count {
  color: var(--gray);
}

.circle-pedestal {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #FDF3EB 60%, #F5E2D3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: 0 6px 16px rgba(255, 90, 0, 0.08);
}

.circle-pedestal:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(255, 90, 0, 0.2);
}

.circle-pedestal img {
  max-height: 110px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.circle-pedestal:hover img {
  transform: scale(1.08);
}

.petfood-item-info {
  display: flex;
  width: 100%;
  max-width: 220px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}

.btn-circle-cart {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-circle-cart:hover {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--white);
  transform: scale(1.12);
}

/* --------------------------------------------------------------------------
   11. BANNER DE OFERTA ESPECIAL (INTEGRADO & VIBRANTE)
   -------------------------------------------------------------------------- */
.offer-section {
  padding: 30px 0 70px;
}

.offer-card-vivid {
  background: linear-gradient(100deg, #111417 0%, #1e1513 36%, #FF5A00 78%, #FF3D00 100%);
  border-radius: 32px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
}

.offer-dog-side-large {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 380px;
  position: relative;
  padding-left: clamp(24px, 5vw, 64px);
}

.offer-dog-img-large {
  width: auto;
  height: clamp(280px, 34vw, 380px);
  max-width: 90%;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(4px 6px 20px rgba(0, 0, 0, 0.45));
}

.offer-caramelo-img {
  align-self: stretch;
  width: 36%;
  max-width: 36%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 32px 32px 0;
  filter: none;
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.55) 16%, #000 34%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.55) 16%, #000 34%);
}

/* Carrossel contínuo de produtos dentro do banner, sem alterar a hero. */
.offer-dog-side-large {
  z-index: 4;
  justify-content: flex-end;
  padding-right: 0;
  padding-left: 0;
  pointer-events: none;
}

.offer-products-carousel {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 28%;
  bottom: 18px;
  left: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.offer-products-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: offer-products-marquee 58s linear infinite;
}

.offer-products-carousel:hover .offer-products-track,
.offer-products-carousel:focus-within .offer-products-track {
  animation-play-state: paused;
}

.offer-products-set {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.offer-product-slide {
  width: clamp(150px, 15vw, 205px);
  height: clamp(250px, 29vw, 338px);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offer-product-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.34));
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes offer-products-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .offer-products-carousel {
    top: 14px;
    right: 31%;
    bottom: 14px;
    left: 0;
  }

  .offer-caramelo-img {
    width: 40%;
    max-width: 40%;
  }

  .offer-product-slide {
    width: 160px;
    height: 286px;
  }
}

@media (max-width: 768px) {
  .offer-products-carousel {
    top: 10px;
    right: 36%;
    bottom: 10px;
    left: 0;
  }

  .offer-caramelo-img {
    width: 46%;
    max-width: 46%;
    border-radius: 0 24px 24px 0;
  }

  .offer-product-slide {
    width: 128px;
    height: 214px;
    padding: 7px;
    border-radius: 16px;
  }

  .offer-products-set {
    gap: 12px;
    padding-right: 12px;
  }

  .offer-products-track {
    animation-duration: 48s;
  }
}

/* Cabeçalho compacto no celular: evita que ações concorram pelo mesmo espaço. */
@media (max-width: 768px) {
  .header-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 60px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand-logo {
    min-width: 0;
    gap: 7px;
  }

  .brand-badge-icon svg {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    font-size: 1.3rem;
    white-space: nowrap;
  }

  .header-actions {
    margin-left: 0;
    gap: 8px;
  }

  .header-actions > :not(#cart-toggle):not(#menu-toggle) {
    display: none;
  }

  #cart-toggle {
    display: flex;
    width: 34px;
    height: 34px;
  }

  #menu-toggle {
    display: flex;
    width: 28px;
    height: 22px;
    padding: 2px;
  }

  .nav-menu {
    top: 60px;
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-products-track {
    animation-play-state: paused;
  }
}

.offer-package-overlay {
  position: absolute;
  z-index: 2;
  right: 1%;
  bottom: 0;
  width: auto;
  height: 62%;
  max-width: 32%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.42));
}

.offer-text-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 0;
}

.offer-script-tag {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-accent);
  font-size: 1.7rem;
  line-height: 1.2;
}

.offer-discount-title {
  font-family: var(--font-main);
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.05;
  margin: 4px 0;
}

.offer-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  font-weight: 500;
}

.offer-action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-offer-shop {
  background-color: var(--white);
  color: var(--brand-orange-dark);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-offer-shop:hover {
  background-color: var(--cream-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.coupon-pill {
  background: rgba(255, 255, 255, 0.18);
  border: 1px dashed rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition-fast);
}

.coupon-pill:hover {
  background: rgba(255, 255, 255, 0.28);
}

.copy-hint {
  font-size: 0.75rem;
  background: var(--gold-accent);
  color: var(--charcoal-dark);
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   12. FAIXA DE GARANTIAS
   -------------------------------------------------------------------------- */
.trust-section {
  padding: 30px 0 60px;
  border-bottom: 1px solid var(--border-light);
}

.trust-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.trust-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. RODAPÉ (CARVÃO DIP DOG)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--charcoal-dark);
  color: var(--white);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 50px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Destaca o contorno escuro das orelhas sobre o fundo do rodapé. */
.footer-logo .brand-logo-image {
  filter: drop-shadow(0 0 1.5px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 5px rgba(255, 90, 0, 0.3));
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--brand-orange);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.footer-contact-list svg {
  color: var(--brand-coral);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: inherit;
  transition: color var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--brand-orange);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   14. CARRINHO LATERAL (DRAWER)
   -------------------------------------------------------------------------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
}

.close-cart-btn {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.close-cart-btn:hover {
  color: var(--brand-orange);
}

.cart-items-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.empty-cart-msg {
  text-align: center;
  color: var(--text-muted);
  margin-top: 60px;
  font-size: 0.95rem;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F0ECE2;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #FAF8F5;
  object-fit: contain;
  padding: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--brand-orange);
  font-weight: 700;
}

.cart-item-qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #EFECE6;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #E0DDD4;
}

.remove-cart-item {
  color: #C9441B;
  font-size: 0.78rem;
  margin-left: auto;
  cursor: pointer;
  text-decoration: underline;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  background: #FAF8F5;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.shipping-info {
  font-size: 0.78rem;
  color: var(--brand-orange);
  font-weight: 600;
  margin-bottom: 16px;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   15. MODAL DE VISUALIZAÇÃO RÁPIDA (QUICK VIEW)
   -------------------------------------------------------------------------- */
.quickview-modal {
  border: none;
  background: transparent;
  margin: auto;
  max-width: 660px;
  width: 90%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 0;
  overflow: hidden;
}

.quickview-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-card {
  background: var(--white);
  border-radius: 24px;
  position: relative;
  padding: 32px;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--brand-orange);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.modal-img-wrap {
  background-color: #FAF8F5;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img-wrap img {
  max-height: 220px;
  object-fit: contain;
}

.modal-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-orange);
  letter-spacing: 0.05em;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 4px 0 8px;
  line-height: 1.25;
}

.modal-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin: 8px 0;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.modal-badges {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-orange-dark);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: 999px;
  padding: 4px 10px;
  gap: 12px;
}

.qty-selector button {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
  padding: 0 4px;
}

.qty-selector span {
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   16. NOTIFICAÇÕES TOAST
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3000;
  pointer-events: none;
}

.toast {
  background-color: var(--charcoal-dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--brand-orange);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}

.toast.removing {
  animation: toastOut 0.25s forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(16px); }
}

/* --------------------------------------------------------------------------
   17. BREAKPOINTS RESPONSIVOS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-right-cards {
    max-width: 600px;
  }

  .offer-card-vivid {
    min-height: 320px;
    padding: 0;
    justify-content: center;
  }

  .offer-dog-side-large {
    height: 320px;
    min-height: 320px;
    justify-content: center;
    padding-left: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 18px;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--cream-bg);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-120%);
    transition: transform var(--transition-normal);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .hamburger-btn {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding-bottom: 10px;
  }

  .hero-desc {
    margin: 0 auto 24px;
  }

  .hero-search-form {
    margin: 0 auto 28px;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-dog-large {
    max-width: 380px;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 60%;
    height: 1px;
  }

  .corgis-poem-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .poem-content {
    padding-left: 0;
  }

  .about-right-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .petfood-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-card-vivid {
    min-height: 240px;
    padding: 0;
    justify-content: center;
  }

  .offer-dog-side-large {
    height: 240px;
    min-height: 240px;
    max-height: 240px;
    justify-content: center;
    padding-left: 0;
  }

  .trust-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .modal-body-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajustes finais exclusivos para celulares. Desktop permanece inalterado. */
@media (max-width: 600px) {
  .header-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 60px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand-logo {
    min-width: 0;
    gap: 7px;
  }

  .brand-badge-icon svg {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    font-size: 1.3rem;
    white-space: nowrap;
  }

  .header-actions {
    margin-left: 0;
    gap: 8px;
  }

  .header-actions > :not(#cart-toggle):not(#menu-toggle) {
    display: none;
  }

  #cart-toggle {
    display: flex;
    width: 34px;
    height: 34px;
  }

  #menu-toggle {
    display: flex;
    width: 28px;
    height: 22px;
    padding: 2px;
  }

  .nav-menu {
    top: 60px;
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
  }

  .hero-dipdog-master {
    height: min(135vw, 540px);
    min-height: 480px;
    isolation: isolate;
  }

  .hero-full-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 16% center;
  }

  .hero-dipdog-master::before,
  .hero-dipdog-master::after {
    display: none;
  }

  .hero-product-info {
    top: 28px;
    right: 14px;
    bottom: auto;
    left: 46%;
    width: auto;
    max-width: none;
    transform: none;
  }

  .hero-product-kicker {
    max-width: 100%;
    margin-bottom: 9px;
    padding: 6px 9px;
    font-size: 0.7rem;
    line-height: 1.25;
    white-space: normal;
  }

  .hero-product-info h1 {
    margin-bottom: 10px;
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
    line-height: 1.02;
  }

  .hero-product-info p {
    margin-bottom: 14px;
    font-size: 0.875rem;
    line-height: 1.35;
  }

  .hero-product-info .btn-hero-comprar-agora {
    padding: 13px 16px;
    gap: 8px;
    font-size: 0.9rem;
  }

  .hero-product-overlay {
    right: 8px;
    bottom: 14px;
    left: auto;
    height: 29%;
    max-width: 42%;
  }

  .offer-card-vivid {
    min-height: 230px;
  }

  .offer-dog-side-large {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 230px;
    min-height: 230px;
    max-height: 230px;
    justify-content: flex-end;
    z-index: 3;
  }

  .offer-caramelo-img {
    width: 36%;
    max-width: 36%;
    height: 100%;
    object-position: 58% center;
    border-radius: 0 20px 20px 0;
    mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.72) 18%, #000 30%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.72) 18%, #000 30%);
  }

  .offer-products-carousel {
    top: 8px;
    right: 36%;
    bottom: 8px;
    left: 0;
    z-index: 4;
  }

  .offer-product-slide {
    width: 104px;
    height: 188px;
    padding: 4px;
  }

  .offer-products-set {
    gap: 8px;
    padding-right: 8px;
  }
}
