/* ── DESIGN SYSTEM & TOKENS ────────────────────────────── */
:root {
  /* Palette: DESIGN (Gela Facil).md */
  --ice:        #F0F9FF;
  --sky:        #38BDF8;
  --blue:       #0059BB;
  --deep:       #0047AB;
  --navy:       #001A41;
  --black:      #131B2E;
  --white:      #FFFFFF;
  --gray:       #F2F3FF;
  --border-clr: #C1C6D7;
  --tag-bg:     #D8E2FF;
  --muted:      #414754;
  --success:    #22C55E;
  --success-dark: #16A34A;

  /* Wider page rhythm: content uses the viewport without touching the edges */
  --content-max: 1680px;
  --page-gutter: clamp(18px, 3vw, 56px);

  /* Typography system: display, supporting and reading roles */
  --font-title: 'Poppins', sans-serif;
  --font-subtitle: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Layout Rules */
  --r: 16px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px -2px rgba(0, 71, 171, 0.05);
  --shadow: 0 8px 24px -4px rgba(0, 123, 255, 0.12), 0 2px 6px -1px rgba(0, 71, 171, 0.04);
  --shadow-md: 0 20px 40px -8px rgba(0, 35, 102, 0.18);
}

/* ── DESTAQUES — REFERENCE-ALIGNED EDITORIAL CAROUSEL ─── */
.destaques {
  padding: 96px 0 104px;
  overflow: hidden;
  border-bottom: 1px solid #edf2f6;
  background:
    radial-gradient(circle at 88% 18%, rgba(221, 243, 254, 0.24), transparent 24%),
    #fff;
}

.destaques-container {
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

.destaques-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 34px;
}

