:root {
  --bg: #f4f8fb;
  --bg-soft: #f9fcfe;
  --surface: #ffffff;
  --text: #294356;
  --text-soft: #5f7b8d;
  --line: #d9e8f2;
  --primary: #7ab8d9;
  --primary-2: #3e84b1;
  --primary-3: #246288;
  --green: #2eb872;
  --green-2: #23945b;
  --whatsapp: #1faf5b;
  --shadow: 0 16px 40px rgba(67, 127, 166, 0.10);
  --radius-xl: 12px;
  --container: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(106,174,214,.10), transparent 25%),
    radial-gradient(circle at top right, rgba(215,237,249,.7), transparent 34%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fb 48%, #eef5f9 100%);
}

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.hidden,
.mobile-hidden-default {
  display: none !important;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex: 0 0 auto;
}

/* TOPO */
.topbar {
  background: linear-gradient(180deg, #eef7fc, #e3f1f9);
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid rgba(78,151,198,.14);
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.topbar-items,
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(250, 253, 255, 0.90);
  border-bottom: 1px solid rgba(78,151,198,.10);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo {
  max-width: 320px;
  object-fit: contain;
  padding: 4px;
}

.brand-logo img {
  width: 100%;
  padding: 10px 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(67,127,166,.06);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-3);
  margin: 0 auto;
  transition: .25s ease;
}

.menu-toggle span {
  margin: 6px auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu a {
  padding: 11px 14px;
  border-radius: 4px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: .2s ease;
}

.menu a:hover,
.menu a.active {
  background: rgba(106,174,214,.14);
  color: var(--primary-3);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(106,174,214,.24);
  white-space: nowrap;
  transition: background .2s ease, transform .18s ease, box-shadow .18s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  background: #1f5678 !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(31, 86, 120, .28);
}

/* HERO */
.hero {
  padding: 30px 0 26px;
}

.hero-banner {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(78,151,198,.10);
  box-shadow: var(--shadow);
  background: #dceef8;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(18, 44, 68, 0.62) 0%,
      rgba(18, 44, 68, 0.46) 28%,
      rgba(18, 44, 68, 0.22) 52%,
      rgba(18, 44, 68, 0.08) 72%,
      rgba(18, 44, 68, 0.00) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04) 0%,
      rgba(255,255,255,0.00) 100%
    );
  z-index: 1;
  pointer-events: none;
  color: #fff;
}

.hero-content,
.hero-overlay,
.hero-caption,
.hero-banner-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-slide {
    background-position: 68% center;
  }

  .hero-slide::before {
    background:
      linear-gradient(
        90deg,
        rgba(18, 44, 68, 0.82) 0%,
        rgba(18, 44, 68, 0.68) 38%,
        rgba(18, 44, 68, 0.36) 62%,
        rgba(18, 44, 68, 0.12) 82%,
        rgba(18, 44, 68, 0.00) 100%
      ),
      linear-gradient(
        180deg,
        rgba(18,44,68,0.10) 0%,
        rgba(18,44,68,0.00) 100%
      );
  }
}

.hero-text-box {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 18px;
  padding: 18px 20px;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: 46px 46px 24px;
}

.hero-text {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 4px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.18);
}

h1 {
  font-family: 'Poppins', serif;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: .95;
  margin: 0 0 12px;
  color: #fff;
}

.hero p {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.92);
  margin: 0 0 24px;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(78,151,198,.14);
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(67,127,166,.06);
  min-height: 88px;
}

.hero-feature-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--primary-3);
  flex: 0 0 46px;
}

.hero-feature strong {
  display: block;
  color: #355f7d;
  font-size: 17px;
  line-height: 1.35;
}

.hero-dots {
  position: absolute;
  right: 22px;
  bottom: 138px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border: 0;
  background: rgba(255,255,255,.85);
  box-shadow: inset 0 0 0 1px rgba(78,151,198,.3);
  cursor: pointer;
  padding: 0;
  border-radius: 999px;
}

.hero-dot.active {
  background: var(--primary-2);
  box-shadow: none;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 4px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.18);
}

