/* ==========================================
   Au Pets Landing Page Premium CSS
   Mobile-first, premium warm design
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Marca e Identidade */
  --primary: #5B21B6; /* Roxo profundo */
  --primary-dark: #4C1D95;
  --secondary: #D97706; /* Âmbar quente */
  --secondary-dark: #B45309;
  
  --bg-primary: #FAFAFA; /* Off-white */
  --surface: #FFFFFF; /* Branco */
  
  --text-primary: #18181B; /* Cinza escuro */
  --text-secondary: #52525B; /* Cinza médio */
  
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;

  /* Fonts */
  --font-body: 'Inter', sans-serif;
  --font-display: 'DM Sans', sans-serif;

  /* Sombras (Suaves e em camadas) */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 12px 24px rgba(91, 33, 182, 0.25);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-blur: blur(24px);

  /* Utilities */
  --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-family: var(--font-body); }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   1. HEADER / FOOTER / DRAWER
   Definidos em /css/style.css (fonte única para componentes
   compartilhados entre todas as páginas).
   ========================================================= */

/* =========================================================
   2. HERO CARROSSEL DE BANNERS (texto nativo na imagem)
   ========================================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Outer wrapper — header island flutua sobre o topo do banner com glass */
.hero-carousel-wrap {
  position: relative;
  width: 100%;
  padding: 48px 16px 32px 16px;
  background: var(--bg-primary); /* Fundo acompanhando o site */
  display: flex;
  justify-content: center;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
  /* Sem aspect-ratio — altura vem do slide ativo (que tem aspect próprio) */
}

@media(min-width: 768px) {
  .hero-carousel-wrap { padding: 48px 24px 32px 24px; }
  .hero-carousel { max-width: 1280px; }
}

/* Fallback enquanto carrega — esconde o wrap se não houver banners */
.hero-carousel-wrap.is-empty { display: none; }

/* =========================================================
   PEEK TRACK — slides em linha; o ativo no centro, vizinhos
   espreitando ~5% nas laterais. Move via translateX + var CSS.
   Fórmula: para slide N centralizado, offset = 5% - N * 91.5%
   (slide = 90%, gap = 1.5%, então passo entre centros = 91.5%)
   ========================================================= */
.hero-slides {
  position: relative;
  width: 100%;
  display: flex;
  gap: 1.5%;
  transform: translateX(calc(5% - var(--hero-current, 0) * 91.5%));
  transition: transform 0.7s var(--ease-premium);
}

/* Cada slide tem aspect-ratio próprio (4:5 mobile, 21:9 desktop) — preserva
   a proporção do banner mesmo no desktop com 90% de largura (peek nas laterais). */
.hero-slide {
  flex: 0 0 90%;
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 1;
  cursor: pointer;
}
.hero-slide.active { cursor: default; }

/* Mobile: slide ocupa 100% (sem peek), aspect 4:5 */
@media (max-width: 767px) {
  .hero-slides {
    gap: 0;
    transform: translateX(calc(var(--hero-current, 0) * -100%));
  }
  .hero-slide {
    flex: 0 0 100%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    transform: scale(1);
    opacity: 1;
    cursor: default;
  }
}

/* Respeita prefers-reduced-motion — sem transição em quem desativa animações */
@media (prefers-reduced-motion: reduce) {
  .hero-slides,
  .hero-slide { transition: none; }
}
.hero-slide a,
.hero-slide .hero-slide-inner {
  display: block;
  width: 100%; height: 100%;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Setas (desktop) — glassmorphism com gradiente, inset highlights, reveal-on-hover.
   Default: 0.55 opacity + ligeiramente recuadas pras bordas. Carousel hover:
   slide-in pra posição final + opacidade total. Botão hover: gradiente roxo,
   scale up, halo de sombra colorida, e a chevron nudge na direção. */
.hero-arrow {
  position: absolute;
  top: 50%;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(20, 20, 30, 0.55), rgba(10, 10, 15, 0.7));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  box-shadow:
    0 14px 32px -10px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  opacity: 0.55;
  transition:
    background 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium),
    transform 0.5s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    opacity 0.35s var(--ease-premium);
}
.hero-arrow-prev { left: 22px; transform: translateY(-50%) translateX(-6px); }
.hero-arrow-next { right: 22px; transform: translateY(-50%) translateX(6px); }