.destaques-title-wrap {
  max-width: 530px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.destaques .section-label {
  color: #0059BB;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.destaques .section-title {
  color: #071b36;
  margin: 0;
  font-size: clamp(2.15rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.destaques-title-line {
  width: 120px;
  max-width: 100%;
  height: 3px;
  display: block;
  margin: 8px 0 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, #0070EA 0 62%, #c6e6f6 62%);
}


.destaques-description {
  margin: 0;
  color: #657789;
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.55;
}

.destaques-controls-group {
  width: min(100%, 350px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  padding-top: 24px;
}

.destaques-controls-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.destaques-drag-badge {
  min-height: 42px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid #e3edf3;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(20, 67, 96, 0.06);
  color: #62788a;
  font-size: 0.69rem;
  font-weight: 700;
  white-space: nowrap;
}

.destaques-drag-badge svg {
  color: #0059BB;
}

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

.destaques-control {
  width: 45px;
  height: 45px;
  border: 1px solid #dfeaf1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 7px 20px rgba(15, 53, 78, 0.08);
  color: #0d2941;
}

.destaques-control.prev,
.destaques-control.next {
  margin: 0;
}

.destaques-control:hover {
  border-color: #0070EA;
  background: #eef9fe;
  box-shadow: 0 9px 24px rgba(42, 131, 180, 0.15);
  color: #004493;
  transform: translateY(-2px);
}

.destaques-control:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.destaques-footer-bar {
  width: 175px;
  display: grid;
  grid-template-columns: auto minmax(54px, 1fr) auto;
  align-items: center;
  gap: 9px;
  margin: 0 3px 0 0;
  padding: 0;
}

.destaques-counter {
  min-width: 21px;
  color: #0059BB;
  font-size: 0.73rem;
  font-weight: 800;
  text-align: left;
}

.destaques-progress-track {
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: #dce8ef;
}

.destaques-progress-fill {
  width: 8.333%;
  min-width: 12px;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #0070EA;
  transition: width 0.28s ease;
}

.destaques-total {
  color: #9aa9b5;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.destaques-slider-wrap {
  position: relative;
  width: 100%;
  display: block;
}

.destaques-slider-wrap::before,
.destaques-slider-wrap::after {
  top: 6px;
  bottom: 20px;
  width: clamp(34px, 5vw, 72px);
  z-index: 8;
}

.destaques-slider-wrap::before {
  opacity: 0;
  background: linear-gradient(90deg, #fff 10%, rgba(255, 255, 255, 0));
  transition: opacity 0.2s ease;
}

.destaques-slider-wrap.has-scrolled::before {
  opacity: 1;
}

.destaques-slider-wrap::after {
  right: -1px;
  background: linear-gradient(270deg, #fff 8%, rgba(255, 255, 255, 0));
}

.destaques-slider-wrap.is-at-end::after {
  opacity: 0;
}

.destaques-track {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 1.35vw, 20px);
  padding: 6px 2px 20px;
  overflow-x: hidden;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  cursor: default;
}

.destaque-card {
  position: relative;
  width: clamp(248px, 18.2vw, 282px);
  height: 365px;
  flex: 0 0 clamp(248px, 18.2vw, 282px);
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  isolation: isolate;
  scroll-snap-align: start;
  background: #0b2235;
  box-shadow: 0 13px 30px rgba(8, 36, 55, 0.14);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.destaque-card::before {
  inset: 0;
  width: auto;
  height: auto;
  background: linear-gradient(180deg, rgba(5, 20, 31, 0.03) 14%, rgba(5, 24, 39, 0.18) 43%, rgba(4, 24, 40, 0.94) 100%);
  transition: background 0.35s ease;
}

.destaque-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  pointer-events: none;
}

.destaque-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.destaque-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.destaque-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 20px 21px;
}

.destaque-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  color: #0059BB;
}

.destaque-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.destaque-card h3 {
  max-width: calc(100% - 27px);
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.28;
  letter-spacing: 0.015em;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.destaque-cta {
  position: absolute;
  right: 20px;
  bottom: 22px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #e8b821;
  font-size: 0;
  opacity: 1;
  transform: none;
}

.destaque-cta svg {
  width: 15px;
  height: 15px;
}

.destaque-card:hover {
  height: 365px;
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(7, 36, 56, 0.22);
  transform: translateY(-6px);
}

.destaque-card:hover::before {
  background: linear-gradient(180deg, rgba(5, 20, 31, 0.01) 10%, rgba(5, 24, 39, 0.14) 40%, rgba(4, 24, 40, 0.97) 100%);
}

.destaque-card:hover .destaque-bg-wrap {
  transform: scale(1.055);
}

.destaque-card:hover h3,
.destaque-card:hover .destaque-cta {
  transform: none;
}

.destaque-card:hover .destaque-cta svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .destaques {
    padding: 78px 0 84px;
  }

  .destaques-header {
    flex-direction: column;
    gap: 26px;
  }

  .destaques-controls-group {
    width: 100%;
    align-items: stretch;
    padding-top: 0;
    gap: 16px;
  }

  .destaques-drag-badge {
    display: inline-flex;
  }

  .destaques-track {
    overflow-x: auto;
    cursor: grab;
  }

  .destaques-controls-top {
    justify-content: space-between;
  }

  .destaques-footer-bar {
    width: min(100%, 240px);
  }

  .destaque-card,
  .destaque-card:hover {
    width: 258px;
    height: 350px;
    flex-basis: 258px;
  }
}

@media (max-width: 560px) {
  .destaques {
    padding: 64px 0 72px;
  }

  .destaques-container {
    padding: 0 18px;
  }

  .destaques .section-title {
    font-size: 2.25rem;
  }

  .destaques-description br {
    display: none;
  }

  .destaques-drag-badge {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.64rem;
  }

  .destaques-control {
    width: 41px;
    height: 41px;
  }

  .destaques-track {
    gap: 14px;
  }

  .destaque-card,
  .destaque-card:hover {
    width: min(78vw, 276px);
    height: 360px;
    flex-basis: min(78vw, 276px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .destaque-card,
  .destaque-bg-wrap,
  .destaque-cta svg,
  .destaques-progress-fill {
    transition: none;
  }
}

/* Destaques: composição final alinhada à referência visual */
.destaques {
  position: relative;
  padding: clamp(68px, 6.5vw, 104px) 0 clamp(72px, 7vw, 112px);
  background:
    radial-gradient(circle at 8% 8%, rgba(89, 178, 226, 0.11), transparent 25%),
    radial-gradient(circle at 92% 92%, rgba(185, 216, 50, 0.09), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9fc 100%);
}

.destaques-container {
  max-width: 1672px;
  padding-inline: clamp(24px, 3.5vw, 58px);
}

.destaques-header {
  align-items: center;
  margin-bottom: clamp(42px, 4.5vw, 70px);
}

.destaques .section-label {
  position: static;
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 112, 234, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #0059BB;
  font-size: 0.62rem;
  box-shadow: 0 5px 18px rgba(32, 108, 149, 0.06);
}

.destaques .section-title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
  color: #09243b;
  font-size: clamp(2.35rem, 3.5vw, 3.8rem);
  letter-spacing: -0.055em;
}

.destaques .section-title::after {
  content: '';
  position: absolute;
  left: 2px;
  bottom: 0;
  width: 74px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #0070EA 0 76%, #b9d532 76% 100%);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.destaques:hover .section-title::after {
  transform: scaleX(1.18);
}

.destaques-title-line {
  display: none;
}

.destaques-description {
  max-width: 430px;
  margin: 16px 0 0;
  color: #5a7183;
  font-size: 0.86rem;
  line-height: 1.65;
}

.destaques-controls-group {
  width: min(100%, 220px);
  gap: 14px;
  padding: 0 4px 3px 0;
}

.destaques-control {
  width: 46px;
  height: 46px;
  border-color: rgba(34, 119, 164, 0.16);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(20, 67, 96, 0.09);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
}

.destaques-control:hover:not(:disabled) {
  border-color: #0070EA;
  background: #0070EA;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 112, 234, 0.28);
  transform: translateY(-3px) scale(1.04);
}

.destaques-footer-bar {
  width: 164px;
}

.destaques-progress-track {
  height: 3px;
  background: #dbe7ee;
  box-shadow: inset 0 1px 2px rgba(13, 49, 72, 0.06);
}

.destaques-progress-fill {
  background: linear-gradient(90deg, #0059BB, #38BDF8);
  box-shadow: 0 0 10px rgba(0, 112, 234, 0.32);
}

.destaques-track {
  gap: clamp(14px, 1.25vw, 20px);
  padding-top: 16px;
  padding-bottom: 32px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  counter-reset: destaque-card;
}

.destaques-track::-webkit-scrollbar {
  display: none;
}

.destaque-card,
.destaque-card:hover {
  width: clamp(240px, 18vw, 298px);
  height: clamp(420px, 29vw, 500px);
  flex-basis: clamp(240px, 18vw, 298px);
  border-radius: 22px;
}

.destaque-card {
  counter-increment: destaque-card;
  background: #071e31;
  box-shadow:
    0 18px 40px rgba(8, 36, 55, 0.13),
    0 2px 6px rgba(8, 36, 55, 0.06);
  transform-origin: center bottom;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s ease,
    filter 0.45s ease,
    opacity 0.45s ease;
}

.destaque-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 20, 32, 0.02) 10%, rgba(5, 24, 39, 0.11) 35%, rgba(3, 20, 34, 0.97) 100%);
  pointer-events: none;
  transition: background 0.55s ease;
}

.destaque-card::after {
  z-index: 7;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 0 rgba(0, 112, 234, 0);
  transition:
    border-color 0.45s ease,
    box-shadow 0.55s ease;
}

.destaque-bg-wrap {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.destaque-bg-img {
  filter: saturate(0.88) contrast(1.04) brightness(0.96);
  transition: filter 0.55s ease;
}

.destaque-content {
  min-height: 226px;
  padding: 22px 22px 24px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.destaque-icon {
  position: relative;
  width: 46px;
  height: 46px;
  margin-bottom: 36px;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    color 0.35s ease,
    background-color 0.35s ease;
}

.destaque-icon::after {
  content: counter(destaque-card, decimal-leading-zero);
  position: absolute;
  top: calc(100% + 9px);
  left: 1px;
  color: #7BD0FF;
  font-family: var(--font-subtitle);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.destaque-icon svg {
  width: 21px;
  height: 21px;
}

.destaque-card h3 {
  max-width: calc(100% - 38px);
  font-size: clamp(1.12rem, 1.25vw, 1.26rem);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.destaque-card h3::after {
  content: '';
  width: 26px;
  height: 2px;
  display: block;
  margin-top: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, #b7d638, #d6ed78);
  transform-origin: left center;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.destaque-content > p {
  max-width: calc(100% - 38px);
  margin: 8px 0 0;
  color: rgba(237, 246, 251, 0.78);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.48;
  transition:
    color 0.35s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.destaque-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 8;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(30, 139, 198, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-subtitle);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 7px 18px rgba(8, 44, 66, 0.2);
}

.destaque-cta {
  right: 20px;
  bottom: 23px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1.5px solid rgba(156, 207, 72, 0.78);
  border-radius: 999px;
  color: transparent;
  font-size: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.destaque-cta svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: #b8db4c;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .destaques-track:has(.destaque-card:hover) .destaque-card:not(:hover) {
    opacity: 0.8;
    filter: saturate(0.76);
  }

  .destaque-card:hover {
    z-index: 9;
    transform: none;
    box-shadow:
      0 18px 40px rgba(8, 36, 55, 0.13),
      0 2px 6px rgba(8, 36, 55, 0.06);
  }

  .destaque-card:hover::before {
    background:
      linear-gradient(180deg, rgba(5, 20, 31, 0) 4%, rgba(5, 24, 39, 0.04) 28%, rgba(3, 22, 37, 0.99) 100%);
  }

  .destaque-card:hover::after {
    border-color: rgba(81, 188, 239, 0.95);
    box-shadow:
      inset 0 0 0 1px rgba(81, 188, 239, 0.34),
      inset 0 0 28px rgba(50, 170, 226, 0.18),
      inset 0 -120px 110px rgba(10, 103, 153, 0.18);
  }

  .destaque-card:hover .destaque-bg-wrap {
    transform: scale(1.095) translateY(-4px);
  }

  .destaque-card:hover .destaque-bg-img {
    filter: saturate(1.04) contrast(1.06) brightness(1.02);
  }

  .destaque-card:hover .destaque-content {
    transform: translateY(-8px);
  }

  .destaque-card:hover .destaque-icon {
    color: #0e7eaf;
    background: #fff;
    box-shadow:
      0 14px 30px rgba(0, 0, 0, 0.24),
      0 0 0 6px rgba(75, 176, 224, 0.13);
    transform: translateY(-3px) rotate(-6deg) scale(1.08);
  }

  .destaque-card:hover h3,
  .destaque-card:hover .destaque-content > p {
    transform: translateY(-2px);
  }

  .destaque-card:hover h3::after {
    width: 46px;
  }

  .destaque-card:hover .destaque-content > p {
    color: rgba(255, 255, 255, 0.94);
  }

  .destaque-card:hover .destaque-cta {
    border-color: #b7dc54;
    background: #b7dc54;
    color: transparent;
    box-shadow: 0 8px 22px rgba(7, 25, 37, 0.28);
    transform: translateY(-2px) scale(1.1) rotate(-3deg);
  }

  .destaque-card:hover .destaque-cta svg {
    color: #102c3f;
    transform: translateX(2px);
  }
}

@media (max-width: 900px) {
  .destaques {
    padding: 56px 0 64px;
  }

  .destaques-header {
    align-items: stretch;
    gap: 22px;
    margin-bottom: 30px;
  }

  .destaques-controls-group {
    width: 100%;
    padding: 0;
  }

  .destaque-card,
  .destaque-card:hover {
    width: 258px;
    height: 390px;
    flex-basis: 258px;
  }

  .destaque-content {
    min-height: 210px;
  }
}

@media (max-width: 560px) {
  .destaques {
    padding: 48px 0 56px;
  }

  .destaques-header {
    gap: 18px;
    margin-bottom: 24px;
  }

  .destaques .section-title {
    font-size: clamp(2rem, 11vw, 2.55rem);
  }

  .destaques-description {
    font-size: 0.78rem;
  }

  .destaque-card,
  .destaque-card:hover {
    width: min(82vw, 286px);
    height: 380px;
    flex-basis: min(82vw, 286px);
  }

  .destaque-content {
    min-height: 204px;
    padding: 18px 18px 20px;
  }

  .destaque-card h3 {
    font-size: 1.05rem;
  }

  .destaque-content > p {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .destaques .section-title::after,
  .destaque-card,
  .destaque-card::before,
  .destaque-bg-wrap,
  .destaque-content,
  .destaque-icon,
  .destaque-card h3,
  .destaque-card h3::after,
  .destaque-content > p,
  .destaque-cta,
  .destaque-cta svg {
    transition: none;
  }
}

/* Reset & Base Elements */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  overflow-y: auto;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--black);
}

h4, h5, h6,
.section-label,
.product-tag,
.product-brand,
.spec-tag,
.bento-tag,
.bento-sub-tags .sub-tag,
.price-box-label,
.modal-product-brand,
.modal-section-title,
.spl-tagline,
.promo-banner-kicker,
.form-section-title {
  font-family: var(--font-subtitle);
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--gray);
}
::-webkit-scrollbar-thumb {
  background: var(--sky);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

/* UTILITY BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--deep));
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 89, 187, 0.35);
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 89, 187, 0.5);
  filter: brightness(1.08);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 11px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* Section Common Titles */
.section-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.section-title.dark {
  color: var(--black);
}

/* ── NAVBAR ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1200px);
  height: 72px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(13, 31, 45, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Nav container constraints to edge-to-edge layout with safety margins */
.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}
.logo:hover {
  transform: scale(1.00);
}
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Logo starts white */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}

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

.nav-actions .btn-ghost,
.nav-actions .btn-primary {
  padding: 9px 16px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-cta-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.nav-cta-primary:hover {
  background: var(--ice);
  color: var(--black);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
}

/* Scrolled Navbar Style */
#navbar.scrolled {
  top: 12px;
  width: min(94%, 1200px);
  height: 70px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 89, 187, 0.18);
  box-shadow: 0 10px 30px rgba(13, 31, 45, 0.1);
}
#navbar.scrolled .logo-img {
  height: 40px;
  filter: none; /* Logo in original color on white background */
}
#navbar.scrolled .nav-links a {
  color: var(--navy);
}
#navbar.scrolled .nav-links a:hover {
  color: var(--blue);
}
#navbar.scrolled .nav-links a::after {
  background: var(--blue);
}
#navbar.scrolled .nav-cta-ghost {
  color: var(--navy);
  border-color: var(--border-clr);
}
#navbar.scrolled .nav-cta-ghost:hover {
  background: var(--ice);
  border-color: var(--blue);
  color: var(--blue);
}
#navbar.scrolled .nav-cta-primary {
  background: linear-gradient(135deg, var(--blue), var(--deep));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 89, 187, 0.3);
}
#navbar.scrolled .nav-cta-primary:hover {
  box-shadow: 0 6px 18px rgba(0, 89, 187, 0.45);
}

