/* ============================================================
   ZÉ EXPRESS — MAIN STYLESHEET
   ============================================================ */

/* ── Reset base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

a {
  text-decoration: none;
}

/* ── Body offset pela top-bar fixa ──────────────────────── */
body {
  padding-top: 4rem; /* altura da .top-bar */
}

/* ============================================================
   TOP BAR (fixa no topo)
   ============================================================ */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: #FFD100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.top-bar a {
  text-decoration: none;
}

/* Texto da marca na top-bar — escuro sobre fundo amarelo */
.top-bar a span {
  color: #1a0a00 !important;
}

.top-bar .font-bold {
  color: #1a0a00;
}

/* Botão do carrinho na top-bar */
.cart-btn {
  position: relative;
  background: #f59e0b;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}

.cart-btn:hover {
  background: #d97706;
}

.cart-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  min-width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ============================================================
   CATEGORY NAV (sticky abaixo da top-bar)
   ============================================================ */

.cat-nav {
  background: #FFD100;
  border-bottom: 2px solid #e6bc00;
  position: sticky;
  top: 4rem;
  z-index: 40;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-nav::-webkit-scrollbar {
  display: none;
}

.cat-nav__link {
  color: #1a0a00;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  display: block;
  transition: background 0.2s;
  border-bottom: 3px solid transparent;
}

.cat-nav__link:hover {
  background: rgba(0, 0, 0, 0.08);
}

.cat-nav__link.active {
  background: rgba(0, 0, 0, 0.1);
  border-bottom-color: #1a0a00;
}

/* ============================================================
   AGE GATE
   ============================================================ */

#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-gate-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 420px;
  width: 92%;
  text-align: center;
}

.btn-confirm-age,
.btn-deny-age {
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.25s;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
}

.btn-confirm-age {
  background: #f59e0b;
  color: #fff;
}

.btn-confirm-age:hover {
  background: #d97706;
}

.btn-deny-age {
  background: transparent;
  color: #6b7280;
  border: 1.5px solid #e5e7eb;
}

/* ============================================================
   INFO MODAL
   ============================================================ */

#info-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.info-modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  max-width: 480px;
}

.btn-close-info {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
}

/* ============================================================
   HERO COVER (homepage) — redesign profissional
   ============================================================ */

.hero-cover {
  position: relative;
  background-image: url('../assets/img/image.png');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  padding: 2rem 0 2.25rem;
}

/* Overlay escuro para garantir legibilidade do texto sobre o fundo amarelo */
.hero-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(20, 10, 0, 0.70) 50%,
    rgba(60, 30, 0, 0.68) 100%
  );
  pointer-events: none;
}

.hero-cover__overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

/* Logo ring */

/* Botões de ação (instagram, info) */
.hero-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.hero-action-btn:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: scale(1.08);
}

/* Card branco com info da loja */
.hero-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0.9rem 1.25rem 0.75rem;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.hero-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.38rem 0;
  font-size: 0.82rem;
  color: #374151;
  font-weight: 500;
  border-bottom: 1px solid #f3f4f6;
}

.hero-info-row:last-child { border-bottom: none; }

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.hero-badge--green {
  background: #dcfce7;
  color: #15803d;
}

.hero-badge--gold {
  background: #fef3c7;
  color: #92400e;
}

.hero-tags {
  display: flex;
  gap: 0.4rem;
  padding: 0.5rem 0 0.25rem;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  border: 1.5px solid #e5e7eb;
  color: #6b7280;
  background: #f9fafb;
}

.hero-open {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #16a34a;
  letter-spacing: 0.5px;
  padding-top: 0.45rem;
  border-top: 1px solid #f3f4f6;
  margin-top: 0.1rem;
}

.hero-open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: heroPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

/* ============================================================
   COOKIE BANNER (LGPD)
   ============================================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111827;
  color: #f9fafb;
  padding: 1rem 1.5rem;
  z-index: 9998;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-banner.ze-cookie-visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.8rem;
  color: #d1d5db;
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

.cookie-text a {
  color: #fbbf24;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.55rem 1.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  background: #d97706;
  transform: scale(1.03);
}

.cookie-btn-decline {
  color: #9ca3af;
  font-size: 0.78rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-decoration: underline;
  white-space: nowrap;
}

/* ============================================================
   PROMOÇÕES — destaque especial no cat-nav e category grid
   ============================================================ */

/* Link de Promoções no cat-nav: texto amarelo + badge "🔥" */
.cat-nav__link--promo {
  color: #fef08a !important;
  font-weight: 800 !important;
  position: relative;
}

.cat-nav__link--promo::after {
  content: '🔥';
  position: absolute;
  top: 5px;
  right: 1px;
  font-size: 0.55rem;
  line-height: 1;
}

/* Card de Promoções no category grid: borda dourada animada */
.cat-grid-card--promo {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #f59e0b;
  box-shadow: 0 2px 16px rgba(245, 158, 11, 0.25);
  animation: promoGlow 2.5s ease-in-out infinite;
}

@keyframes promoGlow {
  0%, 100% { box-shadow: 0 2px 16px rgba(245, 158, 11, 0.25), 0 0 0 0 rgba(245, 158, 11, 0); }
  50% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4), 0 0 0 3px rgba(245, 158, 11, 0.12); }
}

/* ============================================================
   STORE INFO CARD
   ============================================================ */

.store-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   CATEGORY GRID (cards clicáveis na homepage)
   ============================================================ */