/* Reveal: ao hover do carousel as setas deslizam pra dentro e ficam 100% */
.hero-carousel:hover .hero-arrow,
.hero-arrow:focus-visible { opacity: 1; }
.hero-carousel:hover .hero-arrow-prev,
.hero-arrow-prev:focus-visible { transform: translateY(-50%) translateX(0); }
.hero-carousel:hover .hero-arrow-next,
.hero-arrow-next:focus-visible { transform: translateY(-50%) translateX(0); }

/* Hover no botão: gradiente roxo, scale, halo colorido */
.hero-arrow:hover {
  background: linear-gradient(180deg, rgba(91, 33, 182, 0.92), rgba(76, 29, 149, 0.95));
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 20px 44px -10px rgba(91, 33, 182, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.hero-carousel:hover .hero-arrow-prev:hover { transform: translateY(-50%) translateX(0) scale(1.08); }
.hero-carousel:hover .hero-arrow-next:hover { transform: translateY(-50%) translateX(0) scale(1.08); }
.hero-carousel:hover .hero-arrow-prev:active { transform: translateY(-50%) translateX(0) scale(0.96); }
.hero-carousel:hover .hero-arrow-next:active { transform: translateY(-50%) translateX(0) scale(0.96); }

/* Chevron nudge na direção do botão */
.hero-arrow svg { transition: transform 0.3s var(--ease-premium); }
.hero-arrow-prev:hover svg { transform: translateX(-3px); }
.hero-arrow-next:hover svg { transform: translateX(3px); }

@media(min-width: 768px) {
  .hero-arrow { display: inline-flex; }
}

/* Dots (bullets) */
.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
@media(min-width: 768px) { .hero-dots { bottom: 22px; } }

.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(91, 33, 182, 0.5);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.hero-dot:hover { background: rgba(91, 33, 182, 0.8); }
.hero-dot.active {
  background: var(--secondary);
  border-color: #fff;
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* =========================================================
   Banner Clube AuPets (entre hero e categorias)
   ========================================================= */
.club-banner-wrap { padding: 0 16px; }
.club-banner {
  display: block;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  aspect-ratio: 5 / 1;
  background-image: url('/img/banners-home/clube-desktop.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.25);
  text-decoration: none;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}
.club-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(91, 33, 182, 0.35);
}
.btn-club-cta {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 13px 26px;
  border-radius: 999px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: all 0.35s var(--ease-premium);
}
.club-banner:hover .btn-club-cta {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .club-banner {
    aspect-ratio: 4 / 5;
    background-image: url('/img/banners-home/clube-mobile.png');
    border-radius: 18px;
  }
  .btn-club-cta {
    bottom: 36px;
  }
}

/* =========================================================
   3. CATEGORIAS
   ========================================================= */
.section { padding: 30px 24px 60px; }
.section.section-categorias,
.section.section-novos,
.section.section-padrao { padding-top: 72px; }
.section.section-novos { padding-bottom: 96px; } /* respiro maior antes de Marcas */
@media (max-width: 768px) {
  .section.section-categorias,
  .section.section-novos,
  .section.section-padrao { padding-top: 56px; }
  .section.section-novos { padding-bottom: 72px; }
}

/* =========================================================
   Cabeçalho sofisticado reutilizável (mesma linguagem das Marcas)
   ========================================================= */
.section-display-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.section-display-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(91, 33, 182, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-display-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.section-display-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 560px;
}
.section-display-footer {
  text-align: center;
  margin-top: 56px;
}
.section-display-footer .link-todos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(91, 33, 182, 0.18);
  transition: all 0.3s var(--ease-premium);
}
.section-display-footer .link-todos:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(91, 33, 182, 0.25);
}
.section-display-footer .link-todos::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s var(--ease-premium);
}
.section-display-footer .link-todos:hover::after {
  transform: translateX(4px);
}