/* Mobile Toggle Hamburger button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
#navbar.scrolled .menu-toggle .bar {
  background-color: var(--navy);
}
.menu-toggle.active .bar {
  background-color: var(--white) !important;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── HERO CAROUSEL ──────────────────────────────────────── */
.hero-carousel {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--black);
}

.carousel-track-container {
  width: 100%;
  height: 100%;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8vw;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}
.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Content overlays */
.hero-content {
  max-width: 680px;
  color: var(--white);
  z-index: 10;
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.carousel-slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 0.8s ease 0.3s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-content :is(h1, h2) {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-content :is(h1, h2) em {
  font-style: normal;
  color: var(--sky);
}

.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-hero {
  padding: 14px 32px;
  font-size: 1rem;
}

/* Slide arrows */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}
.carousel-control:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 89, 187, 0.35);
}
.carousel-control.prev {
  left: 3vw;
}
.carousel-control.next {
  right: 3vw;
}

/* Dots indicator */
.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 20;
}
.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dots .dot.active {
  background: var(--white);
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background-color: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.6s ease-in-out infinite;
}
@keyframes mouseScroll {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}
.scroll-indicator .arrow-down {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  animation: arrowBounce 1.6s infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* ── QUICK STATS BAR ─────────────────────────────────── */
.stats-bar {
  background: var(--white);
  padding: 24px var(--page-gutter);
  box-shadow: var(--shadow);
  border-bottom: 1.5px solid var(--border-clr);
  position: relative;
  z-index: 30;
}
.stats-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 220px;
  padding: 10px 15px;
}
.stat-icon {
  font-size: 2.2rem;
  color: var(--blue);
  background: var(--ice);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-text strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
}
.stat-text span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}


/* ── PRODUCTS ──────────────────────────────────────────── */
.products {
  padding: 100px var(--page-gutter);
  background-color: var(--gray);
}

.products-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  background: var(--white);
  padding: 6px;
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-clr);
}

.filter-tab {
  background: transparent;
  border: none;
  border-radius: 99px;
  padding: 8px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab.active, .filter-tab:hover {
  background: linear-gradient(135deg, var(--blue), var(--deep));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 89, 187, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 30px;
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-clr);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 89, 187, 0.12);
  border-color: var(--blue);
}

.product-img-wrap {
  background: linear-gradient(135deg, #F0F7FF 0%, #E1EFFF 100%);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-clr);
}

.product-emoji {
  font-size: 5.5rem;
  transition: transform 0.4s ease;
  user-select: none;
}
.product-card:hover .product-emoji {
  transform: scale(1.15) rotate(5deg);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
}
.product-tag.promo {
  background: #EF4444;
}
.product-tag.highlight {
  background: var(--blue);
  color: var(--white);
}

.product-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 63, 92, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 10;
}
.product-card:hover .product-hover-overlay {
  opacity: 1;
}

.view-details-btn {
  background: var(--white);
  color: var(--deep);
  border: 2px solid var(--blue);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transform: translateY(10px);
  transition: var(--transition);
}
.view-details-btn:hover {
  background: var(--blue);
  color: var(--white);
}
.product-card:hover .view-details-btn {
  transform: translateY(0);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--white);
}

.product-brand {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.spec-tag {
  background: var(--ice);
  border: 1px solid var(--border-clr);
  color: var(--deep);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-clr);
  padding-top: 18px;
  margin-top: auto;
}

.product-price-wrap {
  display: flex;
  flex-direction: column;
}
.product-price-wrap .old-price {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.product-price-wrap .product-price {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--deep);
}

.btn-cart-add {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: var(--blue);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 89, 187, 0.2);
}
.btn-cart-add:hover {
  background: var(--deep);
  transform: scale(1.05);
}

/* ── BENTO SECTOR ──────────────────────────────────────── */
.bento-section {
  margin-top: -100px;
  padding: 80px var(--page-gutter);
  background: #f4f7fa; /* Clean light gray background to make the cards pop */
  border-bottom: 1px solid var(--border-clr);
}

.bento-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(240px, auto);
  gap: 24px;
}

/* Base Bento Card */
.bento-card {
  border-radius: 16px;
  overflow: hidden;
  color: var(--navy);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  border: 1px solid var(--border-clr);
  background: var(--white);
}

.bento-card h2,
.bento-card h3 {
  color: var(--navy) !important;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 89, 187, 0.12);
  border-color: var(--blue);
}

/* Card Specific Layouts */
.bento-tall {
  grid-row: 1 / span 2;
  background: linear-gradient(180deg, var(--white) 0%, var(--ice) 100%);
  padding: 40px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.card-parceiros {
  isolation: isolate;
  min-height: 600px;
  padding: 36px 30px 28px;
  text-decoration: none;
  background: var(--white);
}

.card-parceiros::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.04) 44%,
    rgba(255, 255, 255, 0) 62%
  );
}

.card-parceiros-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translateY(5%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-parceiros:hover .card-parceiros-visual {
  transform: translateY(5%) scale(1.018);
}

.card-parceiros:focus-visible {
  outline: 3px solid rgba(0, 89, 187, 0.55);
  outline-offset: 4px;
}

.card-parceiros .bento-card-header {
  position: relative;
  z-index: 3;
}

.card-parceiros .bento-card-body {
  position: relative;
  z-index: 3;
  width: 58%;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-parceiros .bento-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue);
}

.bento-brand-icon {
  width: 25px;
  height: 25px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 0.7rem;
  line-height: 1;
}

.card-parceiros h3 {
  max-width: 235px;
  font-size: clamp(1.38rem, 1.75vw, 1.6rem);
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.045em;
}

.card-parceiros h3 strong {
  color: var(--blue);
  font-weight: 800;
}

