/* ===== Base ===== */
:root {
  /* Nova identidade visual - tons de verde (Pets do Bairro) */
  --bg: #F5FFF9;
  --text: #333333;
  --muted: #333333;
  --soft: #E6FFF2;
  --border: #B9E2C6;
  --ring: rgba(252, 143, 14, 0.1);
  --brand: #25D366; /* ALTERADO: Verde forte para CTAs (WhatsApp) */
  --brand-pets: #25D366;
  --brand-contrast: #FFFFFF;
  --brand-dark: #1E9E4F; /* ALTERADO: Verde mais escuro para hover */
  --accent-product: #FC8F0E; /* NOVO: Laranja para destaque de produtos/preços */
  --accent: #6DECB9;
  --sale: #E63900;
  --success: #2EB872;
}

* {
  box-sizing: border-box
}

/* ===== Slide Caption (Melhoria de Cor) ===== */
.slide-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
  pointer-events: none;
}

.slide-caption h2 {
  background: rgba(37, 211, 102, 0.85); /* Cor alterada para o verde da marca */
  color: #fff;
  padding: 18px 32px;
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(26, 42, 54, 0.12);
  text-align: center;
}

@media (max-width: 600px) {
  .slide-caption h2 {
    font-size: 1.1rem;
    padding: 10px 16px;
  }
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, Segoe UI, Roboto, Helvetica, Arial
}

a {
  color: inherit
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px
}

.muted {
  color: var(--muted)
}

.small {
  font-size: 12px
}

.center {
  text-align: center
}

.mt-6 {
  margin-top: 24px
}

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  min-height: 120px;
  /* Altura mínima fixa */
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  height: 50px;
  /* Altura fixa para a brand */
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* ===== Logo ===== */
.logo {
  height: 50px;
  /* Altura fixa em vez de 200% */
  width: auto;
  max-width: 250px;
  object-fit: contain;
  /* Garante que a imagem se ajuste sem distorcer */
  transition: opacity 0.3s;
}

@media (max-width: 600px) {
  .logo {
    height: 40px;
    /* Um pouco menor no mobile */
    max-width: 140px;
  }

  .site-header {
    min-height: 60px;
    /* Altura menor no mobile */
  }

  .brand {
    height: 40px;
    /* Altura menor no mobile */
  }
}

/* ===== Redes Sociais ===== */
.social-icons {
  display: flex;
  gap: 20px;
  /* Mais espaço entre os ícones */
  margin-left: auto;
  margin-right: auto;
  /* Centralizar no desktop */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--soft);
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.social-icons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icons a.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border-color: transparent;
}

.social-icons a.facebook:hover {
  background-color: #1877f2;
  color: white;
  border-color: transparent;
}

.social-icons a.tiktok:hover {
  background-color: #000000;
  color: white;
  border-color: transparent;
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

.site-nav {
  display: none;
  gap: 20px
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  opacity: .85
}

.site-nav a:hover {
  opacity: 1
}

.nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer
}

/* Estado aberto do menu mobile - CORRIGIDO */
.site-header.nav-open .header-inner {
  flex-wrap: wrap;
  gap: 24px;
}

.site-header.nav-open .site-nav {
  display: flex;
  flex-direction: column; /* Adicionado: Coloca os itens um abaixo do outro */
  align-items: center;    /* Adicionado: Centraliza os itens */
  flex-basis: 100%;
  gap: 24px;
}

.site-header.nav-open .social-icons {
  order: 2;
  position: static;
  transform: none;
  margin: 0 auto;
}

/* Responsividade para redes sociais */
@media (max-width: 768px) {
  .social-icons {
    gap: 16px;
    /* Mais espaço no mobile também */
    margin-left: 15px;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
  }

  .social-icons svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .site-header.nav-open .social-icons {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 0px;
    gap: 10px;
    /* Espaço extra quando menu aberto */
  }

  .social-icons {
    gap: 18px;
    /* Ainda mais espaço em mobile muito pequeno */
  }
}

@media (min-width:900px) {
  .header-inner {
    padding: 10px 0;
  }

  .site-nav {
    display: flex;
    flex-basis: auto;
  }

  .nav-toggle {
    display: none
  }

  .site-header.nav-open .header-inner {
    flex-wrap: nowrap;
  }

  .site-header.nav-open .social-icons {
    order: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  /* Garantir que os ícones fiquem centralizados no desktop */
  .social-icons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 20px;
  }
}

/* ===== Slideshow ===== */
.slideshow {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease;
}

.slide-nav button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.slide-prev {
  left: 10px;
}

.slide-next {
  right: 10px;
}

.slide-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slide-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.slide-dots .dot.active {
  background: white;
}