/* CTA sólido — versão mais punchy do link-todos pra quando o objetivo é VENDER */
.btn-section-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--primary);
  box-shadow: 0 6px 18px rgba(91, 33, 182, 0.22);
  transition: all 0.3s var(--ease-premium);
  letter-spacing: 0.01em;
}
.btn-section-cta::after {
  content: '→';
  display: inline-block;
  font-size: 17px;
  transition: transform 0.3s var(--ease-premium);
}
.btn-section-cta:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(91, 33, 182, 0.32);
}
.btn-section-cta:hover::after {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .btn-section-cta { font-size: 14px; padding: 12px 24px; }
}
@media (max-width: 768px) {
  .section-display-header { margin-bottom: 32px; }
  .section-display-subtitle { font-size: 14px; }
  .section-display-footer { margin-top: 40px; }
}
@media(min-width: 768px) { .section { padding: 30px 24px 80px; } }

/* Override específico — seção "Explore por Categoria" */
.section:has(.cat-grid) { padding-bottom: 60px; }
@media(min-width: 768px) { .section:has(.cat-grid) { padding-bottom: 60px; } }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.section-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 800; }
.link-todos { color: var(--primary); font-weight: 600; font-size: 14px; position: relative; }
.link-todos:hover { text-decoration: underline; }

/* Cat grid — mobile: scroll horizontal com bleed nas bordas */
.cat-grid { 
  display: flex; 
  gap: 10px; 
  overflow-x: auto; 
  scroll-snap-type: x mandatory; 
  padding-bottom: 8px; 
  /* bleed lateral para mostrar que tem mais itens fora da tela */
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  scrollbar-width: none; 
}
.cat-grid::-webkit-scrollbar { display: none; }