.card-parceiros .bento-btn {
  padding: 9px 16px;
  font-family: var(--font-subtitle);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.card-parceiros .bento-btn .fa-arrow-right {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.card-parceiros:hover .bento-btn .fa-arrow-right {
  transform: translateX(3px);
}

/* Bento Button */
.bento-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 15px rgba(0, 89, 187, 0.25);
}

.bento-btn:hover {
  background: var(--deep);
  transform: scale(1.03);
}

.bento-btn .arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.card-parceiros:hover .bento-btn .arrow {
  transform: translateX(3px);
}

.bento-card-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Card 2: VRF */
.card-vrf {
  background: linear-gradient(135deg, var(--white) 0%, var(--ice) 100%);
  padding: 32px;
  position: relative;
  min-height: 240px;
}

.card-vrf .bento-card-content {
  position: relative;
  z-index: 2;
  max-width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.bento-tag {
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.yellow-text {
  color: var(--blue);
}

.card-vrf h3 {
  font-size: 1.35rem;
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.3;
  margin: 12px 0 16px;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.bento-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 89, 187, 0.2);
}

.bento-btn-sm:hover {
  background: var(--deep);
  transform: scale(1.02);
}

.card-vrf .vrf-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 1;
}

.card-vrf .vrf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

/* Card 3: Câmaras Frias */
.card-camaras {
  background: linear-gradient(135deg, var(--white) 0%, var(--ice) 100%);
  padding: 32px;
  position: relative;
  min-height: 240px;
}

.card-camaras .bento-card-content {
  position: relative;
  z-index: 2;
  max-width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.card-camaras h3 {
  font-size: 1.35rem;
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.3;
  margin: 12px 0 16px;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.bento-sub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.bento-sub-tags .sub-tag {
  background: var(--white);
  border: 1px solid var(--border-clr);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  color: var(--deep);
}

.card-camaras .camaras-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 1;
}

.card-camaras .camaras-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

/* Card 4: Wide (Lojas) */
.bento-wide {
  grid-column: 2 / span 2;
  background: linear-gradient(90deg, var(--white) 0%, var(--ice) 100%);
  display: flex;
  flex-direction: row;
  height: auto;
}

.card-lojas .bento-card-content {
  flex: 1.2;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-title-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.bento-title-left h2 {
  font-size: 1.8rem;
  font-family: var(--font-title);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 4px;
}

.bento-title-left p {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}

.bento-stats-flex {
  display: flex;
  gap: 24px;
  border-left: 2px solid var(--border-clr);
  padding-left: 24px;
}

.bento-stat {
  display: flex;
  flex-direction: column;
}

.bento-stat .stat-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -1px;
}

.bento-stat .stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.card-lojas .stores-img-wrap {
  flex: 0.8;
  height: 100%;
  min-height: 240px;
}

.card-lojas .stores-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

/* ── INSTALLATION BANNER ───────────────────────────────── */
.install-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 100%);
  padding: 80px var(--page-gutter);
  position: relative;
  overflow: hidden;
}
.install-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(126, 181, 214, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.install-banner-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 10;
}

.install-banner-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.install-banner-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.install-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.install-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}

.install-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.install-price-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.price-box-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.install-price {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--sky);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.install-price-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
}

.btn-install-cta {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  margin-bottom: 16px;
}

.price-box-sub {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── REVIEWS ───────────────────────────────────────────── */
.reviews {
  padding: 100px var(--page-gutter);
  background-color: var(--gray);
}

.reviews-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border-clr);
  border-radius: var(--r);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stars {
  color: #FBBF24;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--gray);
  padding-top: 18px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.reviewer-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--black);
}
.reviewer-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 80px var(--page-gutter) 40px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 20px 0;
  max-width: 320px;
}

.footer-logo-wrap .logo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 24px;
  border-radius: 12px;
  display: inline-flex;
}
.footer-logo-wrap .logo-img--footer {
  height: 70px;
  filter: brightness(0) invert(1);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--sky);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--sky);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── FLOATING BUTTONS ──────────────────────────────────── */
/* Shopping Cart Floating Btn */
.cart-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  background: linear-gradient(135deg, var(--blue), var(--deep));
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 89, 187, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cart-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(0, 89, 187, 0.6);
}
.cart-float-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #EF4444;
  color: var(--white);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* WhatsApp Floating Btn */
.wa-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 500;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

/* ── DYNAMIC MODAL CARD ────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 45, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-md);
  position: relative;
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  transition: var(--transition);
}
.modal-close-btn:hover {
  color: var(--black);
}

.modal-product-preview {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gray);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-clr);
  margin-bottom: 24px;
}
.modal-product-emoji-container {
  font-size: 3rem;
  background: var(--white);
  width: 64px;
  height: 64px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-clr);
  flex-shrink: 0;
}
.modal-product-meta {
  display: flex;
  flex-direction: column;
}
.modal-product-brand {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}
.modal-product-title {
  font-size: 1.15rem;
  color: var(--black);
  margin: 2px 0 4px;
}
.modal-base-price {
  font-size: 0.85rem;
  color: var(--muted);
}
.modal-base-price strong {
  color: var(--navy);
}

.modal-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.modal-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.modal-option-card {
  border: 1.5px solid var(--border-clr);
  border-radius: 12px;
  padding: 14px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.modal-option-card:hover {
  border-color: var(--blue);
  background: var(--gray);
}
.modal-option-card.selected {
  border-color: var(--blue);
  background: var(--ice);
}

.option-icon {
  font-size: 1.5rem;
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-clr);
}
.option-details {
  flex-grow: 1;
}
.option-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--black);
}
.option-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1px;
}
.option-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--deep);
}

.modal-checkout-summary {
  background: var(--gray);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.summary-divider {
  height: 1.5px;
  background: var(--border-clr);
  margin: 12px 0;
}
.summary-row.total {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 0;
}
.summary-row.total strong {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--deep);
}

.modal-checkout-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
}

/* ── TOAST NOTIFICATIONS ───────────────────────────────── */
.toast-notification {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast-notification.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-110px);
}

/* ── SPLASH SCREEN / LOADING SCREEN ───────────────────── */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #001A41 0%, #0047AB 55%, #131B2E 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.75s ease, transform 0.75s ease;
  overflow: hidden;
}

#splash.hidden {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

#splash::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 220, 250, 0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: spl-pulse 3s ease-in-out infinite;
}

@keyframes spl-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%  { opacity: 1;  transform: translateX(-50%) scale(1.06); }
}

.spl-logo {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 20px 40px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: spl-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.spl-logo-img {
  height: 76px;
  width: auto;
  object-fit: contain;
  display: block;
}

.spl-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  animation: spl-in 0.6s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.spl-progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: spl-in 0.6s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.spl-bar {
  width: 240px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.spl-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--sky), var(--blue));
  border-radius: 99px;
  transition: width 0.4s ease;
}

.spl-step {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  min-height: 18px;
  letter-spacing: 0.3px;
}

.spl-cta {
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--navy);
  font-family: var(--font-subtitle);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  padding: 15px 36px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s;
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(59, 174, 224, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.spl-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.spl-cta:hover {
  box-shadow: 0 12px 40px rgba(59, 174, 224, 0.6);
  transform: translateY(-2px);
}

.spl-flakes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spl-flake {
  position: absolute;
  top: -10%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  filter: blur(0.5px);
  animation: spl-fall linear infinite;
  user-select: none;
}

@keyframes spl-fall {
  0%   { transform: translateY(-50px) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

@keyframes spl-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE DESIGN (MOBILE-FIRST) ──────────────────── */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .install-banner-container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-tall {
    grid-row: span 1;
    height: auto;
    padding-bottom: 28px;
  }
  .bento-wide {
    grid-column: span 2;
  }
  .install-banner-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  /* Hamburger Menu Toggle Display */
  .scroll-indicator {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    background: rgba(13, 31, 45, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 999;
  }
  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    color: var(--white) !important;
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
    padding: 6px 0;
  }
  .nav-links a::after {
    display: none;
  }
  
  #navbar.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 89, 187, 0.18);
    box-shadow: 0 15px 30px rgba(13, 31, 45, 0.1);
  }
  #navbar.scrolled .nav-links a {
    color: var(--navy) !important;
  }
  #navbar.scrolled .nav-links a:hover {
    color: var(--blue) !important;
  }
  
  .nav-actions {
    display: none; /* Hide desktop action buttons on mobile, drawer and floating buttons suffice */
  }

  /* Carousel adaptations */
  .carousel-control {
    width: 44px;
    height: 44px;
  }
  .carousel-control.prev {
    left: 2vw;
  }
  .carousel-control.next {
    right: 2vw;
  }
}