/* Responsividade para o slideshow */
@media (max-width: 768px) {
  .slideshow {
    height: 250px;
  }

  .slide-nav button {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, #E6FFF2 0%, #F5FFF9 70%);
  padding: 32px 0
}

.hero-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr
}

.hero .muted {
  max-width: 126ch
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px
}

/* ===== Botões (Usando a nova cor Brand Green) ===== */
.btn {
  appearance: none;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--brand-contrast);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25); /* Sombra Verde */
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn.outline {
  background: transparent;
  color: var(--text);
  border-color: var(--brand);
}

.btn.outline:hover {
  background: rgba(37, 211, 102, 0.1); /* Fundo suave verde */
  color: var(--brand-dark);
  border-color: var(--brand);
}

.btn.ghost {
    background: transparent;
    color: var(--muted);
    border-color: transparent;
}

.btn.ghost:hover {
    background: var(--soft);
    color: var(--text);
    box-shadow: none;
    transform: none;
    border-color: transparent;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hero-media {
  display: grid;
  place-items: center
}

.hero-card {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/9;
  border: 1px dashed var(--border);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--muted)
}

@media (min-width:900px) {
  .hero-inner {
    grid-template-columns: 1.1fr .9fr
  }
}

/* ===== Sections ===== */
.section {
  padding: 32px 0
}

.section.alt {
  background: var(--soft)
}

.section-head h2 {
  font-size: 28px;
  margin: 0 0 6px
}

.section-head p {
  max-width: 600px;
}

/* ===== Grid ===== */
.grid {
  display: grid;
  gap: 20px
}

.grid-2 {
  grid-template-columns: 1fr
}

.grid-3 {
  grid-template-columns: 1fr
}

.grid-4 {
  grid-template-columns: 1fr
}

@media (min-width:900px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr)
  }

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

/* ===== Cards & Lists ===== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 1px 0 var(--ring);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin: 0 0 6px
}

.list {
  margin: 12px 0 0;
  padding: 0 0 0 18px
}

.list.small {
  font-size: 14px
}

/* NOVO: Para a lista de benefícios (Sobre a Empresa) */
.list.bullet-icon {
    list-style: none;
    padding: 0;
    text-align: left;
}

.list.bullet-icon li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.list.bullet-icon li::before {
    content: '✓'; 
    position: absolute;
    left: 0;
    color: var(--brand); /* Cor da marca (verde) */
    font-weight: 700;
    font-size: 16px;
}

.list.bullet-icon h4 {
    margin-top: 0;
    margin-bottom: 12px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

/* Ajuste para listas dentro de serviços */
.list.no-margin-left {
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.list.no-margin-left li {
    margin-bottom: 4px;
    line-height: 1.2;
}


.info-grid {
  display: grid;
  gap: 8px
}

.map-placeholder {
  margin-top: 12px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  height: 140px;
  display: grid;
  place-items: center;
  color: var(--muted)
}

/* ===== Services (Melhoria de Ícones) ===== */
.service {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service .svc-icon {
  font-size: 32px; /* Maior */
  margin: 0 auto 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--soft); /* Fundo suave */
  border: 2px solid var(--border); /* Borda sutil */
  transition: all 0.3s ease;
}

.card.service:hover .svc-icon {
    border-color: var(--brand);
    background-color: var(--brand);
    color: var(--brand-contrast); /* Ícone branco no hover */
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.service .btn {
  /* ALTERAÇÕES PARA DIMINUIR E CENTRALIZAR O BOTÃO */
  max-width: 180px; /* Largura máxima definida para diminuir o botão */
  width: 100%; /* Garante que ele use 100% da max-width */
  margin: 12px auto 0; /* Centraliza horizontalmente e adiciona margem superior */
}

/* ===== WooCommerce Products (Cores ajustadas) ===== */
.filters {
  display: flex;
  justify-content: flex-end;
  margin: 8px 0 16px
}

.select {
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}

.select:focus {
  outline: none;
  border-color: var(--brand);
}

.product {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  margin: -18px -18px 18px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 200px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--sale);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.out-of-stock {
  background: var(--muted);
}

.product-badge.sale {
  background: var(--sale);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product h4 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
  min-height: 2.6rem;
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--muted);
  min-height: 2.5rem;
}

.product-price {
  margin-bottom: 1rem;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-product); /* Usando a cor Laranja */
}

.price-old {
  text-decoration: line-through;
  color: var(--muted);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.price-new {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sale);
}

.product .actions {
  margin-top: auto;
  display: flex;
  /* Alterado: Centraliza os botões */
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product .btn {
  /* Alterado para diminuir e centralizar */
  flex: none; 
  max-width: 180px;
  width: 100%;
  min-width: 120px;
}

/* ===== Estados de loading e erro ===== */
.loading {
  display: none;
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  color: var(--muted);
}

.no-products {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  color: var(--muted);
}

.error-state {
  display: none;
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem;
  background: #fff3f3;
  border-radius: 8px;
  margin: 1rem 0;
  color: var(--sale);
}

.loading-spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--brand);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===== Footer com melhor distribuição ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo {
  height: 70px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--brand);
}