.cat-pill {
  flex: 0 0 auto; /* nunca encolhe no mobile */
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  background: rgba(91, 33, 182, 0.04);
  border: 1px solid rgba(91, 33, 182, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s var(--ease-premium);
  cursor: pointer;
  scroll-snap-align: start;
}
.cat-pill i { color: var(--primary); transition: transform 0.3s, color 0.3s; }
.cat-pill:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.cat-pill:hover i { color: #fff; transform: scale(1.2) rotate(5deg); }

/* Desktop: pills ficam centralizadas e envoltas */
@media(min-width: 768px) { 
  .cat-grid { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible; 
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    gap: 12px;
  }
  .cat-pill {
    padding: 14px 22px;
    font-size: 15px;
    gap: 10px;
  }
}

/* =========================================================
   4. PRODUTOS EM DESTAQUE (Carrossel Dark)
   ========================================================= */
.destaque-section {
  background: linear-gradient(135deg, #1E1B4B 0%, #0F172A 100%);
  padding: 60px 0;
  overflow: hidden;
}
.destaque-layout {
  display: flex; flex-direction: column; gap: 32px;
}
.destaque-text { color: #fff; max-width: 400px; padding: 0 24px; }
.badge-destaque {
  display: inline-block; padding: 6px 12px; border-radius: 50px;
  border: 1px solid rgba(217,119,6,0.3); background: rgba(217,119,6,0.1);
  color: var(--secondary); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
}
.destaque-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 40px); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.destaque-subtitle { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 24px; }

.carousel-nav { display: flex; gap: 12px; }
.btn-nav {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); background: transparent; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.btn-nav:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

.carousel-container { margin-left: 24px; }
.carousel-track {
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 24px 32px 0; /* padding-right 24px para bleed direito */
}
.carousel-track::-webkit-scrollbar { display: none; }

.prod-card {
  flex: 0 0 260px;
  width: 260px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform 0.3s var(--ease-premium);
}
/* No grid de Lançamentos (não é flex carousel), o card preenche a coluna */
.novos-grid .prod-card { flex: 1; width: auto; }
.prod-card:hover { transform: translateY(-5px); }

.prod-img {
  width: 100%; aspect-ratio: 1;
  background: var(--bg-primary); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  overflow: hidden;
}
.prod-img > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.badge-mais-vendido {
  position: absolute; top: 24px; left: 24px;
  background: var(--secondary); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 4px; z-index: 2;
}
.prod-name { font-size: 15px; font-weight: 600; color: var(--text-primary); line-height: 1.4; }
.prod-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.prod-price { font-size: 18px; font-weight: 800; color: var(--text-primary); }
.btn-add {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.btn-add:hover { background: var(--primary-dark); }

@media(min-width: 1024px) {
  .destaque-section { padding: 100px 0; }
  .destaque-layout { flex-direction: row; align-items: center; gap: 64px; }
  .destaque-text { flex: 0 0 400px; padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px)); }
  .carousel-container { flex: 1; margin-left: 0; overflow: hidden; }
  .carousel-track { padding: 0 40px 40px 0; gap: 24px; }
}

/* =========================================================
   5. NOVOS PRODUTOS
   ========================================================= */
.novos-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 24px; padding-right: 24px; /* bleed apenas na direita */ }
.novos-grid::-webkit-scrollbar { display: none; }

@media(max-width: 767px) {
  .novos-header-link { display: none; }
  .btn-ver-mais-mobile {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 48px; border-radius: 12px;
    background: transparent; border: 1.5px solid #E5E7EB;
    color: var(--text-primary); font-weight: 600; margin-top: 16px;
    transition: 0.2s;
  }
  .btn-ver-mais-mobile:hover { border-color: var(--primary); color: var(--primary); }
}

@media(min-width: 768px) { 
  .novos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; overflow: visible; margin: 0; padding: 0; } 
  .btn-ver-mais-mobile { display: none; }
}
@media(min-width: 1024px) { .novos-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* Hover overlay product card (optional micro) */
.prod-card-white { border: 1px solid #E5E7EB; box-shadow: var(--shadow-sm); }
.prod-overlay {
  position: absolute; top: 16px; left: 16px; right: 16px; height: calc(100% - 90px);
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  border-radius: var(--radius-md);
  z-index: 5;
}
.prod-card-white:hover .prod-overlay { opacity: 1; }
.btn-ver { background: var(--text-primary); color: #fff; padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; }

/* =========================================================
   6. MARCAS PARCEIRAS
   ========================================================= */
.marcas-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-primary) 100%);
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}
/* Decoração sutil — orb de luz roxa muito difusa atrás do título */
.marcas-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(91, 33, 182, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.marcas-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.marcas-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(91, 33, 182, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.marcas-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.marcas-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}
.marcas-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marcas-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marcas-scroll 55s linear infinite;
  padding: 4px 0;
}
.marcas-marquee:hover .marcas-track { animation-play-state: paused; }
.marcas-track img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1) brightness(0.95);
  opacity: 0.55;
  transition: filter 0.45s var(--ease-premium), opacity 0.45s var(--ease-premium), transform 0.45s var(--ease-premium);
  user-select: none;
  -webkit-user-drag: none;
}
.marcas-track img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.08);
}
@keyframes marcas-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .marcas-section { padding: 56px 0 64px; }
  .marcas-section::before { width: 320px; height: 180px; top: -80px; }
  .marcas-header { margin-bottom: 36px; }
  .marcas-track { gap: 48px; animation-duration: 38s; }
  .marcas-track img { height: 40px; max-width: 130px; }
  .marcas-subtitle { font-size: 14px; padding: 0 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .marcas-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 40px 56px; padding: 0 24px; }
  .marcas-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* =========================================================
/* =========================================================
   7. DIFERENCIAIS (Bento Box Premium)
   ========================================================= */