@media (max-width: 768px) {
  .hero-content :is(h1, h2) {
    font-size: 2.2rem;
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .stats-bar {
    padding: 16px 4vw;
  }
  .stats-container {
    justify-content: center;
  }
  .stat-item {
    min-width: 180px;
    flex: 0 1 auto;
    padding: 6px 10px;
    gap: 12px;
  }
  .stat-icon {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
  .stat-text strong {
    font-size: 1.15rem;
  }
  .stat-text span {
    font-size: 0.78rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .install-price-box {
    padding: 30px 20px;
  }
  .install-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    gap: 4px;
    border-radius: 12px;
  }
  .filter-tab {
    min-width: 0;
    min-height: 44px;
    padding: 8px 4px;
    font-size: clamp(0.72rem, 3vw, 0.88rem);
    text-align: center;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .card-parceiros {
    min-height: 0;
    height: clamp(560px, 145vw, 650px);
    padding: 30px 24px 24px;
  }
  .card-parceiros .bento-card-body {
    width: 59%;
    margin-top: 22px;
    gap: 14px;
  }
  .card-parceiros h3 {
    font-size: clamp(1.25rem, 4.7vw, 1.42rem);
  }
  .card-parceiros .bento-btn {
    padding: 9px 15px;
    font-size: 0.78rem;
  }
  .bento-wide {
    grid-column: span 1;
    flex-direction: column;
  }
  .card-lojas .bento-card-content {
    padding: 24px 20px;
  }
  .bento-title-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .bento-stats-flex {
    border-left: none;
    padding-left: 0;
    flex-direction: row;
    gap: 20px;
  }
  .card-lojas .stores-img-wrap {
    height: 200px;
  }
  .card-vrf, .card-camaras {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-vrf .vrf-img-wrap, .card-camaras .camaras-img-wrap {
    width: 100%;
    height: 160px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  /* Floating buttons mobile positioning */
  .cart-float {
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
  .wa-float {
    bottom: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }
  
  .modal-card {
    padding: 30px 20px;
  }
  .modal-product-preview {
    gap: 14px;
    padding: 12px 14px;
  }
  .modal-product-emoji-container {
    width: 52px;
    height: 52px;
    font-size: 2.2rem;
  }
  .modal-product-title {
    font-size: 1rem;
  }
  .modal-option-card {
    padding: 10px 14px;
    gap: 10px;
  }
  .option-icon {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  .option-title {
    font-size: 0.85rem;
  }
  .option-desc {
    font-size: 0.7rem;
  }
}

/* ── VECTOR ICONS SYSTEM (EMOJI REPLACEMENTS) ──────────── */
.stat-icon svg,
.step-icon svg,
.install-feature-icon svg,
.option-icon svg,
.footer-icon-svg,
.icon-svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  vertical-align: middle;
  display: inline-block;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ice);
  color: var(--blue);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

/* Product Icon Container */
.product-icon-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: var(--transition);
  padding: 16px;
}

.modal-product-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.modal-product-icon-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-product-icon-container svg {
  width: 100%;
  height: 100%;
}

.icon-svg {
  margin-right: 8px;
  vertical-align: text-bottom;
}

.install-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(126, 181, 214, 0.15);
  color: var(--sky);
  margin-right: 12px;
  flex-shrink: 0;
}

.install-feature-icon svg {
  width: 14px;
  height: 14px;
}

.btn-install-cta svg,
.modal-checkout-btn svg {
  margin-left: 8px;
  vertical-align: middle;
}

.footer-icon-svg {
  margin-right: 8px;
  color: var(--sky);
}

.option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 89, 187, 0.08);
  color: var(--blue);
  margin-right: 16px;
  flex-shrink: 0;
}

.option-icon svg {
  width: 22px;
  height: 22px;
}

/* Floating buttons custom styles for SVG */
.cart-float svg,
.wa-float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.cart-float {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-float {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
}
.wa-float:hover {
  background: #20ba5a;
}

/* ── PRODUCTS AD BANNER IMAGE ───────────────────────────── */
.products-ad-banner-wrapper {
  grid-column: 1 / -1; /* spans all columns */
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.products-ad-banner-wrapper .products-ad-banner-img-wrap {
  max-width: 100%;
  width: 100%;
}

.products-ad-banner-img-wrap {
  width: 100%;
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(13, 31, 45, 0.16);
  isolation: isolate;
}

.products-ad-banner-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── DESTAQUES AD BANNER ────────────────────────────────── */
.destaques-ad-banner-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
  box-sizing: border-box;
}

.destaques-ad-banner-link {
  display: block;
  width: 100%;
  max-width: var(--content-max);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(13, 31, 45, 0.16);
  isolation: isolate;
}

.destaques-ad-banner-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-banner-content {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 38%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--white);
}

.promo-banner-content-left {
  left: 5%;
  color: var(--navy);
}

.promo-banner-content-right {
  right: 4%;
  width: 34%;
}

.promo-banner-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: clamp(0.68rem, 0.85vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.78;
}

.promo-banner-content h2 {
  margin: 0;
  max-width: 12ch;
  color: inherit;
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.promo-banner-content p {
  max-width: 31ch;
  margin: 12px 0 18px;
  color: inherit;
  font-size: clamp(0.72rem, 1.05vw, 0.95rem);
  font-weight: 500;
  line-height: 1.42;
  opacity: 0.84;
}

.promo-banner-content h2,
.promo-banner-content p,
.promo-banner-kicker,
.promo-banner-cta {
  position: relative;
  left: 0;
}

.promo-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--deep);
  appearance: none;
  font-family: inherit;
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(13, 31, 45, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-banner-cta:focus-visible {
  outline: 3px solid #7fd3ff;
  outline-offset: 3px;
}

.promo-banner-content-left .promo-banner-cta {
  background: var(--deep);
  color: var(--white);
}

/* Destaque tipográfico exclusivo do banner de refrigeração */
.destaques-ad-banner-link::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, transparent 48%, rgba(3, 22, 52, 0.08) 68%, rgba(3, 22, 52, 0.32) 100%);
  pointer-events: none;
}

.destaques-ad-banner-link .promo-banner-content-right {
  right: 3.75%;
  width: 39%;
}

.destaques-ad-banner-link .promo-banner-kicker {
  position: relative;
  margin-bottom: 15px;
  padding-left: 32px;
  color: #aee3ff;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.17em;
  opacity: 1;
}

.destaques-ad-banner-link .promo-banner-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: #7fd3ff;
  transform: translateY(-50%);
}

.destaques-ad-banner-link .promo-banner-content h2 {
  max-width: 10.5ch;
  font-size: clamp(2.35rem, 3.9vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.32);
}