.copy {
  flex: 1 1 200px;
  text-align: right;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand,
  .footer-nav,
  .copy {
    flex: none;
    justify-content: center;
    text-align: center;
  }

  .copy {
    margin-top: 10px;
  }
}

/* ===== Modal (Melhoria de UX) ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.modal[aria-hidden="false"] {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 520px;
  margin: 8vh auto;
  padding: 24px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  border: 1px solid transparent; /* ALTERADO: Remove borda inicial */
  background: transparent; /* ALTERADO: Fundo transparente */
  border-radius: 8px;
  padding: 8px; /* Mais padding */
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 20px; /* Ícone maior */
  line-height: 1;
}

.modal-close:hover {
  background: var(--soft);
  border: 1px solid var(--border); /* Adiciona borda sutil no hover */
}

.field {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.field label {
  font-weight: 600;
  font-size: 14px;
}

.field input,
.field select {
  padding: 12px; /* ALTERADO: Mais padding */
  border: 1px solid var(--border);
  border-radius: 10px; /* ALTERADO: Mais arredondado */
  font-size: 16px; /* ALTERADO: Fonte maior */
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ===== Logo (Corrigida) ===== */
.logo {
  height: 80px;
  width: auto;
  max-width: 250px;
  /* Largura máxima */
  transition: opacity 0.3s;
}

@media (max-width: 600px) {
  .logo {
    height: 70px;
    max-width: 140px;
  }
}

/* ===== Controles de Visibilidade para WooCommerce ===== */

/* Estado inicial - elementos escondidos */
#loadingProducts {
  display: none;
}

#errorMessage {
  display: none;
}

#prodGrid {
  display: none;
}

/* Quando os produtos carregarem, o grid será mostrado */
#prodGrid[style*="display: grid"] {
  display: grid !important;
}

/* Estados de loading ativo */
#loadingProducts[style*="display: block"] {
  display: block !important;
}

/* Estados de erro ativo */
#errorMessage[style*="display: block"] {
  display: block !important;
}

/* Botão desabilitado */
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn.disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* ===== Responsividade para produtos ===== */
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-image {
    height: 150px;
  }

  .product h4 {
    font-size: 1rem;
    min-height: 2.4rem;
  }

  .product-description {
    min-height: 2.2rem;
  }

  /* ALTERADO: Centralizar o filtro no mobile */
  .filters {
    justify-content: center;
  }

  .modal-panel {
    margin: 4vh 16px;
    padding: 20px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .product-image {
    height: 120px;
  }

  .cta-row {
    flex-direction: column;
  }

  .hero {
    padding: 20px 0;
  }

  .section {
    padding: 20px 0;
  }
}

/* ===== Melhorias de acessibilidade ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Foco visível para acessibilidade */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Melhor contraste para textos */
@media (prefers-contrast: high) {
  :root {
    /* Nova identidade visual - tons de verde (Pets do Bairro) */
    --bg: #F5FFF9;
    --text: #333333;
    --muted: #333333;
    --soft: #E6FFF2;
    --border: #B9E2C6;
    --ring: rgba(252, 143, 14, 0.1);
    --brand: #25D366;
    --brand-pets: #25D366;
    --brand-contrast: #FFFFFF;
    --brand-dark: #1E9E4F;
    --accent-product: #FC8F0E;
    --accent: #6DECB9;
    --sale: #E63900;
    --success: #2EB872;
  }
}

/* Garantir que o grid seja mostrado quando necessário */
.grid-4 {
  display: grid;
  gap: 20px;
}

/* Estados de transição suave */
#loadingProducts,
#errorMessage,
#prodGrid {
  transition: opacity 0.3s ease;
}

/* ===== Ícone flutuante do WhatsApp (correção) ===== */
.whatsapp-floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-floating:hover {
    transform: translateY(-2px);
}

/* Balão de mensagem com texto */
.wa-bubble {
    background-color: var(--brand-pets);
    color: var(--brand-contrast);
    border-radius: 16px;
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Setinha apontando para o botão circular */
.wa-bubble::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--brand-pets);
}

/* Carinha o emoji - AUMENTADO */
.wa-button {
    width: 64px;       
    height: 64px;      
    border-radius: 50%;
    background-color: var(--brand-pets);
    color: var(--brand-contrast);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 36px;   
    transition: all 0.3s ease;
}

.whatsapp-floating:hover .wa-button {
    background-color: var(--brand-dark);
    transform: scale(1.05);
}

/* Remove estilos antigos conflitantes */
.whatsapp-icon {
    display: none !important;
}