.why-section { padding-top: 80px; padding-bottom: 80px; }
.why-header { text-align: center; margin-bottom: 48px; }
.why-subtitle { color: var(--primary); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.why-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 36px); font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; }

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.bento-card {
  border-radius: var(--radius-2xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.bento-content { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; }
.bento-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.bento-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.bento-card p { font-size: 15px; line-height: 1.6; }

/* Color Variations */
.bg-dark {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
  color: #fff; border: 1px solid rgba(255,255,255,0.08);
}
.bg-dark .bento-icon-wrap { background: rgba(255,255,255,0.1); color: var(--secondary); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); }
.bg-dark p { color: rgba(255,255,255,0.7); }

.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; box-shadow: 0 10px 30px rgba(91,33,182,0.2);
}
.bg-primary .bento-icon-wrap { background: rgba(255,255,255,0.2); color: #fff; }
.bg-primary p { color: rgba(255,255,255,0.8); }

.bg-light {
  background: #fff; border: 1px solid #E5E7EB; box-shadow: var(--shadow-sm);
}
.bg-light .primary-icon { background: rgba(91,33,182,0.05); color: var(--primary); }
.bg-light .secondary-icon { background: rgba(217,119,6,0.05); color: var(--secondary); }
.bg-light h3 { color: var(--text-primary); }
.bg-light p { color: var(--text-secondary); }

/* =========================================================
   PADRÃO AU PETS — Story Strip com fotos reais
   Inspirado no padrão visual das seções Marcas e Instagram:
   orb decorativo, fade nas bordas, fotos protagonistas, movimento.
   ========================================================= */
.section-padrao {
  position: relative;
  overflow: hidden;
  /* content-visibility libera o browser de pintar quando offscreen — Chrome/Edge */
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}
.section-padrao .section-display-header { position: relative; z-index: 1; }

/* Pausa de marquees quando fora da viewport (set via IntersectionObserver no JS).
   Alivia GPU dramaticamente quando o user está em outra parte da página. */
.marcas-track.marquee-paused,
.marquee-track.marquee-paused {
  animation-play-state: paused;
}

/* Hint de containment + content-visibility nas sections grandes — Chrome/Edge
   skipam paint/layout fora da viewport. Reduz custo geral de scroll. */
.insta-section,
.marcas-section,
.section-novos,
.destaque-section {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

/* =========================================================
   Header editorial asymmetric (eyebrow+h2 esquerda, parágrafo direita)
   ========================================================= */
.padrao-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto 56px;
  padding: 0 24px;
  text-align: left;
}
@media (min-width: 900px) {
  .padrao-head { grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
}
.padrao-head-left .section-display-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.padrao-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.6px;
  color: var(--text-primary);
  margin: 0;
}
.padrao-head-right p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0;
  padding-bottom: 6px;
}

/* =========================================================
   Mosaic editorial: 1 hero card grande à esquerda + 3 side cards
   horizontais à direita. Em tablet vira 2x2; mobile single-col.
   ========================================================= */