.destaques-ad-banner-link .promo-banner-content h2 span {
  display: block;
  color: #b9e8ff;
  background: linear-gradient(90deg, #d7f3ff 0%, #82d6ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.destaques-ad-banner-link .promo-banner-content p {
  max-width: 30ch;
  margin: 17px 0 25px;
  font-size: clamp(0.92rem, 1.15vw, 1.1rem);
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.94;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.destaques-ad-banner-link .promo-banner-cta {
  min-height: 48px;
  padding: 12px 22px;
  font-size: clamp(0.88rem, 1vw, 1rem);
  box-shadow: 0 10px 28px rgba(2, 15, 35, 0.24);
}

.destaques-ad-banner-link .promo-banner-cta span {
  font-size: 1.16em;
  transition: transform 0.25s ease;
}

.destaques-ad-banner-link .promo-banner-cta:hover span {
  transform: translateX(3px);
}

/* Mesma hierarquia visual no banner de climatização */
.products-ad-banner-img-wrap .promo-banner-content-left {
  left: 3.75%;
  width: 39%;
}

.products-ad-banner-img-wrap .promo-banner-kicker {
  position: relative;
  margin-bottom: 15px;
  padding-left: 32px;
  color: #236b9b;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.17em;
  opacity: 1;
}

.products-ad-banner-img-wrap .promo-banner-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: #2d86bc;
  transform: translateY(-50%);
}

.products-ad-banner-img-wrap .promo-banner-content h2 {
  max-width: 10.5ch;
  font-size: clamp(2.35rem, 3.9vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-shadow: 0 3px 20px rgba(38, 104, 148, 0.13);
}

.products-ad-banner-img-wrap .promo-banner-content h2 span {
  display: block;
  color: #1f6f9f;
  background: linear-gradient(90deg, #123f6b 0%, #318cc4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-ad-banner-img-wrap .promo-banner-content p {
  max-width: 30ch;
  margin: 17px 0 25px;
  color: #244b63;
  font-size: clamp(0.92rem, 1.15vw, 1.1rem);
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.94;
}

.products-ad-banner-img-wrap .promo-banner-cta {
  min-height: 48px;
  padding: 12px 22px;
  font-size: clamp(0.88rem, 1vw, 1rem);
  box-shadow: 0 10px 28px rgba(13, 61, 103, 0.22);
}

.products-ad-banner-img-wrap .promo-banner-cta span {
  font-size: 1.16em;
  transition: transform 0.25s ease;
}

.products-ad-banner-img-wrap .promo-banner-cta:hover span {
  transform: translateX(3px);
}

.products-ad-banner-img-wrap:hover .products-ad-banner-img,
.destaques-ad-banner-link:hover .destaques-ad-banner-img {
  transform: scale(1.018);
}

.products-ad-banner-img-wrap:hover .promo-banner-cta,
.destaques-ad-banner-link:hover .promo-banner-cta {
  transform: translateY(-2px);
  box-shadow: 0 11px 26px rgba(13, 31, 45, 0.24);
}

.products-ad-banner-img-wrap:focus-visible,
.destaques-ad-banner-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 700px) {
  .destaques-ad-banner-wrap {
    padding: 28px 18px;
  }

  .products-ad-banner-img-wrap,
  .destaques-ad-banner-link {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
  }

  .products-ad-banner-img,
  .destaques-ad-banner-img {
    aspect-ratio: 16 / 9;
  }

  .products-ad-banner-img {
    object-position: 70% center;
  }

  .destaques-ad-banner-img {
    object-position: 36% center;
  }

  .promo-banner-content,
  .promo-banner-content-right {
    position: static;
    width: 100%;
    padding: 24px;
  }

  .promo-banner-content h2,
  .promo-banner-content p,
  .promo-banner-kicker,
  .promo-banner-cta {
    left: 0;
  }

  .promo-banner-content-left {
    background: linear-gradient(135deg, #edf8ff, #d7edfc);
  }

  .promo-banner-content-right {
    background: linear-gradient(135deg, #0d3867, #071f43);
  }

  .promo-banner-content h2 {
    max-width: none;
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .promo-banner-content p {
    max-width: 38ch;
    margin-bottom: 16px;
    font-size: 0.88rem;
  }

  .destaques-ad-banner-link::after {
    display: none;
  }

  .destaques-ad-banner-link .promo-banner-content-right {
    width: 100%;
    padding: 28px 24px 30px;
  }

  .destaques-ad-banner-link .promo-banner-content h2 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 2.9rem);
    line-height: 0.94;
  }

  .destaques-ad-banner-link .promo-banner-content p {
    margin: 16px 0 22px;
    font-size: 1rem;
  }

  .products-ad-banner-img-wrap .promo-banner-content-left {
    width: 100%;
    padding: 28px 24px 30px;
  }

  .products-ad-banner-img-wrap .promo-banner-content h2 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 2.9rem);
    line-height: 0.94;
  }

  .products-ad-banner-img-wrap .promo-banner-content p {
    margin: 16px 0 22px;
    font-size: 1rem;
  }
}

/* ── CLIMA BEBIDAS SECTION ──────────────────────────────── */
.clima-bebidas-section {
  padding: 80px var(--page-gutter);
  background-color: var(--gray);
  border-top: 1px solid var(--border-clr);
  border-bottom: 1px solid var(--border-clr);
}

.clima-bebidas-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.clima-bebidas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.clima-bebidas-header .header-left {
  flex: 1;
  min-width: 300px;
}

.clima-bebidas-header .header-left .section-title {
  margin-bottom: 0;
  max-width: 600px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.clima-bebidas-header .header-right {
  display: flex;
  justify-content: flex-end;
}

.header-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* Slider Controls */
.clima-bebidas-nav {
  display: flex;
  gap: 8px;
}

.clima-bebidas-control {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #EAEAEA;
  border: none;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.clima-bebidas-control:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}

/* Slider Track styling */
.clima-bebidas-slider-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clima-bebidas-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-width: none;
  padding: 10px 4px;
  cursor: grab;
  user-select: none;
}

.clima-bebidas-track::-webkit-scrollbar {
  display: none;
}

.clima-bebidas-track.active-dragging {
  scroll-behavior: auto;
  cursor: grabbing;
}

.clima-bebidas-track .product-card {
  width: calc((100% - 3 * 24px) / 4);
  flex-shrink: 0;
  min-width: 280px;
  max-width: 340px;
  margin: 0;
}

@media (max-width: 1200px) {
  .clima-bebidas-track .product-card {
    width: calc((100% - 1 * 24px) / 2);
  }
}

@media (max-width: 640px) {
  .clima-bebidas-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .clima-bebidas-header .header-right {
    width: 100%;
    justify-content: center;
  }
  .header-right-col {
    align-items: center;
    width: 100%;
  }
  .clima-bebidas-nav {
    justify-content: center;
    width: 100%;
  }
  .clima-bebidas-track .product-card {
    width: 100%;
    max-width: none;
  }
}

/* ── NAVBAR CART BUTTON ────────────────────────────────── */
.nav-cart-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
#navbar.scrolled .nav-cart-btn {
  border-color: var(--border-clr);
  color: var(--navy);
}
.nav-cart-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: scale(1.05);
}
#navbar.scrolled .nav-cart-btn:hover {
  background: var(--ice);
  border-color: var(--blue);
  color: var(--blue);
}
.nav-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #EF4444;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--white);
}

/* ── WIDE MODAL FOR PRODUCT DETAILS ────────────────────── */
.wide-modal-card {
  max-width: 920px !important;
  padding: 0 !important;
  overflow: hidden;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 520px;
}
.product-detail-visuals {
  background: linear-gradient(135deg, #F0F7FF 0%, #E1EFFF 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-clr);
}
.detail-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  min-height: 200px;
}
.detail-img-container img {
  max-width: 85%;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(13, 31, 45, 0.15));
  animation: floatImage 4s ease-in-out infinite;
}
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.detail-specs-section h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.detail-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.spec-item span {
  font-size: 0.75rem;
  color: var(--muted);
}
.spec-item strong {
  font-size: 0.85rem;
  color: var(--black);
}

.product-detail-info {
  padding: 40px;
  overflow-y: auto;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 16px;
}
.stars-rating {
  color: #FBBF24;
  font-size: 1rem;
}
.rating-count {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.product-detail-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.summary-installments {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}
.modal-actions-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.modal-cart-add-btn {
  flex: 1;
  border-color: var(--blue) !important;
  color: var(--blue) !important;
  padding: 14px 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.modal-cart-add-btn:hover {
  background: var(--ice) !important;
  color: var(--deep) !important;
  border-color: var(--deep) !important;
}
.modal-buy-now-btn {
  flex: 1;
  padding: 14px 20px !important;
}

/* ── SHOPPING CART DRAWER ────────────────────────────────── */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 45, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 1200;
  box-shadow: -10px 0 40px rgba(13, 31, 45, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.active {
  right: 0;
}
.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-clr);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-header h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--black);
}
.cart-drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  transition: var(--transition);
}
.cart-drawer-close:hover {
  color: var(--black);
}
.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 80%;
  gap: 16px;
  color: var(--muted);
  animation: fadeIn 0.4s ease;
}
.empty-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--ice);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: inset 0 2px 5px rgba(0, 89, 187, 0.1);
}
.cart-empty-state h4 {
  font-size: 1.1rem;
  color: var(--black);
}
.cart-empty-state p {
  font-size: 0.85rem;
  max-width: 250px;
  line-height: 1.5;
}
.empty-cart-action-btn {
  margin-top: 8px;
  padding: 10px 24px;
  font-size: 0.88rem;
}
.cart-items-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-item {
  display: flex;
  gap: 16px;
  background: var(--gray);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-clr);
  align-items: center;
  position: relative;
  animation: slideInItem 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes slideInItem {
  from { opacity: 0; transform: translateX(15px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-item-img {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 1px solid var(--border-clr);
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.cart-item-option {
  font-size: 0.74rem;
  color: var(--blue);
  font-weight: 600;
}
.cart-item-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--deep);
  margin-top: 4px;
}
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.cart-item-remove-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.cart-item-remove-btn:hover {
  color: #EF4444;
}
.cart-item-qty-row {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-clr);
  border-radius: 6px;
  padding: 2px;
}
.qty-btn {
  background: transparent;
  border: none;
  width: 22px;
  height: 22px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: 4px;
}
.qty-btn:hover {
  background: var(--ice);
  color: var(--blue);
}
.qty-val {
  font-size: 0.82rem;
  font-weight: 700;
  width: 24px;
  text-align: center;
  color: var(--black);
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-clr);
  box-shadow: 0 -4px 15px rgba(13, 31, 45, 0.03);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.cart-summary-divider {
  height: 1px;
  background: var(--border-clr);
  margin: 12px 0;
}
.cart-summary-row.total {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 20px;
}
.cart-summary-row.total strong {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--deep);
  font-weight: 800;
}
.cart-checkout-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
}
.cart-checkout-btn:disabled {
  background: var(--border-clr);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
  filter: none;
}