.hero h1 {
  font-family: 'Poppins', serif;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: .95;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.hero p {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.92);
  margin: 0 0 24px;
  max-width: 42ch;
  text-shadow: 0 2px 10px rgba(0,0,0,.16);
}

@media (max-width: 680px) {
  .hero h1,
  .hero p,
  .hero .eyebrow {
    text-shadow: 0 2px 12px rgba(0,0,0,.28);
  }
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 4px;
  border: 0;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary-3));
  color: #fff;
  box-shadow: 0 16px 32px rgba(78,151,198,.22);
}

.btn-outline {
  background: rgba(255,255,255,.9);
  color: var(--primary-3);
  border: 1px solid rgba(78,151,198,.18);
  box-shadow: 0 12px 24px rgba(67,127,166,.06);
}

.btn-whats {
  background: linear-gradient(135deg, #33c971, var(--whatsapp));
  color: #fff;
  box-shadow: 0 16px 30px rgba(31,175,91,.24);
}

.btn-small {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

/* SEÇÕES */
.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.section-kicker {
  color: var(--primary-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  margin: 0;
  font-family: 'Poppins', serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  color: #355f7d;
}

.section-desc {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 64ch;
}

/* CATÁLOGO */
.catalog-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.sidebar,
.catalog-panel,
.cta-band,
.contact-card,
.depositions {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(78,151,198,.08);
  box-shadow: 0 14px 34px rgba(67,127,166,.06);
  border-radius: 4px;
}

.sidebar {
  padding: 22px;
  position: sticky;
  top: 104px;
}

.sidebar-block + .sidebar-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.sidebar-title {
  font-size: 15px;
  font-weight: 800;
  color: #3a6684;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.search {
  position: relative;
}

.search input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 4px;
  padding: 0 46px 0 16px;
  font-size: 15px;
  color: var(--text);
  outline: none;
}

.search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-soft);
  pointer-events: none;
}

.category-list {
  display: grid;
  gap: 10px;
}

.category-btn {
  width: 100%;
  text-align: left;
  background: var(--bg-soft);
  border: 1px solid transparent;
  color: var(--text);
  border-radius: 4px;
  padding: 13px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}

.category-btn:hover,
.category-btn.active {
  background: rgba(106,174,214,.14);
  border-color: rgba(106,174,214,.22);
  color: var(--primary-3);
}

.badge-row {
  display: grid;
  gap: 12px;
}

.mini-badge {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff, #f9fcfe);
  border: 1px solid var(--line);
}

.mini-badge-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(106,174,214,.14);
  color: var(--primary-3);
  flex: 0 0 42px;
}

.mini-badge strong {
  display: block;
  color: #3a6684;
  margin-bottom: 4px;
  font-size: 14px;
}

.mini-badge span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.catalog-panel {
  padding: 28px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  background: linear-gradient(180deg, #fff 0%, #f9fcfe 100%);
  border: 1px solid rgba(78,151,198,.10);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  min-height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(67,127,166,.12);
}

.product-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #edf6fb;
}

.product-media a {
  display: block;
  text-decoration: none;
  color: inherit;
}

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

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.product-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(106,174,214,.12);
  color: var(--primary-3);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-title {
  margin: 0;
  color: #355f7d;
  font-size: 20px;
  line-height: 1.25;
}

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

/* MEMORIAL */
.memorial-section {
  padding: 40px 0;
}

.memorial-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(71, 149, 230, 0.20), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(34, 105, 171, 0.16), transparent 28%),
    linear-gradient(135deg, #f5fbff 0%, #e9f4ff 45%, #f7fbff 100%);
  border: 1px solid rgba(68, 132, 198, 0.18);
  box-shadow:
    0 18px 45px rgba(30, 75, 122, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.memorial-wrap::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 123, 196, 0.18) 0%, rgba(42, 123, 196, 0) 72%);
  pointer-events: none;
}

.memorial-wrap::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 181, 243, 0.15) 0%, rgba(112, 181, 243, 0) 72%);
  pointer-events: none;
}

.memorial-head {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.memorial-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  transform-origin: center;
}

.memorial-video {
  position: relative;
  overflow: hidden;
}

.memorial-video::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: -16px;
  bottom: -16px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(69,146,223,0.22), rgba(27,94,157,0.10));
  filter: blur(6px);
  z-index: 0;
}