.padrao-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .padrao-mosaic { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (min-width: 1024px) {
  .padrao-mosaic {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .padrao-head,
  .padrao-mosaic { padding-left: 0; padding-right: 0; }
}

/* ----- Hero card (Entrega — protagonista) ----- */
.padrao-hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  background: #1A0A2E;
  box-shadow: 0 12px 28px -16px rgba(15, 23, 42, 0.18);
  transition: box-shadow 0.6s var(--ease-premium);
}
@media (min-width: 1024px) {
  .padrao-hero-card { grid-row: span 3; min-height: 540px; }
}
.padrao-hero-card:hover {
  box-shadow: 0 30px 60px -20px rgba(91, 33, 182, 0.35);
}
/* Foto full-bleed cobrindo o card */
.padrao-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.padrao-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-premium);
}
.padrao-hero-card:hover .padrao-hero-bg img { transform: scale(1.05); }
/* Gradient overlay forte no rodapé — texto branco fica legível */
.padrao-hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 3, 20, 0.55) 65%, rgba(11, 3, 20, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Tag flutuando no topo com glassmorphism escuro */
.padrao-hero-card .padrao-tag {
  top: 22px;
  left: 22px;
  bottom: auto;
  background: rgba(15, 15, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  z-index: 2;
}
.padrao-hero-card .padrao-tag .tag-dot {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.28);
}
/* Conteúdo no rodapé — texto branco com glass icon */
.padrao-hero-content {
  position: relative;
  z-index: 2;
  padding: 32px 36px;
  color: #fff;
  max-width: 540px;
}
.padrao-hero-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}
.padrao-hero-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #fff;
}
.padrao-hero-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ----- Side cards (3 cards horizontais menores) ----- */
.padrao-side-card {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid #EAEAEC;
  border-radius: 20px;
  align-items: center;
  box-shadow: 0 6px 18px -10px rgba(15, 23, 42, 0.08);
  transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium), border-color 0.4s;
}
.padrao-side-card:hover {
  transform: translateX(4px);
  border-color: rgba(91, 33, 182, 0.18);
  box-shadow: 0 18px 36px -18px rgba(91, 33, 182, 0.22);
}
.padrao-side-thumb {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #F4F4F5;
}
.padrao-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-premium);
}
.padrao-side-card:hover .padrao-side-thumb img { transform: scale(1.06); }
.padrao-side-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.padrao-side-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(91, 33, 182, 0.08);
  color: var(--primary);
  align-self: flex-start;
  margin-bottom: 2px;
}
.padrao-side-tag .tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--success);
}
.padrao-side-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  line-height: 1.25;
  margin: 0;
}
.padrao-side-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

/* Tag base — preservada (usada no .padrao-hero-card e fallback) */
.padrao-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--primary);
  box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.25);
}
.padrao-tag .tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

/* Desktop Grid Layout */
@media(min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
  }
}

@media(min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(200px, auto));
  }
  .bento-card-large { grid-column: span 2; display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; }
  .bento-card-large .bento-content { max-width: 55%; flex: 1; }
  .bento-card-large .bento-visual { position: relative; right: 0; bottom: 0; opacity: 1; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
  /* Variante com foto: imagem ocupa o lado direito como visual humanizado */
  .bento-card-large.bento-card-photo .bento-photo {
    margin-top: 0;
    width: 360px;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
  }

  .bento-card-tall { grid-row: span 2; }
}

/* =========================================================
   8. COMUNIDADE / INSTAGRAM (Marquee Infinito)
   ========================================================= */
.insta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--bg-primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.insta-marquee-wrap {
  position: relative;
  width: 100vw;
  max-width: 100%;
  display: flex; flex-direction: column; gap: 16px;
  overflow: hidden;
}
.insta-marquee {
  display: flex;
  width: max-content;
}
.marquee-track {
  display: flex; gap: 16px; padding-right: 16px;
}
.marquee-track img {
  width: 200px; height: 200px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: #E5E7EB; /* Placeholder fallback */
}
@media(min-width: 768px) {
  .insta-marquee-wrap { gap: 24px; }
  .marquee-track { gap: 24px; padding-right: 24px; }
  .marquee-track img { width: 280px; height: 280px; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
}

/* Animações contínuas */
.marquee-left { animation: scroll-left 40s linear infinite; }
.marquee-right { animation: scroll-right 45s linear infinite; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Pausar animação no hover para facilitar a visualização (opcional) */
.insta-marquee-wrap:hover .insta-marquee { animation-play-state: paused; }

/* Glass Overlay Card */
.insta-glass-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 40px;
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15), 0 0 0 10px rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  z-index: 10;
  min-width: 320px;
}
.insta-avatar {
  width: 80px; height: 80px;
  border-radius: 50%; padding: 3px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  margin-bottom: 16px;
}
.insta-avatar img {
  width: 100%; height: 100%; border-radius: 50%; border: 3px solid #fff; object-fit: cover;
}
.insta-glass-card h4 {
  font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--text-primary); margin-bottom: 4px;
}
.insta-glass-card p {
  color: var(--text-secondary); font-size: 15px; margin-bottom: 32px;
}
.btn-insta-glass {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff; font-weight: 700; padding: 14px 28px; border-radius: var(--radius-full);
  display: inline-flex; align-items: center; gap: 8px; font-size: 15px;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.3); transition: transform 0.3s, box-shadow 0.3s;
}
.btn-insta-glass:hover {
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(220, 39, 67, 0.4); color: #fff;
}