/* ── CHECKOUT MODAL ────────────────────────────────────── */
.checkout-modal-card {
  max-width: 950px !important;
  padding: 0 !important;
  overflow: hidden;
  height: auto;
  max-height: 90vh;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  height: 100%;
}
.checkout-summary-col {
  background: var(--gray);
  border-right: 1px solid var(--border-clr);
  padding: 40px;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow-y: auto;
}
.checkout-summary-col h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
  border-bottom: 1.5px solid var(--border-clr);
  padding-bottom: 10px;
}
.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 6px;
}
.checkout-item-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}
.chk-item-img {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border-clr);
  border-radius: 6px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chk-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.chk-item-info {
  flex-grow: 1;
}
.chk-item-name {
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.chk-item-opt {
  font-size: 0.7rem;
  color: var(--blue);
  font-weight: 600;
}
.chk-item-price {
  font-weight: 700;
  color: var(--deep);
}
.checkout-financial-summary {
  margin-top: auto;
  background: var(--white);
  border: 1px solid var(--border-clr);
  border-radius: 12px;
  padding: 20px;
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.checkout-summary-row .free-badge {
  color: var(--success);
  font-weight: 700;
}
.checkout-summary-divider {
  height: 1px;
  background: var(--border-clr);
  margin: 12px 0;
}
.checkout-summary-row.total {
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 0;
}
.checkout-summary-row.total strong {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--deep);
  font-weight: 800;
}
.discount-row {
  color: var(--success-dark);
  font-weight: 600;
}

.checkout-form-col {
  padding: 40px;
  overflow-y: auto;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.checkout-form-col h3 {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 24px;
}
.form-section {
  margin-bottom: 24px;
}
.form-section-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-section-title .step-num {
  background: var(--blue);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.form-row.split-2 > div {
  flex: 1;
}
.form-row.split-3 > div {
  flex: 1;
}
.form-row.split-3 .span-2 {
  flex: 2;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
.form-group input,
.form-group select {
  padding: 10px 14px;
  border: 1.5px solid var(--border-clr);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--black);
  font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 89, 187, 0.15);
}

/* Payment Tabs Design */
.payment-methods-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.payment-tab {
  flex: 1;
  border: 1.5px solid var(--border-clr);
  border-radius: 10px;
  padding: 12px 6px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.payment-tab:hover {
  border-color: var(--blue);
  background: var(--gray);
}
.payment-tab.active {
  border-color: var(--blue);
  background: var(--ice);
}
.payment-tab .tab-icon {
  font-size: 1.25rem;
}
.payment-tab .tab-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--navy);
}
.payment-method-panel {
  display: none;
  background: var(--gray);
  border: 1px solid var(--border-clr);
  border-radius: 12px;
  padding: 20px;
  animation: fadeInPanel 0.3s ease both;
}
.payment-method-panel.active {
  display: block;
}
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* PIX PANEL styling */
.pix-instructions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.pix-qrcode-sim {
  background: var(--white);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pix-text-details {
  flex-grow: 1;
}
.pix-text-details p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 12px;
}
.pix-text-details strong {
  color: var(--success-dark);
}
.pix-key-copy-row {
  display: flex;
  gap: 8px;
}
.pix-key-copy-row input {
  flex-grow: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-clr);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--navy);
  font-family: var(--font-body);
  background: var(--white);
}
.pix-key-copy-row button {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 6px;
  box-shadow: none;
}

/* Card panel details */
.card-inputs-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Delivery payment radio choices */
.delivery-pay-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.delivery-pay-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--black);
  font-weight: 500;
  position: relative;
  user-select: none;
}
.delivery-pay-option input {
  display: none;
}
.custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-clr);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: var(--transition);
  background: var(--white);
}
.delivery-pay-option input:checked + .custom-radio {
  border-color: var(--blue);
}
.delivery-pay-option input:checked + .custom-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}
.checkout-submit-btn {
  margin-top: 24px;
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
}

/* ── CHECKOUT PROCESSING OVERLAY ───────────────────────── */
.checkout-processing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}
.checkout-processing-overlay.active {
  display: flex;
}
.processing-content {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--ice);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.processing-content h4 {
  font-size: 1.15rem;
  color: var(--black);
}
.processing-bar-container {
  width: 240px;
  height: 6px;
  background: var(--ice);
  border-radius: 99px;
  overflow: hidden;
}
.processing-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--deep));
  border-radius: 99px;
  transition: width 0.4s ease;
}
.processing-content p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── CHECKOUT SUCCESS OVERLAY ──────────────────────────── */
.checkout-success-overlay {
  position: absolute;
  inset: 0;
  background: var(--white);
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  overflow-y: auto;
}
.checkout-success-overlay.active {
  display: flex;
}
.success-content {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.success-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
  animation: checkPulse 2s infinite;
}
@keyframes checkPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.success-content h3 {
  font-size: 1.5rem;
  color: var(--navy);
}
.order-number-txt {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--ice);
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(0, 89, 187, 0.2);
}
.success-description {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.success-summary-box {
  width: 100%;
  background: var(--gray);
  border: 1px solid var(--border-clr);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}
.success-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.success-row span {
  color: var(--muted);
}
.success-row strong {
  color: var(--black);
}
.success-whatsapp-btn {
  width: 100%;
  padding: 15px 24px;
  font-size: 1rem;
  background: #25D366;
  border: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.success-whatsapp-btn:hover {
  background: #20BA5A;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

/* Responsive checkout & details adaptations */
@media (max-width: 820px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-visuals {
    border-right: none;
    border-bottom: 1px solid var(--border-clr);
    padding: 30px 20px;
  }
  .product-detail-info {
    padding: 30px 20px;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
    max-height: 80vh;
    overflow-y: auto;
  }
  .checkout-summary-col {
    border-right: none;
    border-bottom: 1px solid var(--border-clr);
    padding: 24px 20px;
    max-height: none;
    overflow-y: visible;
  }
  .checkout-form-col {
    padding: 24px 20px;
    max-height: none;
    overflow-y: visible;
  }
  .checkout-items-list {
    max-height: none;
  }
  .pix-instructions {
    flex-direction: column;
    text-align: center;
  }
  .pix-key-copy-row {
    flex-direction: column;
  }
}
/* Affiliate storefront disclosure */
.affiliate-disclosure {
  max-width: 1180px;
  margin: 28px auto;
  padding: 20px 24px;
  border: 1px solid rgba(255, 204, 0, .55);
  border-radius: 16px;
  background: #fff9dc;
  color: #173042;
  display: grid;
  gap: 7px;
  line-height: 1.45;
}
.affiliate-disclosure strong { font-size: 1.05rem; }
.affiliate-disclosure span { display: block; }
@media (max-width: 700px) {
  .affiliate-disclosure { margin: 18px 16px; padding: 17px; }
}

/* Personalized service banners */
.bento-section .bento-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(360px, auto);
}

.bento-section .card-vrf,
.bento-section .card-camaras {
  min-height: 360px;
  padding: clamp(28px, 4vw, 54px);
  isolation: isolate;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
  box-shadow: 0 18px 45px rgba(20, 63, 92, 0.16);
}

.bento-section .card-vrf {
  background-image:
    linear-gradient(90deg, rgba(239, 248, 255, .98) 0%, rgba(239, 248, 255, .91) 37%, rgba(239, 248, 255, .18) 67%, rgba(239, 248, 255, 0) 100%),
    url('../assets/bento/banner-instalacao-v2.webp');
}

.bento-section .card-camaras {
  background-image:
    linear-gradient(90deg, rgba(231, 245, 255, .98) 0%, rgba(231, 245, 255, .9) 37%, rgba(231, 245, 255, .16) 67%, rgba(231, 245, 255, 0) 100%),
    url('../assets/bento/banner-manutencao-v2.webp');
}

.bento-section .card-vrf::after,
.bento-section .card-camaras::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 89, 187, .2);
  pointer-events: none;
}

.bento-section .card-vrf .bento-card-content,
.bento-section .card-camaras .bento-card-content {
  max-width: 48%;
  align-items: flex-start;
}

.bento-section .card-vrf h3,
.bento-section .card-camaras h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.bento-section .bento-tag {
  padding: 6px 10px;
  border: 1px solid rgba(0, 89, 187, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px);
}