.cat-grid {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-grid::-webkit-scrollbar {
  display: none;
}

.cat-grid-card {
  min-width: 88px;
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 2px solid #f3f4f6;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.cat-grid-card:hover {
  transform: translateY(-3px);
  border-color: #f59e0b;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.18);
}

.cat-grid-card__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.cat-grid-card__name {
  font-size: 0.7rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1.3;
}

/* ============================================================
   SEARCH (barra de busca nas páginas de categoria)
   ============================================================ */

.search-container {
  padding: 0.9rem 1rem;
  position: relative;
  z-index: 30;
}

.search-input {
  width: 100%;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  padding: 0.625rem 0.75rem 0.625rem 2.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: #f59e0b;
}

.search-dropdown {
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 1rem;
  right: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-height: 320px;
  overflow-y: auto;
  z-index: 35;
}

.search-dropdown__item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 0.15s;
}

.search-dropdown__item:last-child {
  border-bottom: none;
}

.search-dropdown__item:hover {
  background: #fffbeb;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Wrapper da imagem — position relative para o badge ficar em cima */
.product-card__img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f9fafb;
}

/* Gradient fade — foca o centro e oculta cantos/bordas da imagem */
.product-card__img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 52% 52% at 50% 48%,
    transparent 28%,
    rgba(249, 250, 251, 0.72) 52%,
    rgba(249, 250, 251, 0.97) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Badge de oferta fica acima do overlay */
.product-card__badge-offer {
  z-index: 2;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
  padding: 0.5rem;
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

/* Variante do carrossel */
.product-card.carousel-variant {
  min-width: 155px;
  max-width: 155px;
}

.product-card.grid-variant {
  width: 100%;
}

/* Corpo do card */
.product-card__body {
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: #f59e0b;
}

/* Botão "+ Adicionar" */
.product-card__btn-add {
  margin-top: 0.4rem;
  width: 100%;
  padding: 0.45rem 0.5rem;
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.product-card__btn-add:hover {
  background: #d97706;
}

/* ============================================================
   BADGE DE OFERTA / DESCONTO
   ============================================================ */

.product-card__badge-offer {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.2rem 0.4rem;
  z-index: 2;
  letter-spacing: 0.02em;
}

/* ============================================================
   PRODUCT GRID (grade de 2 ou 3 colunas)
   ============================================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

@media (min-width: 500px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   CAROUSEL SCROLL
   ============================================================ */

.carousel-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #f59e0b rgba(245, 158, 11, 0.1);
}

.carousel-scroll::-webkit-scrollbar {
  height: 5px;
}

.carousel-scroll::-webkit-scrollbar-track {
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
}

.carousel-scroll::-webkit-scrollbar-thumb {
  background: #f59e0b;
  border-radius: 10px;
}

/* ============================================================
   INFINITE SCROLL LOADER
   ============================================================ */

.scroll-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.scroll-loader__spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid rgba(245, 158, 11, 0.2);
  border-top-color: #f59e0b;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ============================================================
   CART WIDGET (painel flutuante no rodapé)
   ============================================================ */

.cart-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.6rem;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-container.visible {
  transform: translateY(0);
}

.cart-box {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 -6px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

/* Barra colapsada */
.cart-collapsed-bar {
  background: #1f2937;
  color: #fff;
  padding: 0.85rem 1rem;
  cursor: pointer;
  border-radius: 18px;
  transition: background 0.2s;
}

.cart-collapsed-bar:hover {
  background: #111827;
}

/* Painel expandido */
.cart-expanded {
  display: flex;
  flex-direction: column;
}

.cart-header {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-items {
  max-height: 200px;
  overflow-y: auto;
}

.cart-item {
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #f9fafb;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  background: #f9fafb;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-item-total {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f59e0b;
  white-space: nowrap;
}

.btn-qty-minus,
.btn-qty-plus {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.btn-qty-minus {
  background: #fee2e2;
  color: #dc2626;
}

.btn-qty-minus:hover {
  background: #fecaca;
}

.btn-qty-plus {
  background: #d1fae5;
  color: #059669;
}

.btn-qty-plus:hover {
  background: #a7f3d0;
}

.btn-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 0.2rem;
  font-size: 0.75rem;
  transition: color 0.15s;
}

.btn-remove:hover {
  color: #ef4444;
}

.cart-footer {
  padding: 0.85rem 1rem;
  border-top: 1px solid #f3f4f6;
}

.checkout-btn {
  width: 100%;
  padding: 0.75rem;
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.checkout-btn:hover {
  background: #16a34a;
}

/* ============================================================
   TOAST
   ============================================================ */

.toast {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: #fff;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 200;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #f59e0b;
  color: #fff;
  padding: 2rem 0 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem 1.5rem;
}

.footer a {
  text-decoration: none;
  transition: color 0.2s;
}

.footer-policy-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #fef3c7;
}

.footer-policy-links a {
  color: #fef3c7;
}

.footer-policy-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social a {
  color: #fff;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.legal-bar {
  background: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 0.7rem;
  padding: 0.65rem 1rem;
}

/* ============================================================
   PAGE HEADER (cabeçalho das páginas internas)
   ============================================================ */

.page-header {
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
  padding: 1.25rem 1rem 1.5rem;
  margin-bottom: 0;
}

/* ============================================================
   POLICY PAGE — conteúdo das páginas de política
   ============================================================ */

.policy-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.policy-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
}

.policy-content p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.policy-content ul {
  color: #4b5563;
  padding-left: 1.4rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.policy-content li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.policy-content code {
  background: #f3f4f6;
  border-radius: 4px;
  padding: 0.1em 0.4em;
  font-size: 0.85em;
  color: #d97706;
}

/* ============================================================
   ANIMAÇÕES
   ============================================================ */

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pisca {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.btn-pisca {
  animation: pisca 1.5s ease-in-out infinite;
}
