/* ============================================================
   STYLE.CSS — CATÁLOGO DIGITAL AGRO RAUL VEIGA
   ============================================================
   Paleta extraída da logo:
   - Azul forte: #2B4C9B (principal)
   - Amarelo: #F5C518 (destaques, preços)
   - Vermelho: #E53935 (urgência, promoções)
   - Azul escuro: #1A1A2E (textos)
   - Branco/Cinza claro: #F8F9FA (fundos)
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800;900&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Cores da marca */
  --color-primary: #2B4C9B;
  --color-primary-dark: #1E3A7A;
  --color-primary-light: #3D65C4;
  --color-yellow: #F5C518;
  --color-yellow-dark: #D4A90F;
  --color-red: #E53935;
  --color-red-dark: #C62828;
  --color-green-whatsapp: #25D366;
  --color-green-whatsapp-dark: #1EBE57;

  /* Cores de texto */
  --color-text-dark: #1A1A2E;
  --color-text-body: #333340;
  --color-text-light: #6B7280;
  --color-text-white: #FFFFFF;

  /* Cores de fundo */
  --color-bg: #F8F9FA;
  --color-bg-white: #FFFFFF;
  --color-bg-light: #F0F2F5;
  --color-bg-hero: linear-gradient(135deg, #1E3A7A 0%, #2B4C9B 50%, #3D65C4 100%);

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 30px rgba(43,76,155,0.18);

  /* Espaçamentos */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Bordas */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* Tipografia */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* ── UTILITÁRIOS ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-primary);
  transition: box-shadow var(--transition-normal);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: contain;
  border: 2px solid rgba(255,255,255,0.3);
  background: #fff;
  padding: 2px;
  flex-shrink: 0;
}

.header__text h1 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.2;
}