.bento-section .service-banner-btn {
  min-height: 48px;
  padding: 6px 7px 6px 19px;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: linear-gradient(135deg, #2f91cc 0%, #216fa5 100%);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 10px 24px rgba(32, 112, 166, .3), inset 0 1px 0 rgba(255, 255, 255, .2);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.bento-section .service-banner-btn i {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .96);
  color: var(--deep);
  font-size: 1.05rem;
  font-style: normal;
  transition: transform .25s ease;
}

.bento-section .service-banner-btn:hover {
  background: linear-gradient(135deg, #287faf 0%, #164f7a 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(24, 83, 125, .38), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.bento-section .service-banner-btn:hover i {
  transform: translateX(3px) rotate(-8deg);
}

.bento-section .service-banner-btn:focus-visible {
  outline: 3px solid rgba(0, 89, 187, .38);
  outline-offset: 4px;
}

@media (max-width: 920px) {
  .bento-section .bento-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .bento-section .card-vrf,
  .bento-section .card-camaras {
    min-height: 430px;
    align-items: flex-start;
    background-position: 68% center;
  }
  .bento-section .card-vrf,
  .bento-section .card-camaras {
    background-image: linear-gradient(180deg, rgba(239, 248, 255, .98) 0%, rgba(239, 248, 255, .9) 42%, rgba(239, 248, 255, .08) 76%), var(--service-banner);
  }
  .bento-section .card-vrf { --service-banner: url('../assets/bento/banner-instalacao-v2.webp'); }
  .bento-section .card-camaras { --service-banner: url('../assets/bento/banner-manutencao-v2.webp'); }
  .bento-section .card-vrf .bento-card-content,
  .bento-section .card-camaras .bento-card-content { max-width: 100%; height: auto; }
}

/* Color and type roles from DESIGN (Gela Facil).md. */
body { color: var(--black); font-size: 15px; line-height: 24px; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-title); letter-spacing: -0.01em; }
.hero-content :is(h1, h2) { font-size: 56px; font-weight: 700; line-height: 64px; letter-spacing: -0.02em; }
.hero-sub { font-size: 18px; line-height: 28px; letter-spacing: -0.005em; }
.section-title, .destaques .section-title { font-size: 40px; font-weight: 700; line-height: 48px; letter-spacing: -0.015em; }
.section-label { font-family: var(--font-body); font-size: 11px; font-weight: 600; line-height: 16px; letter-spacing: 0.05em; }
.btn-primary { background: linear-gradient(135deg, #0070ea, #0056c6); border-radius: 12px; box-shadow: inset 0 1px 1px rgba(255,255,255,.35), 0 8px 20px rgba(0,123,255,.35); }
:where(a, button, input, select, textarea):focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
@media (max-width: 600px) {
  .hero-content :is(h1, h2) { font-size: 36px; line-height: 44px; letter-spacing: -0.01em; }
  .section-title, .destaques .section-title { font-size: 28px; line-height: 36px; letter-spacing: -0.01em; }
}

/* Consistent alignment for text actions and their icons. */
:is(.btn-primary, .btn-ghost, .bento-btn, .bento-btn-sm) {
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  line-height: 20px;
  text-align: center;
  font-weight: 600;
  border-radius: 12px;
}
.btn-hero { min-height: 48px; }
:is(.btn-primary, .btn-ghost, .bento-btn, .bento-btn-sm) > :is(svg, i, .arrow) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  line-height: 1;
}
:is(.btn-cart-add, .carousel-control, .destaques-control, .clima-bebidas-control,
    .cart-float, .wa-float, .qty-btn, .cart-drawer-close, .modal-close-btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  text-align: center;
}
:is(.cart-drawer-close, .modal-close-btn) {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
:is(.cart-drawer-close, .modal-close-btn):hover { background: var(--ice); }
.qty-btn { width: 28px; height: 28px; }
:is(.stat-icon, .step-icon, .install-feature-icon, .option-icon,
    .destaque-icon, .bento-brand-icon, .service-icon, .filter-heading-icon, .tab-icon) {
  flex-shrink: 0;
  line-height: 1;
}
:is(.stat-icon, .step-icon, .install-feature-icon, .option-icon,
    .destaque-icon, .service-icon, .filter-heading-icon, .tab-icon,
    .btn-cart-add, .carousel-control, .clima-bebidas-control,
    .cart-float, .wa-float, .destaque-cta) > svg {
  display: block;
  flex-shrink: 0;
  margin: 0;
}
.payment-tab { justify-content: center; text-align: center; }
.payment-tab .tab-icon { display: flex; align-items: center; justify-content: center; }

/* Responsive safeguards: allow content to size tracks without clipping. */
html { scroll-padding-top: 110px; }
:where(.nav-container, .hero-content, .products-header, .product-info,
  .bento-card-content, .footer-col, .footer-brand, .stat-text) { min-width: 0; }
:where(.btn-primary, .btn-ghost, .bento-btn, .bento-btn-sm) { max-width: 100%; white-space: normal; overflow-wrap: anywhere; }
.affiliate-disclosure { width: calc(100% - 32px); }
.clima-bebidas-header .header-left { min-width: 0; }
.cart-drawer { width: min(420px, 100%); max-height: 100dvh; }
:where(.footer-contact, .affiliate-disclosure, .product-name) { overflow-wrap: anywhere; }
@media (max-width: 1024px) {
  .hero-carousel { height: auto; min-height: 100svh; }
  .carousel-track { display: grid; height: auto; min-height: 100svh; }
  .carousel-slide { position: relative; inset: auto; grid-area: 1 / 1; height: auto; min-width: 0; padding: 132px 7vw 104px; }
  .hero-content { width: 100%; max-width: 680px; }
  .hero-content :is(h1, h2) { font-size: clamp(32px, 5.5vw, 52px); line-height: 1.15; }
  .hero-sub { font-size: clamp(16px, 2vw, 18px); line-height: 1.6; }
  .hero-carousel > .carousel-control { top: auto; bottom: 24px; transform: none; }
  .nav-links { visibility: hidden; max-height: calc(100dvh - 116px); overflow-y: auto; overscroll-behavior: contain; }
  .nav-links.active { visibility: visible; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; min-height: 44px; }
  .menu-toggle { width: 44px; height: 44px; padding: 11px 8px; flex-shrink: 0; }
  .bento-section .card-vrf .bento-card-content,
  .bento-section .card-camaras .bento-card-content { max-width: 65%; }
}
@media (max-width: 600px) {
  :root { --page-gutter: 16px; }
  #navbar { top: 12px; width: calc(100% - 24px); height: 64px; }
  .nav-container { padding-inline: 16px; gap: 12px; }
  .hero-ctas { flex-wrap: wrap; }
  .hero-ctas .btn-hero { width: 100%; padding: 14px 16px; }
  .stats-container { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .stat-item { min-width: 0; padding: 0; flex-direction: column; text-align: center; }
  .stat-text strong { font-size: 1rem; overflow-wrap: anywhere; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .footer-bottom { flex-wrap: wrap; gap: 12px; text-align: center; }
  .clima-bebidas-header .header-right { width: 100%; min-width: 0; }
  .bento-section .card-vrf .bento-card-content,
  .bento-section .card-camaras .bento-card-content { max-width: 100%; }
  .bento-section .service-banner-btn { gap: 8px; }
  .cart-drawer-header, .cart-drawer-body, .cart-drawer-footer { padding-inline: 16px; }
  .wa-float { left: 16px; bottom: max(16px, env(safe-area-inset-bottom)); }
  .cart-float { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); }
  input:not([type=checkbox]):not([type=radio]), select, textarea { font-size: 16px; }
}
@media (hover: none), (pointer: coarse) {
  .view-details-btn { opacity: 1; transform: none; }
  .product-hover-overlay { opacity: 1; background: transparent; backdrop-filter: none; align-items: flex-end; padding-bottom: 12px; }
  .qty-btn { width: 44px; height: 44px; }
}

/* Affiliate storefront: retired controls stay hidden before JavaScript loads. */
#cart-float-btn, #cart-drawer, #cart-drawer-overlay, #modal-cart-add-btn,
.rating-summary, .product-rating { display: none !important; }
.product-card:focus-visible, .destaque-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.retired-checkout { max-width: 720px; margin: 10vh auto; padding: 24px; }
.retired-checkout p { margin-block: 20px; }
.retired-checkout .btn-primary, .retired-checkout .btn-ghost { margin: 8px 8px 8px 0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Service banners inspired by content.png. */
.bento-section .card-vrf, .bento-section .card-camaras { padding: clamp(24px, 2.6vw, 38px); border-radius: 26px; background-position: center; box-shadow: 0 12px 32px rgba(0,71,171,.09); }
.bento-section .card-vrf { background-image: url('../assets/bento/banner-instalacao-v2.webp'); }
.bento-section .card-camaras { background-image: url('../assets/bento/banner-manutencao-v2.webp'); }
.bento-section .card-vrf .bento-card-content, .bento-section .card-camaras .bento-card-content { max-width: 51%; }
.bento-section .bento-tag { color: #0059d6; font-size: 10px; letter-spacing: .06em; border-color: #bcdcff; background: rgba(245,251,255,.9); }
.bento-section .card-vrf h3, .bento-section .card-camaras h3 { margin: 16px 0 12px; color: #07245b; font-size: clamp(25px,2.3vw,34px); font-weight: 800; line-height: 1.08; letter-spacing: -.035em; }
.bento-section h3 .service-accent { color: #0060e6; }
.bento-section .service-description { margin: 0 0 20px; color: #30445e; font-size: 14px; line-height: 1.5; }
.bento-section .service-banner-btn { background: linear-gradient(135deg,#079de0,#0052d4); box-shadow: 0 10px 24px rgba(0,103,215,.25); }
@media (max-width: 560px) {
 .bento-section .card-vrf, .bento-section .card-camaras { min-height: 540px; padding: 26px; background-size: auto 65%; background-position: right bottom; background-color: #eff8ff; background-image: linear-gradient(180deg,#eff8ff 0%,rgba(239,248,255,.95) 12%,rgba(239,248,255,0) 55%),var(--service-banner); }
 .bento-section .card-vrf .bento-card-content, .bento-section .card-camaras .bento-card-content { max-width: 100%; }
 .bento-section .card-vrf h3, .bento-section .card-camaras h3 { max-width: 310px; font-size: 30px; }
 .bento-section .service-description { max-width: 280px; }
}