/* =========================================================
   9. CLUBE VIP WHATSAPP (Compact Inline)
   ========================================================= */
.wpp-section { padding: 0 24px 80px; max-width: 1280px; margin: 0 auto; }
.wpp-card {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-2xl);
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 20px;
  align-items: center; text-align: center;
  position: relative; overflow: hidden;
}
.wpp-card::before {
  content: ''; position: absolute; top: -60px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(37, 211, 102, 0.06); filter: blur(50px); pointer-events: none;
}
.wpp-card::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(91, 33, 182, 0.08); filter: blur(40px); pointer-events: none;
}

.wpp-left { display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; z-index: 1; }
.wpp-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(37, 211, 102, 0.12); border: 1px solid rgba(37, 211, 102, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: #25D366;
}
.wpp-icon { width: 26px; height: 26px; }

.wpp-text { text-align: center; }
.wpp-title {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 800; color: #fff; letter-spacing: -0.3px; line-height: 1.2;
}
.wpp-desc {
  color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 4px; white-space: normal;
}

.wpp-form {
  display: flex; flex-direction: column; gap: 12px; width: 100%;
  position: relative; z-index: 1;
}
.wpp-form input {
  width: 100%; height: 48px; border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  padding: 0 16px; font-size: 15px; color: #fff;
  transition: all 0.3s;
}
.wpp-form input::placeholder { color: rgba(255,255,255,0.3); }
.wpp-form input:focus {
  outline: none; border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
  background: rgba(255,255,255,0.08);
}

.btn-wpp-submit {
  height: 48px; border-radius: var(--radius-md); border: none;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; padding: 0 24px; white-space: nowrap;
  transition: all 0.3s var(--ease-premium);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}
.btn-wpp-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-wpp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.3);
}

@media(min-width: 768px) {
  .wpp-card {
    flex-direction: row; padding: 28px 40px; gap: 32px;
    justify-content: space-between; align-items: center; text-align: left;
  }
  .wpp-left { flex-direction: row; flex-shrink: 0; text-align: left; gap: 16px; }
  .wpp-text { text-align: left; }
  .wpp-desc { white-space: nowrap; margin-top: 2px; }
  .wpp-form { flex-direction: row; width: auto; flex: 1; max-width: 560px; }
  .wpp-form input { min-width: 0; flex: 1; }
  .btn-wpp-submit { flex-shrink: 0; }
}


/* =========================================================
   10. FOOTER PREMIUM
   Definido em /css/style.css (fonte única).
   ========================================================= */

/* Skeletons & Utils */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ===== Banner Banho & Tosa ===== */
.grooming-banner-wrap { padding: 32px 16px; }
.grooming-banner {
  display: block;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  aspect-ratio: 5 / 1;
  background-image: url('/img/banners-home/banho-tosa-desktop.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(14, 116, 144, 0.25);
  text-decoration: none;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}
.grooming-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(14, 116, 144, 0.35);
}
.btn-grooming-cta {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 13px 26px;
  border-radius: 999px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: all 0.35s var(--ease-premium);
}
.grooming-banner:hover .btn-grooming-cta {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .grooming-banner {
    aspect-ratio: 4 / 5;
    background-image: url('/img/banners-home/banho-tosa-mobile.png');
    border-radius: 18px;
  }
  .btn-grooming-cta {
    bottom: 36px;
  }
}