.header__text p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-green-whatsapp);
  color: var(--color-text-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header__cta:hover {
  background: var(--color-green-whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.header__cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.header__cta-text {
  display: none;
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  background: var(--color-bg-hero);
  padding: var(--space-3xl) var(--space-md) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

/* Padrão de fundo decorativo */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245,197,24,0.08);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-yellow);
  color: var(--color-text-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-text-white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero__title span {
  color: var(--color-yellow);
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.hero__validity {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(229,57,53,0.9);
  color: var(--color-text-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.hero__validity svg {
  width: 16px;
  height: 16px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);
  min-width: 220px;
}

.btn--yellow {
  background: var(--color-yellow);
  color: var(--color-text-dark);
}

.btn--yellow:hover {
  background: var(--color-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.4);
}

.btn--whatsapp {
  background: var(--color-green-whatsapp);
  color: var(--color-text-white);
}

.btn--whatsapp:hover {
  background: var(--color-green-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--color-text-white);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* Elementos decorativos do Hero */
.hero__floats {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero__float-item {
  position: absolute;
  font-size: 2rem;
  opacity: 0.12;
  animation: float 6s ease-in-out infinite;
}

.hero__float-item:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.hero__float-item:nth-child(2) { top: 60%; left: 8%; animation-delay: 1.5s; font-size: 1.5rem; }
.hero__float-item:nth-child(3) { top: 25%; right: 5%; animation-delay: 0.5s; }
.hero__float-item:nth-child(4) { top: 70%; right: 10%; animation-delay: 2s; font-size: 1.8rem; }
.hero__float-item:nth-child(5) { bottom: 15%; left: 20%; animation-delay: 1s; font-size: 1.3rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ════════════════════════════════════════════
   BARRA DE AVISO
   ════════════════════════════════════════════ */
.notice-bar {
  background: var(--color-yellow);
  padding: var(--space-md) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.notice-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.1) 20px,
    rgba(255,255,255,0.1) 40px
  );
  animation: slide-stripes 20s linear infinite;
}

@keyframes slide-stripes {
  0% { transform: translateX(0); }
  100% { transform: translateX(40px); }
}

.notice-bar__inner {
  position: relative;
  z-index: 1;
}

.notice-bar__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
}

.notice-bar__title svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 4px;
}

.notice-bar__text {
  font-size: 0.8rem;
  color: var(--color-text-dark);
  opacity: 0.8;
}

/* ════════════════════════════════════════════
   SHARE / COUNTDOWN BAR
   ════════════════════════════════════════════ */
.toolbar {
  background: var(--color-bg-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: var(--space-md);
}

.toolbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.toolbar__info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.toolbar__info svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.toolbar__info strong {
  color: var(--color-primary);
}

.btn--share {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-primary);
  color: var(--color-text-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn--share:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn--share svg {
  width: 16px;
  height: 16px;
}

/* ════════════════════════════════════════════
   FILTROS DE CATEGORIA
   ════════════════════════════════════════════ */
.categories {
  padding: var(--space-xl) var(--space-md) var(--space-md);
  background: var(--color-bg);
}

.categories__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.categories__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.categories__filters {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.categories__filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  flex-shrink: 0;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-bg-white);
  color: var(--color-text-body);
  font-size: 0.82rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(43,76,155,0.3);
}

.filter-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.1);
  color: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 6px;
  margin-left: 4px;
}

.filter-btn.active .filter-btn__count {
  background: rgba(255,255,255,0.25);
}

/* ════════════════════════════════════════════
   GRADE DE PRODUTOS
   ════════════════════════════════════════════ */
.products {
  padding: var(--space-md) var(--space-md) var(--space-3xl);
  background: var(--color-bg);
}

.products__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.products__empty {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--color-text-light);
}

.products__empty svg {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  opacity: 0.4;
}

.products__empty p {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ════════════════════════════════════════════
   CARD DE PRODUTO
   ════════════════════════════════════════════ */
.product-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  /* Animação de entrada */
  opacity: 0;
  transform: translateY(30px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition-normal);
}

.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.product-card.visible:hover {
  transform: translateY(-4px);
}

/* Imagem */
.product-card__image-wrap {
  position: relative;
  background: var(--color-bg-light);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

/* Placeholder de imagem quando não carrega */
.product-card__image-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  gap: var(--space-sm);
}

.product-card__image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.product-card__image-placeholder span {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* Badges */
.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--color-red);
  color: var(--color-text-white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(229,57,53,0.3);
}

.product-card__category-tag {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--color-primary);
  color: var(--color-text-white);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 600;
  z-index: 2;
}

/* Conteúdo */
.product-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.product-card__description {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  /* Cresce para igualar a altura entre os cards e alinhar o preço/botão */
  flex-grow: 1;
}

/* Preço */
.product-card__price-wrap {
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(135deg, #FFF9E0 0%, #FFFEF5 100%);
  border-radius: var(--radius-md);
  border: 2px dashed var(--color-yellow);
  text-align: center;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-red);
  line-height: 1.2;
}

/* Validade */
.product-card__validity {
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

/* Nota */
.product-card__note {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--color-primary);
  background: rgba(43,76,155,0.06);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  text-align: center;
  font-weight: 500;
  line-height: 1.35;
}

/* No mobile (coluna única) a nota vazia some para não deixar espaço vago */
.product-card__note:empty {
  display: none;
}

/* Botão WhatsApp */
.product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--color-green-whatsapp);
  color: var(--color-text-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  width: 100%;
  text-align: center;
}

.product-card__btn:hover {
  background: var(--color-green-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

.product-card__btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   SEÇÃO DE CONFIANÇA
   ════════════════════════════════════════════ */
.trust {
  background: var(--color-bg-white);
  padding: var(--space-3xl) var(--space-md);
}

.trust__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.trust__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.trust__item {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  transition: all var(--transition-normal);
}

.trust__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-text-white);
}

.trust__icon svg {
  width: 28px;
  height: 28px;
}

.trust__item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
}

.trust__item p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ════════════════════════════════════════════
   AVISO VETERINÁRIO
   ════════════════════════════════════════════ */
.vet-notice {
  background: linear-gradient(135deg, #EEF2FF 0%, #F0F4FF 100%);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-xl) var(--space-md);
  margin: 0;
}

.vet-notice__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  flex-wrap: wrap;
}

.vet-notice__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  flex-shrink: 0;
}