.memorial-video-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(226,240,251,0.88));
  border: 1px solid rgba(63, 126, 189, 0.18);
  box-shadow:
    0 16px 30px rgba(33, 83, 132, 0.14),
    0 0 0 1px rgba(255,255,255,0.55) inset;
}

.memorial-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
}

.memorial-info {
  position: relative;
  padding: 10px 6px;
}

.memorial-title {
  margin: 0;
  font-family: 'Poppins', serif;
  font-size: 30px;
  line-height: 1.02;
  color: #355f7d;
}

.memorial-text {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: #4c6f8e;
}

.memorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.memorial-actions .btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.memorial-actions .btn-outline {
  background: rgba(255, 255, 255, 0.80);
  color: #2b6da5;
  border: 1px solid rgba(58, 123, 187, 0.22);
  box-shadow: 0 8px 18px rgba(39, 92, 145, 0.08);
}

.memorial-actions .btn-outline:hover {
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(39, 92, 145, 0.12);
}

.memorial-actions .btn-primary {
  background: linear-gradient(135deg, #4a9be0 0%, #2f7dc2 50%, #24679f 100%);
  color: #ffffff;
  border: 0;
  box-shadow: 0 14px 28px rgba(47, 125, 194, 0.28);
}

.memorial-actions .btn-primary:hover {
  box-shadow: 0 18px 32px rgba(47, 125, 194, 0.35);
}

.memorial-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 15px;
  background: linear-gradient(135deg, #0a1f33 0%, #123a5e 55%, #1d5d91 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 12px 30px rgba(7, 29, 51, 0.30);
  overflow: hidden;
}

.memorial-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.14);
  flex: 0 0 10px;
}

.memorial-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.12) 35%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.12) 65%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-22deg);
}

/* DEPOIMENTOS */
#depoimentos {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

#depoimentos .section-head {
  margin-bottom: 28px;
}

.depositions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 28px;
}

.deposition-slider {
  width: 100%;
  overflow: hidden;
}

.deposition-track {
  display: flex;
  gap: 22px;
  transition: transform .45s ease;
  will-change: transform;
  align-items: stretch;
}

.deposition-card {
  flex: 0 0 calc((100% - 44px) / 3);
  max-width: calc((100% - 44px) / 3);
  min-width: calc((100% - 44px) / 3);
  box-sizing: border-box;
  display: flex;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.produto-mini-depoimento {
  width: 100%;
  min-height: 230px;
  background: #f3f7fa;
  border: 1px solid #c7d9e6;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 26px rgba(34, 120, 141, 0.08);
}

.produto-mini-depoimento-titulo {
  font-size: 14px;
  font-weight: 800;
  color: #1f5f86;
  margin-bottom: 10px;
}

.produto-mini-depoimento-stars {
  color: #f4b000;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.produto-mini-depoimento-texto {
  color: #436287;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.produto-mini-depoimento-nome {
  margin-top: 14px;
  color: #6e86a1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.dep-arrow {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border: 1px solid #d7e3ec;
  background: #f7fafc;
  color: #2d6a9b;
  border-radius: 16px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 10px 25px rgba(30, 77, 123, 0.08);
  z-index: 10;
}

.dep-arrow:hover {
  background: #ffffff;
  border-color: #bfd2e0;
  transform: translateY(-2px);
}

.dep-arrow:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

/* CTA / STATS */
.cta-band {
  padding: 30px;
  background-color: #174e70;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-band h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
  font-family: 'Poppins', serif;
  color: #fff;
}

.cta-band p {
  margin: 0;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  max-width: 65ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(78,151,198,.09);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(67,127,166,.05);
}

.stat-number {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: #366382;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.5;
}

/* CONTATO */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: #fff;
  padding: 28px;
  border-radius: 8px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #e3e8ef;
  padding: 16px;
  border-radius: 6px;
  background: #f8fafc;
}

.contact-item strong {
  display: block;
  color: #3a6684;
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-item span,
.contact-item a {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 14px;
}

/* IMAGEM QUEM SOMOS */
#contato .contact-grid .contact-card:first-child {
  position: relative;
  overflow: hidden;
  padding-right: 340px;
}

