.produtos-page {
  background-color: #f8fafc;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
}

.produtos-page .container,
.produto-destaque .destaque-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-produtos {
  background: radial-gradient(circle at top, #174283 0%, #0b1b33 40%, #020617 100%);
  color: #ffffff;
  text-align: center;
  padding: 140px 20px 100px;
  position: relative;
  overflow: hidden;
}

.hero-produtos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 197, 94, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(56, 189, 248, 0.16) 0%, transparent 55%);
  pointer-events: none;
}

.hero-produtos .hero-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.hero-produtos .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: #e2e8f0;
}

.hero-produtos .hero-pill i {
  color: #22c55e;
}

.hero-produtos h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 18px 0 14px;
}

.hero-produtos p {
  font-size: 1.05rem;
  color: #dbe7ff;
  max-width: 640px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  text-align: center;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-subtitle-destaque {
  text-align: center;
  font-size: 1rem;
  color: #64748b;
  max-width: 580px;
  margin: 0 auto;
}

.produtos-section {
  background: #ffffff;
  padding: 72px 0 88px;
}

.produtos-filtros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 34px 0 38px;
}

.filtro-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filtro-pill:hover {
  background: #e0f2fe;
  border-color: #38bdf8;
  transform: translateY(-1px);
}

.filtro-pill.active {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.28);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.produto-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(23, 64, 139, 0.08) 0%, transparent 55%),
    #f8fafc;
  border-radius: 20px;
  padding: 24px 22px 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.35);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.produto-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.12), transparent 60%);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
}

.produto-card:hover::before {
  opacity: 1;
}

.produto-card-filtrado {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4), 0 18px 40px rgba(34, 197, 94, 0.14);
}

.produto-card.is-hidden {
  display: none;
}

.produto-img-wrapper {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.produto-img-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

.produto-card:hover .produto-img-wrapper img {
  transform: scale(1.05);
}

.produto-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(15, 23, 42, 0.9);
  color: #e2e8f0;
}

.destaque-tag {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.produto-nome {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem;
  margin: 12px 0 8px;
  color: #174283;
}

.produto-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #475569;
  flex-grow: 1;
  min-height: 72px;
}

.produto-beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.produto-beneficio-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 600;
}

.produto-destaque {
  background: radial-gradient(circle at top, #174283 0%, #0b1b33 40%, #020617 100%);
  color: #e5e7eb;
  padding: 84px 0;
}

.destaque-container {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 52px;
}

.destaque-img {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
  cursor: crosshair;
}

.destaque-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  user-select: none;
  -webkit-user-drag: none;
}

.zoom-lens {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.28),
    0 0 0 8px rgba(255, 255, 255, 0.12);
  display: none;
  pointer-events: none;
  z-index: 5;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.06);
}

.destaque-texto {
  min-width: 0;
}

.produto-destaque-fade {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.produto-destaque-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.destaque-texto h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin: 16px 0 10px;
  color: #f9fafb;
}

.destaque-texto > p {
  font-size: 1rem;
  color: #d7e3ff;
  max-width: 560px;
}

.destaque-texto .produto-beneficios {
  margin-top: 18px;
}

.destaque-texto .produto-beneficio-chip {
  background: rgba(15, 23, 42, 0.88);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.destaque-info {
  margin-top: 20px;
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.destaque-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.destaque-info p {
  font-size: 0.92rem;
  color: #d6e2fb;
  margin: 0;
}

.cta-produtos {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #f9fafb;
  text-align: center;
  padding: 72px 20px 84px;
}

.cta-produtos-inner {
  max-width: 860px;
  margin: 0 auto;
}

.cta-produtos h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 10px;
}

.cta-produtos p {
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 24px;
}

.cta-produtos .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #16a34a;
  border-radius: 999px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  transition: all 0.25s ease;
}

.cta-produtos .btn-primary:hover {
  background: #174283;
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.28);
  transform: translateY(-2px);
}

.whatsapp-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-floating-button {
  background-color: #22c55e;
  color: #ffffff;
  font-size: 26px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
  flex-shrink: 0;
}

.whatsapp-floating-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.7);
  background-color: #16a34a;
}

.whatsapp-floating-message {
  position: relative;
  background: #ffffff;
  color: #0f172a;
  padding: 12px 16px;
  border-radius: 14px;
  max-width: 240px;
  min-height: 52px;
  font-size: 0.88rem;
  line-height: 1.4;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.28);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.whatsapp-floating-message::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 18px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-right: 1px solid rgba(148, 163, 184, 0.28);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  transform: rotate(-45deg);
}

.whatsapp-floating-message.visible {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-floating-message span {
  display: block;
  max-width: 100%;
}

@media (max-width: 1100px) {
  .produtos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destaque-container {
    grid-template-columns: 340px 1fr;
    gap: 34px;
  }

  .destaque-img {
    height: 360px;
  }

  .zoom-lens {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  .hero-produtos {
    padding: 110px 18px 80px;
  }

  .produtos-section {
    padding: 60px 0 72px;
  }

  .produtos-filtros {
    margin-bottom: 30px;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .produto-img-wrapper {
    height: 220px;
  }

  .destaque-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .destaque-img {
    max-width: 320px;
    height: 320px;
    margin: 0 auto;
    cursor: default;
  }

  .destaque-texto > p,
  .destaque-info {
    margin-left: auto;
    margin-right: auto;
  }

  .destaque-texto .produto-beneficios {
    justify-content: center;
  }

  .zoom-lens {
    display: none !important;
  }

  .whatsapp-floating {
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }

  .whatsapp-floating-message {
    max-width: 200px;
    font-size: 0.82rem;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero-produtos h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .produto-card {
    padding: 20px 16px;
  }

  .produto-img-wrapper {
    height: 200px;
  }

  .destaque-img {
    max-width: 240px;
    height: 240px;
  }

  .whatsapp-floating-button {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .whatsapp-floating-message {
    max-width: 170px;
    min-height: 46px;
    font-size: 0.78rem;
    padding: 9px 12px;
  }
}