.vet-notice__icon svg {
  width: 24px;
  height: 24px;
}

.vet-notice__content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
}

.vet-notice__content p {
  font-size: 0.85rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   RODAPÉ
   ════════════════════════════════════════════ */
.footer {
  background: var(--color-text-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--space-3xl) var(--space-md) var(--space-lg);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer__logo {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.2);
  background: #fff;
  padding: 3px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__brand-text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-white);
}

.footer__brand-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
}

.footer__info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-yellow);
}

.footer__info-item a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
}

.footer__info-item a:hover {
  color: var(--color-yellow);
}

.footer__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--color-green-whatsapp);
  color: var(--color-text-white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer__cta-btn:hover {
  background: var(--color-green-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.footer__cta-btn svg {
  width: 22px;
  height: 22px;
}

.footer__map {
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  line-height: 0;
}

.footer__map iframe {
  display: block;
  width: 100%;
  filter: grayscale(15%);
}

.footer__map-link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.06);
  color: var(--color-yellow);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  transition: background var(--transition-fast);
}

.footer__map-link:hover {
  background: rgba(255,255,255,0.12);
}

.footer__bottom {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom p + p {
  margin-top: var(--space-xs);
}

/* ════════════════════════════════════════════
   BOTÃO FLUTUANTE WHATSAPP
   ════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--color-green-whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition-fast);
  animation: float-btn 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--color-text-white);
}

@keyframes float-btn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.1);
}

/* ════════════════════════════════════════════
   TOAST DE NOTIFICAÇÃO
   ════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-text-dark);
  color: var(--color-text-white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  opacity: 0;
  transition: all var(--transition-normal);
  pointer-events: none;
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ════════════════════════════════════════════
   RESPONSIVO — TELAS MUITO PEQUENAS (< 400px)
   ════════════════════════════════════════════ */
@media (max-width: 399px) {
  .header__logo {
    width: 46px;
    height: 46px;
  }

  .header__text h1 {
    font-size: 0.95rem;
  }

  .header__text p {
    font-size: 0.6rem;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .hero__subtitle {
    font-size: 0.88rem;
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: var(--space-xs) var(--space-sm);
  }

  .btn {
    min-width: 180px;
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-md);
  }

  .product-card__price {
    font-size: 1.1rem;
  }

  .notice-bar__title {
    font-size: 0.85rem;
  }

  .notice-bar__text {
    font-size: 0.72rem;
  }

  .vet-notice__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .vet-notice__icon svg {
    width: 18px;
    height: 18px;
  }

  .trust__item {
    padding: var(--space-md);
  }

  .footer__brand-text h3 {
    font-size: 0.95rem;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVO — TABLET (≥ 576px)
   ════════════════════════════════════════════ */
@media (min-width: 576px) {
  .hero__title {
    font-size: 2.6rem;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header__cta-text {
    display: inline;
  }

  /* Em grade (2+ colunas): reserva altura da nota para alinhar
     "Consulte o preço" e o botão entre os cards da mesma linha */
  .product-card__note {
    min-height: 3rem;
  }

  .product-card__note:empty {
    display: flex;
    background: transparent;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVO — DESKTOP (≥ 768px)
   ════════════════════════════════════════════ */
@media (min-width: 768px) {
  .hero {
    padding: var(--space-3xl) var(--space-xl);
  }

  .hero__title {
    font-size: 3rem;
  }

  .header__logo {
    width: 60px;
    height: 60px;
  }

  .header__text h1 {
    font-size: 1.25rem;
  }

  .header__text p {
    font-size: 0.75rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .product-card__price {
    font-size: 1.4rem;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVO — DESKTOP GRANDE (≥ 992px)
   ════════════════════════════════════════════ */
@media (min-width: 992px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__title {
    font-size: 3.2rem;
  }

  .categories__filters {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVO — TELAS GRANDES (≥ 1200px)
   ════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .products__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__title {
    font-size: 3.5rem;
  }
}

/* ════════════════════════════════════════════
   ACESSIBILIDADE — REDUCED MOTION
   ════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .product-card {
    opacity: 1;
    transform: none;
  }
}