#contato .contact-grid .contact-card:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-image: url("../../images/bg.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  opacity: 0.9;
  pointer-events: none;
}

#contato .contact-grid .contact-card:first-child > * {
  position: relative;
  z-index: 2;
}

/* FOOTER */
.footer {
  padding: 28px 0 42px;
}

.footer-copy-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(78,151,198,.12);
  padding-top: 22px;
  margin-top: 26px;
}

.footer-copy-left,
.footer-copy-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copy-left span,
.footer-copy-left a {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.footer-copy-left a:hover {
  color: var(--primary-3);
}

.footer-payments {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-secure-text {
  color: #3a6684;
  font-size: 13px;
  font-weight: 700;
}

.footer-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff, #f9fcfe);
  border: 1px solid rgba(78,151,198,.14);
  color: #3a6684;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(67,127,166,.05);
}

.pay-badge svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.footer-security {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.secure-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #2d6f98;
}

/* WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg,#1fb457,#25D366);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.floating-whatsapp .icon {
  width: 22px;
  height: 22px;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: rgba(37,211,102,.35);
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

/* MODAL PRODUTO */
.produto-modal-ajax-wrap {
  width: 100%;
  max-width: 1100px;
}

.produto-modal {
  max-width: 1100px;
  width: calc(100vw - 48px);
  max-height: 92vh;
  padding: 0;
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.fancybox__content .produto-modal {
  display: block !important;
  width: 100%;
  max-width: 1100px;
  visibility: visible !important;
  opacity: 1 !important;
}

.produto-modal-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.produto-modal-galeria {
  padding: 28px;
  background: #f8fbfd;
  border-right: 1px solid rgba(78,151,198,.12);
}

.produto-viewer {
  width: 100%;
  margin-bottom: 14px;
}

.produto-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #eaf4fa;
  border: 1px solid rgba(78,151,198,.12);
}

button.produto-thumb {
  padding: 0;
  appearance: none;
  cursor: pointer;
  border-width: 1px;
}

.produto-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.produto-thumb:hover img {
  transform: scale(1.03);
}

.produto-thumb-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 420px;
}

.produto-thumb-main img,
.produto-thumb-main iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.produto-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.produto-thumbs-grid .produto-thumb {
  aspect-ratio: 1 / 1;
}

.produto-thumb-item.active {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 2px rgba(78,151,198,.18);
}

.produto-thumb-video {
  position: relative;
}

.produto-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  pointer-events: none;
}

.produto-video-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  text-align: center;
}

.produto-video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.produto-modal-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.produto-modal-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(106,174,214,.12);
  color: var(--primary-3);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.produto-modal-info h2 {
  margin: 0 0 14px;
  color: #355f7d;
  font-size: 30px;
  line-height: 1.1;
  font-family: 'Poppins', serif;
}

.produto-modal-info p {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 15px;
}

.produto-modal-lista {
  margin: 6px 0 22px;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}

.produto-modal-btn {
  align-self: flex-start;
  min-height: 50px;
  padding: 0 22px;
}

.produto-garantia {
  font-size: 13px;
  color: #5f7c92;
  margin: 10px 0 14px;
}

/* MODAL TERMOS */
.modal-termos {
  width: min(880px, calc(100vw - 40px));
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 40px 38px;
  background: #fff;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.8;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}

.modal-termos h2 {
  margin: 0 0 22px;
  padding-right: 24px;
  font-family: 'Poppins', serif;
  font-size: 44px;
  line-height: 1;
  color: #355f7d;
}

.modal-termos h3 {
  margin: 26px 0 10px;
  font-size: 24px;
  line-height: 1.25;
  color: #3a6684;
}

.modal-termos p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
}

.modal-termos strong {
  color: #355f7d;
}

.modal-termos::-webkit-scrollbar {
  width: 10px;
}

.modal-termos::-webkit-scrollbar-thumb {
  background: rgba(78,151,198,.28);
  border-radius: 999px;
}

/* FANCYBOX */
.fancybox__slide {
  padding: 16px;
}

.fancybox__content {
  padding: 0 !important;
  border-radius: 18px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  max-height: 90vh !important;
}

.fancybox__backdrop {
  background: rgba(15, 23, 32, 0.78) !important;
}

/* ANIMAÇÕES */
@media (min-width: 992px) {
  .memorial-main {
    animation: memorialPulse 3.8s ease-in-out infinite;
    will-change: transform, box-shadow;
  }

  .memorial-main:hover {
    animation-play-state: paused;
    transform: scale(1.018);
  }

  .memorial-badge {
    animation: memorialBadgePulse 2.8s ease-in-out infinite;
  }

  .memorial-badge::after {
    animation: memorialBadgeShine 3.4s linear infinite;
  }

  .memorial-badge:hover {
    animation-play-state: paused;
    transform: translateY(-1px) scale(1.03);
  }

  .memorial-badge:hover::after {
    animation-play-state: paused;
  }

  .floating-whatsapp {
    animation: whatsappFloat 2.8s ease-in-out infinite;
  }

  .floating-whatsapp::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 30%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.35) 50%,
      rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    animation: whatsappShine 3.2s linear infinite;
  }

  .floating-whatsapp:hover {
    animation-play-state: paused;
    transform: scale(1.08);
    box-shadow: 0 16px 35px rgba(0,0,0,0.28);
  }

  .floating-whatsapp:hover::after {
    animation-play-state: paused;
  }
}

@keyframes memorialPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.018); }
  100% { transform: scale(1); }
}

@keyframes memorialBadgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 26px rgba(20, 64, 108, 0.22);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 16px 34px rgba(20, 64, 108, 0.30);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 26px rgba(20, 64, 108, 0.22);
  }
}

@keyframes memorialBadgeShine {
  0% { left: -35%; }
  100% { left: 120%; }
}

@keyframes whatsappFloat {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes whatsappShine {
  0% { left: -40%; }
  100% { left: 120%; }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(.9);
    opacity: .7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* RESPONSIVO */
@media (max-width: 1180px) {
  .contact-grid,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .stats,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar {
    position: static;
  }

  .memorial-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .memorial-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .memorial-wrap {
    padding: 24px;
    border-radius: 22px;
  }

  .memorial-title {
    font-size: 30px;
  }

  .memorial-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .deposition-card {
    flex: 0 0 calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
    min-width: calc((100% - 22px) / 2);
  }

  #contato .contact-grid .contact-card:first-child {
    padding-right: 28px;
  }

  #contato .contact-grid .contact-card:first-child::after {
    content: none;
  }
}

@media (max-width: 920px) {
  .nav {
    min-height: 82px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0 16px 16px;
    display: none;
  }

  .menu-wrap.open {
    display: block;
  }

  .menu {
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(78,151,198,.10);
    box-shadow: 0 18px 40px rgba(67,127,166,.12);
    border-radius: 4px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .menu a,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    padding: 30px 24px 22px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-dots {
    bottom: 322px;
  }

  .produto-modal-wrap {
    grid-template-columns: 1fr;
  }

  .produto-modal-galeria {
    border-right: 0;
    border-bottom: 1px solid rgba(78,151,198,.12);
  }

  .produto-modal-info {
    padding-top: 24px;
  }

  .footer-copy-custom {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-payments {
    align-items: flex-start;
  }

  .footer-payment-icons {
    justify-content: flex-start;
  }

  .footer-security {
    text-align: left;
  }

  .modal-termos {
    width: calc(100vw - 28px);
    padding: 30px 24px;
  }

  .modal-termos h2 {
    font-size: 36px;
  }

  .modal-termos h3 {
    font-size: 21px;
  }

  .modal-termos p {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .topbar,
  .sidebar-vantagens,
  .hero-dots,
  .hero-bottom,
  .stats-section {
    display: none !important;
  }

  .header .nav {
    min-height: 74px;
    padding: 10px 0;
  }

  .brand {
    max-width: calc(100% - 24px);
  }

  .brand-logo {
    max-width: 250px;
    width: 250px;
    padding: 0;
    margin-left: 0;
  }

  .brand-logo img {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .hero-banner {
    min-height: 400px;
    border-radius: 16px;
  }

  .hero-content {
    min-height: 340px;
    padding: 26px 18px 18px;
    justify-content: flex-start;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.3;
    padding: 8px 12px;
    margin-bottom: 14px;
  }

  h1 {
    max-width: none;
    font-size: 34px;
    line-height: 0.98;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .hero-actions {
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .catalog-grid,
  .contact-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .depositions {
    gap: 10px;
  }

  .deposition-track {
    gap: 14px;
  }

  .deposition-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .produto-mini-depoimento {
    min-height: auto;
  }

  .dep-arrow {
    width: 42px;
    height: 42px;
    font-size: 22px;
    border-radius: 12px;
  }

  .produto-modal {
    width: calc(100vw - 16px);
    max-height: 90vh;
    border-radius: 12px;
  }

  .produto-modal-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .produto-modal-galeria,
  .produto-modal-info {
    padding: 14px;
  }

  .produto-thumb-main {
    aspect-ratio: 1 / 1;
    min-height: auto;
    border-radius: 8px;
  }

  .produto-thumbs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .produto-thumbs-grid .produto-thumb {
    border-radius: 8px;
  }

  .produto-modal-info {
    display: block;
    padding-bottom: 18px;
    overflow: visible;
  }

  .produto-modal-info h2 {
    font-size: 24px;
    line-height: 1.08;
  }

  .produto-modal-info p,
  .produto-modal-lista {
    font-size: 14px;
    line-height: 1.65;
  }

  .produto-modal-lista {
    margin-bottom: 18px;
  }

  .produto-modal-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .produto-play {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .modal-termos {
    width: calc(100vw - 16px);
    max-height: 88vh;
    padding: 22px 18px;
    border-radius: 12px;
  }

  .modal-termos h2 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .modal-termos h3 {
    font-size: 19px;
    margin-top: 22px;
  }

  .modal-termos p {
    font-size: 15px;
    line-height: 1.8;
  }

  .footer-payment-icons {
    gap: 8px;
  }

  .pay-badge {
    font-size: 12px;
    padding: 0 10px;
    min-height: 36px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .fancybox__content {
    width: calc(100vw - 16px) !important;
    max-height: 92vh !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 575px) {
  .memorial-section {
    padding: 28px 0;
  }

  .memorial-wrap {
    padding: 18px;
    border-radius: 18px;
  }

  .memorial-video-frame {
    padding: 8px;
    border-radius: 18px;
  }

  .memorial-video-frame iframe {
    border-radius: 12px;
  }

  .memorial-title {
    font-size: 30px;
  }

  .memorial-text {
    font-size: 15px;
  }

  .memorial-actions {
    flex-direction: column;
  }

  .memorial-actions .btn {
    width: 100%;
  }
}

.depoimentos-cta{
  text-align:center;
  margin-top:30px;
}

.btn-orcamento{
  display:inline-block;
  padding:20px 35px;
  font-size:20px;
  font-weight:600;
  border-radius:15px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg, #3e84b1, #246288);
  box-shadow:0 10px 24px rgba(0,0,0,0.15);
  transition:all .25s ease;
}

.btn-orcamento:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,0.18);
  background:linear-gradient(135deg, #4f97c6, #2f6f98);
}

.footer-copy-custom{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
  padding-top:28px;
  border-top:1px solid #d9e6f0;
}

.footer-copy-left{
  display:flex;
  flex-direction:column;
  gap:10px;
  color:#56738a;
  font-size:14px;
  line-height:1.6;
}

.footer-copy-left a{
  color:#3c6a8c;
  text-decoration:none;
}

.footer-copy-left a:hover{
  text-decoration:underline;
}

.footer-copy-right{
  flex:0 0 420px;
  display:flex;
  justify-content:flex-end;
}

.footer-trust{
  width:100%;
  max-width:420px;
  border:1px solid #dbe8f2;
  padding:16px 16px 14px;
  box-shadow:0 6px 20px rgba(47, 92, 126, 0.05);
}

.footer-trust-title{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  color:#2c5878;
  font-size:14px;
  font-weight:700;
}

.footer-trust-title svg{
  width:18px;
  height:18px;
  flex-shrink:0;
}

.footer-trust-title small{
  margin-left:auto;
  font-size:12px;
  font-weight:700;
  color:#6d8799;
  background:#eaf3f9;
  border:1px solid #d7e6f1;
  padding:4px 10px;
  border-radius:999px;
  line-height:1;
}

.footer-payments{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-bottom:10px;
}

.pay-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:42px;
  padding:8px 10px;
  background:#fff;
  border:1px solid #d8e6f2;
  border-radius:10px;
  color:#315d7c;
  font-size:13px;
  font-weight:600;
}

.pay-item svg{
  width:16px;
  height:16px;
  flex-shrink:0;
}

.pay-item.pix{
  background:#f0fbf7;
  border-color:#cfeee4;
  color:#2d8b73;
}

.footer-security{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:#6d8597;
  line-height:1.5;
  padding-top:10px;
  border-top:1px solid #e4edf4;
}

@media (max-width: 991px){
  .footer-copy-custom{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-copy-right{
    flex:1 1 auto;
    width:100%;
    justify-content:flex-start;
  }

  .footer-trust{
    max-width:100%;
  }
}

@media (max-width: 767px){
  .footer-copy-custom{
    gap:20px;
  }

  .footer-payments{
    grid-template-columns:1fr;
  }

  .footer-copy-left{
    font-size:13px;
  }

  .footer-trust{
    padding:14px;
  }
}

@media (max-width: 768px){

  .footer-copy-right{
    display:none;
  }

  .contact-card{
    display:none;
  }

  .footer-copy-left{
    width:100%;
    text-align:center;
    align-items:center;
  }

}

.produto-video-wrap{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.produto-video-wrap iframe{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

#produtoViewer.is-mp4{
  text-align: center;
  background: transparent;
}

#produtoViewer.is-mp4 .produto-video-wrap{
  width: auto;
  max-width: 100%;
  display: inline-block;
  background: transparent;
  overflow: visible;
  padding-top: 0 !important;
}

#produtoViewer.is-mp4 .produto-video-wrap video{
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 75vh;
  background: transparent;
  object-fit: contain;
}

.popup-depoimento-wrap{
  position: relative;
  width: min(92vw, 760px);
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 18px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  overflow: hidden;
}

.popup-depoimento-head{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1f5f86;
  margin-bottom: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}

.popup-depoimento-body{
  text-align: center;
}

.popup-depoimento-img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.popup-depoimento-close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  color: #444;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: all .2s ease;
}

.popup-depoimento-close:hover{
  background: rgba(0,0,0,0.14);
  transform: scale(1.05);
}

/* Camada branca bem leve por cima do site */
.fancybox__backdrop{
  background: rgba(255,255,255,0.45) !important;
  backdrop-filter: blur(1px);
}

/* Caixa do Fancybox sem fundo extra */
.fancybox__content.popup-depoimento-fancybox{
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 768px){
  .popup-depoimento-wrap{
    width: min(94vw, 520px);
    padding: 18px 14px 14px 14px;
    border-radius: 16px;
  }

  .popup-depoimento-head{
    font-size: 16px;
    padding: 0 28px 0 10px;
    margin-bottom: 14px;
  }

  .popup-depoimento-close{
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
}

.modal-pix{
  max-width: 560px;
}

.pix-produto-box{
  background: #f7fbff;
  border: 1px solid rgba(46, 143, 166, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.pix-produto-nome{
  font-size: 20px;
  font-weight: 700;
  color: #12324f;
  line-height: 1.2;
}

.pix-produto-valor{
  font-size: 22px;
  font-weight: 800;
  color: #1e88c7;
  margin-top: 6px;
}

.pix-produto-desc{
  font-size: 14px;
  color: #4a6175;
  margin-top: 10px;
  line-height: 1.5;
}

.pix-cartao-wrap{
  margin-top: 6px;
}

.btn-pagar-cartao{
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .2px;
  color: #fff;
  background: linear-gradient(135deg, #1f74d8 0%, #0d57b8 100%);
  box-shadow: 0 12px 28px rgba(13, 87, 184, 0.22);
  transition: all .2s ease;
}

.btn-pagar-cartao:hover{
  transform: translateY(-1px);
  opacity: .98;
}