:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, .10);

  --green: #16a34a;
  --green-2: #22c55e;

  --danger: #ff0000;
  --danger-2: #ef4444;

  --radius: 16px;
  --shadow: 0 14px 40px rgba(2, 6, 23, .14);

  --container: 1160px;
  --padX: 22px;
  --headerH: 76px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   Buttons
   ========================= */
.btn,
.pCard__btn,
.about__btn,
.cta__btn,
.footer__btn,
.tCard__btn {
  --btn-height: 46px;
  --btn-px: 18px;
  --btn-radius: 12px;
  --btn-bg: linear-gradient(180deg, rgba(255,255,255,.94), rgba(241,245,249,.84));
  --btn-bd: rgba(15, 23, 42, .14);
  --btn-tx: rgba(15, 23, 42, .96);
  --btn-sh: 0 14px 34px rgba(2, 6, 23, .10);
  --btn-sh-hover: 0 18px 46px rgba(2, 6, 23, .14);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--btn-height);
  padding: 0 var(--btn-px);
  border-radius: var(--btn-radius);

  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  color: var(--btn-tx);

  font-weight: 850;
  letter-spacing: .2px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--btn-sh);

  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease, background .14s ease, border-color .14s ease;
}

.btn:hover,
.pCard__btn:hover,
.about__btn:hover,
.cta__btn:hover,
.footer__btn:hover,
.tCard__btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--btn-sh-hover);
  filter: brightness(1.03);
}

.btn:active,
.pCard__btn:active,
.about__btn:active,
.cta__btn:active,
.footer__btn:active,
.tCard__btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn:focus-visible,
.pCard__btn:focus-visible,
.about__btn:focus-visible,
.cta__btn:focus-visible,
.footer__btn:focus-visible,
.tCard__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, .12), var(--btn-sh-hover);
}

.btn__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__icon svg {
  width: 18px;
  height: 18px;
}

.btn--whats {
  --btn-tx: rgba(255, 255, 255, .98);
  --btn-bd: rgba(21, 128, 61, .62);
  --btn-bg:
    linear-gradient(180deg, rgba(34, 197, 94, .96), rgba(21, 128, 61, .90)),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  --btn-sh:
    0 16px 40px rgba(22, 163, 74, .24),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  --btn-sh-hover:
    0 18px 46px rgba(22, 163, 74, .28),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .96);
}

.btn--whats:hover {
  border-color: rgba(21, 128, 61, .78);
  filter: brightness(1.05);
}

.btn--whats:focus-visible {
  box-shadow:
    0 0 0 4px rgba(34, 197, 94, .22),
    0 18px 46px rgba(22, 163, 74, .20);
}

.btn--danger {
  --btn-tx: rgba(255, 255, 255, .98);
  --btn-bd: rgba(185, 28, 28, .64);
  --btn-bg:
    linear-gradient(180deg, rgba(239, 68, 68, .96), rgba(185, 28, 28, .90)),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  --btn-sh:
    0 16px 40px rgba(220, 38, 38, .22),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  --btn-sh-hover:
    0 18px 46px rgba(220, 38, 38, .26),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .98);
}

.btn--danger:hover {
  border-color: rgba(185, 28, 28, .82);
  filter: brightness(1.05);
}

.btn--danger:focus-visible {
  box-shadow:
    0 0 0 4px rgba(239, 68, 68, .20),
    0 18px 46px rgba(220, 38, 38, .18);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .btn,
  .pCard__btn,
  .about__btn,
  .cta__btn,
  .footer__btn,
  .tCard__btn {
    background: rgba(255, 255, 255, .94);
    border-color: rgba(15, 23, 42, .12);
  }

  .btn--whats { background: rgba(21, 128, 61, .94); }
  .btn--danger { background: rgba(185, 28, 28, .94); }
}

/* =========================
   Header
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 10px 26px rgba(2, 6, 23, .06);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padX);
  height: var(--headerH);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}

.brand__logo {
  width: 152px;
  height: 44px;
  object-fit: contain;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;

  background: rgba(2, 6, 23, .04);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 999px;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;

  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(15, 23, 42, .92);

  transition: transform .14s ease, background .14s ease, box-shadow .14s ease, opacity .14s ease;
  opacity: .92;
}

.nav__link:hover {
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 24px rgba(2, 6, 23, .08);
  opacity: 1;
}

.header__actions,
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 230px;
}

.header__insta {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 252, .92);
  border: 1px solid rgba(15, 23, 42, .16);
  box-shadow: 0 10px 24px rgba(2, 6, 23, .08);
  transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
  overflow: hidden;
}

.header__insta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 30px rgba(2, 6, 23, .12);
}

.header__insta-img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  display: block;
}

.header .btn--whats,
.header__cta .btn--whats {
  --btn-height: 48px;
  --btn-px: 18px;
  --btn-radius: 12px;
  --btn-tx: rgba(255, 255, 255, .98);
  --btn-bd: rgba(21, 128, 61, .78);
  --btn-bg:
    linear-gradient(180deg, rgba(34, 197, 94, .98), rgba(21, 128, 61, .92)),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  --btn-sh:
    0 18px 42px rgba(22, 163, 74, .24),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  --btn-sh-hover:
    0 20px 48px rgba(22, 163, 74, .28),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

/* Menu mobile */
.navToggle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .16);
  background: rgba(248, 250, 252, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, .08);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
}

.navToggle:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 30px rgba(2, 6, 23, .12);
}

.navToggle__icon {
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, .92);
  border-radius: 999px;
  position: relative;
  display: block;
}

.navToggle__icon::before,
.navToggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, .92);
  border-radius: 999px;
}

.navToggle__icon::before { top: -6px; }
.navToggle__icon::after { top: 6px; }

.mNav {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.mNav[aria-hidden="false"] { display: block; }

.mNav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mNav__panel {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  max-width: 520px;
  margin-left: auto;

  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, 0.89);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);

  transform: translateY(-10px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}

.mNav[aria-hidden="false"] .mNav__panel {
  transform: translateY(0);
  opacity: 1;
}

.mNav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.mNav__title {
  font-weight: 850;
  letter-spacing: .2px;
  color: rgba(255, 255, 255, .92);
}

.mNav__close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .92);
  cursor: pointer;
}

.mNav__body {
  padding: 12px 14px 14px;
  display: grid;
  gap: 10px;
}

.mNav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 50px;
  padding: 0 14px;
  border-radius: 14px;

  color: rgba(255, 255, 255, .92);
  background: rgba(0, 0, 0, 0.555);
  border: 1px solid rgba(255, 255, 255, .10);

  font-weight: 750;
  letter-spacing: .2px;
  transition: transform .14s ease, filter .14s ease, background .14s ease;
}

.mNav__link:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  background: rgba(255, 255, 255, .09);
}

.mNav__cta { margin-top: 6px; }

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  background: #fff;
  min-height: calc(100vh - var(--headerH));
  display: grid;
  align-items: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, .78) 0%, rgba(2, 6, 23, .38) 56%, rgba(2, 6, 23, .20) 100%),
    url("images/bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 6vw, 92px) var(--padX);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 420px);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}

.hero__left {
  padding: 0 0 12px;
  max-width: 680px;
  transform: translateY(-20px);
}

.hero__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: .98;
  letter-spacing: -.02em;
  max-width: 10ch;
  text-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.hero__subtitle {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.65;
  max-width: 44ch;
  text-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.hero__badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 28px 0 0;
  overflow: visible;
  padding-bottom: 0;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.hero__badges::-webkit-scrollbar { height: 6px; }

.hero__badges::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .25);
  border-radius: 999px;
}

.badge {
  position: relative;
  flex: 0 0 auto;
  white-space: normal;

  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 0;
  padding: 12px 14px 12px 18px;
  border-radius: 16px;

  color: rgba(255, 255, 255, .90);
  background:
    linear-gradient(180deg, rgba(7, 11, 21, .68), rgba(15, 23, 42, .56));
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-weight: 780;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .02em;
  box-shadow:
    0 16px 26px rgba(0, 0, 0, .16),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  opacity: 1;
  max-width: 34ch;
}

.badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(248, 113, 113, .98), rgba(185, 28, 28, .92));
  box-shadow: 0 0 18px rgba(239, 68, 68, .22);
}

.badge__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 113, 113, .92);
  flex: 0 0 auto;
  margin-top: 1px;
}

.badge__icon svg { width: 22px; height: 22px; }

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__right {
  width: min(100%, 396px);
  justify-self: end;
}

/* =========================
   Form Card
   ========================= */
.formCard {
  border-radius: 22px;
  overflow: hidden;
}

.formCard--glass {
  background:
    linear-gradient(180deg, rgba(7, 11, 21, .88), rgba(15, 23, 42, .92));
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  box-shadow:
    0 24px 64px rgba(2, 6, 23, .30),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

.formCard__head {
  padding: 18px 18px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.formCard__title {
  margin: 0;
  font-weight: 950;
  letter-spacing: .06em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(248, 250, 252, .84);
}

.formCard__subtitle {
  margin: 8px 0 0;
  color: rgba(226, 232, 240, .92);
  line-height: 1.5;
  font-size: 16px;
  font-weight: 700;
  max-width: none;
}

.formCard__form {
  padding: 16px 16px 16px;
  display: grid;
  gap: 10px;
}

.formCard__choiceGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.formCard__choiceGrid .pillGroup__row {
  grid-template-columns: 1fr;
}

.field { display: block; }

.field__input {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .96);
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  transition: border-color .12s ease, box-shadow .12s ease, background .12s ease;
}

.field__input::placeholder { color: rgba(226, 232, 240, .58); }

.field__input:focus {
  border-color: rgba(248, 113, 113, .44);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .18);
}

.field__textarea {
  min-height: 84px;
  resize: vertical;
}

/* =========================
   Pill Radios
   ========================= */
.pillGroup {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  padding: 10px;
}

.pillGroup__label {
  margin: 0 0 8px;
  color: rgba(248, 250, 252, .82);
  font-weight: 850;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pillGroup__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pill { position: relative; display: block; }

.pill__input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.pill__btn {
  min-height: 40px;
  width: 100%;
  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(15, 23, 42, .62);
  color: rgba(255, 255, 255, .96);
  font-size: 13px;

  font-weight: 900;
  cursor: pointer;
  user-select: none;

  transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
}

.pill__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .40);
  background: transparent;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .25);
}

.pill:hover .pill__btn {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .20);
  background: rgba(15, 23, 42, .74);
}

.pill__input:checked + .pill__btn {
  border-color: rgba(239, 68, 68, .72);
  background: linear-gradient(180deg, rgba(239, 68, 68, .44), rgba(185, 28, 28, .28));
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .24);
}

.pill__input:checked + .pill__btn .pill__dot {
  border-color: rgb(255, 255, 255);
  background: rgba(255, 0, 0, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 1, 1, 0.37);
}

.pill__input:focus-visible + .pill__btn {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .14), 0 0 0 7px rgba(59, 130, 246, .16);
}

.btn.btn--block {
  min-height: 46px;
  font-size: 14px;
  letter-spacing: .03em;
}

/* =========================
   Produtos
   ========================= */
.prod {
  background: #fff;
  padding: clamp(44px, 5vw, 74px) 0;
}

.prod__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padX);
}

.prod__head {
  margin: 0 0 28px;
  max-width: 72ch;
  display: grid;
  gap: 12px;
  position: relative;
  padding-left: 2px;
}

.prod__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;

  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;

  color: rgba(15, 23, 42, .78);
  background: rgba(220, 38, 38, .06);
  border: 1px solid rgba(220, 38, 38, .16);
  box-shadow: 0 10px 26px rgba(220, 38, 38, .08);
}

.prod__kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--danger), rgba(220, 38, 38, .22));
  box-shadow: 0 6px 16px rgba(220, 38, 38, .22);
}

.prod__title {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: .2px;
  color: rgba(15, 23, 42, .98);
  position: relative;
  padding-bottom: 10px;
}

.prod__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: min(320px, 72%);
  height: 4px;
  border-radius: 999px;

  background: linear-gradient(90deg, rgba(239, 68, 68, .65), rgba(239, 68, 68, .10));
  box-shadow: 0 10px 28px rgba(239, 68, 68, .18);
}

.prod__subtitle {
  margin: 0;
  font-size: 16.2px;
  line-height: 1.7;
  color: rgba(15, 23, 42, .70);
  max-width: 66ch;
}

.prod__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.prod__more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.prod__moreBtn {
  min-width: 220px;
}

.prod__grid--more {
  margin-top: 22px;
}

.prod__grid--more[hidden] {
  display: none !important;
}

.pCard {
  position: relative;
  min-height: 610px;
  border-radius: 24px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(15, 23, 42, .14);
  box-shadow:
    0 24px 60px rgba(2, 6, 23, .14),
    0 10px 24px rgba(2, 6, 23, .08);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding-top: 352px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pCard > .corner,
.pCard .corner,
.pCard .ribbon,
.pCard .badgeCorner {
  display: none !important;
}

.pCard::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 336px;
  border-radius: 18px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .6s ease;
  filter: saturate(1.06) contrast(1.02);
  z-index: -2;
}

.pCard::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 336px;
  border-radius: 18px;
  background: linear-gradient(180deg,
    rgba(2, 6, 23, .02) 0%,
    rgba(2, 6, 23, .08) 42%,
    rgba(2, 6, 23, .42) 100%);
  z-index: -1;
}

.pCard:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 68, 68, .22);
  box-shadow:
    0 30px 76px rgba(2, 6, 23, .18),
    0 12px 26px rgba(239, 68, 68, .10);
}

.pCard:hover::before { transform: scale(1.06); }

.pCard__body {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 244px;
  padding: 28px 22px 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(11,18,32,.90), rgba(7,11,21,.98));
}

.pCard__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 68, 68, .9), rgba(239, 68, 68, .18));
  box-shadow: 0 10px 22px rgba(239, 68, 68, .18);
}

.pCard__body::after {
  content: none;
}

.pCard__title {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .98);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .2px;
  line-height: 1.15;
}

.pCard__text {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  font-size: 15px;
}

.pCard__btn {
  --btn-tx: rgba(255, 255, 255, .98);
  --btn-bd: rgba(185, 28, 28, .64);
  --btn-bg:
    linear-gradient(180deg, rgba(239, 68, 68, .94), rgba(185, 28, 28, .88)),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  --btn-sh:
    0 16px 40px rgba(220, 38, 38, .22),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  --btn-sh-hover:
    0 18px 46px rgba(220, 38, 38, .26),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  min-width: 148px;
}

.pCard__btn:hover {
  border-color: rgba(185, 28, 28, .82);
  filter: brightness(1.05);
}

.prod__grid .tCard {
  position: relative;
  min-height: 610px;
  border-radius: 24px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(15, 23, 42, .14);
  box-shadow:
    0 24px 60px rgba(2, 6, 23, .14),
    0 10px 24px rgba(2, 6, 23, .08);
  display: flex;
  align-items: flex-end;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.prod__grid .tCard:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 68, 68, .22);
  box-shadow:
    0 30px 76px rgba(2, 6, 23, .18),
    0 12px 26px rgba(239, 68, 68, .10);
}

.prod__grid .tCard__media {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 336px;
  border-radius: 18px;
  overflow: hidden;
}

.prod__grid .tCard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(2, 6, 23, .02) 0%,
    rgba(2, 6, 23, .08) 42%,
    rgba(2, 6, 23, .42) 100%);
}

.prod__grid .tCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
  filter: saturate(1.06) contrast(1.02);
}

.prod__grid .tCard:hover .tCard__img {
  transform: scale(1.06);
}

.prod__grid .tCard__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 244px;
  padding: 28px 22px 22px;
  margin-top: 352px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(11,18,32,.90), rgba(7,11,21,.98));
}

.prod__grid .tCard__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 68, 68, .9), rgba(239, 68, 68, .18));
  box-shadow: 0 10px 22px rgba(239, 68, 68, .18);
}

.prod__grid .pCard .tSpec::before {
  content: none;
}

.prod__grid .tCard__content::after {
  content: none;
}

.prod__grid .tCard__title,
.prod__grid .pCard .tCard__title {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .98);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .2px;
  line-height: 1.15;
  text-transform: none;
}

.prod__grid .tSpec,
.prod__grid .tSpec--dark {
  margin: 0 0 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  display: grid;
  gap: 10px;
}

.prod__grid .tSpec__k {
  color: rgba(255, 255, 255, .72);
}

.prod__grid .tSpec__v {
  color: rgba(255, 255, 255, .96);
}

.prod__grid .tCard__btn {
  --btn-tx: rgba(255, 255, 255, .98);
  --btn-bd: rgba(185, 28, 28, .64);
  --btn-bg:
    linear-gradient(180deg, rgba(239, 68, 68, .94), rgba(185, 28, 28, .88)),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  --btn-sh:
    0 16px 40px rgba(220, 38, 38, .22),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  --btn-sh-hover:
    0 18px 46px rgba(220, 38, 38, .26),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  min-width: 148px;
}

/* =========================
   Sobre
   ========================= */
.about {
  background: #fff;
  padding: clamp(44px, 5vw, 74px) 0;
}

.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padX);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.about__media {
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about__img {
  width: min(520px, 100%);
  height: auto;
  display: block;
  border-radius: 22px;
  filter: drop-shadow(0 18px 35px rgba(2, 6, 23, .18));
  transform: translateX(-8px);
}

.about__content {
  max-width: 68ch;
  display: grid;
  gap: 14px;
  position: relative;
  padding-left: 2px;
}

.about__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;

  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;

  color: rgba(15, 23, 42, .78);
  background: rgba(220, 38, 38, .06);
  border: 1px solid rgba(220, 38, 38, .16);
  box-shadow: 0 10px 26px rgba(220, 38, 38, .08);
}

.about__kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--danger), rgba(220, 38, 38, .22));
  box-shadow: 0 6px 16px rgba(220, 38, 38, .22);
}

.about__title {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: .2px;
  color: rgba(15, 23, 42, .98);
  position: relative;
  padding-bottom: 10px;
}

.about__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: min(300px, 70%);
  height: 4px;
  border-radius: 999px;

  background: linear-gradient(90deg, rgba(239, 68, 68, .65), rgba(239, 68, 68, .10));
  box-shadow: 0 10px 28px rgba(239, 68, 68, .18);
}

.about__text {
  margin: 0;
  font-size: 15.9px;
  line-height: 1.75;
  color: rgba(15, 23, 42, .70);
  max-width: 66ch;
}

.about__btn {
  --btn-tx: rgba(255, 255, 255, .98);
  --btn-bd: rgba(185, 28, 28, .70);
  --btn-bg:
    linear-gradient(180deg, rgba(239, 68, 68, .98), rgba(185, 28, 28, .92)),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  --btn-sh:
    0 16px 40px rgba(220, 38, 38, .24),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  --btn-sh-hover:
    0 18px 46px rgba(220, 38, 38, .28),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  margin-top: 6px;
  justify-self: start;
}

.about__btn:hover {
  border-color: rgba(185, 28, 28, .86);
  filter: brightness(1.06);
}

/* =========================
   FAQ
   ========================= */
.faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 420px at 0% 0%, rgba(239, 68, 68, .14), transparent 60%),
    radial-gradient(900px 380px at 100% 100%, rgba(248, 113, 113, .10), transparent 55%),
    linear-gradient(180deg, #09111f 0%, #0f172a 100%);
  padding: clamp(52px, 6vw, 86px) 0;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent);
  pointer-events: none;
}

.faq__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padX);

  display: grid;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.faq__head {
  margin: 0 0 30px;
  max-width: 760px;
  width: 100%;
  display: grid;
  gap: 14px;
  text-align: left;
}

.faq__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;

  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;

  color: rgba(255, 255, 255, .88);
  background: rgba(239, 68, 68, .14);
  border: 1px solid rgba(248, 113, 113, .20);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .16);

  justify-self: start;
}

.faq__kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(248, 113, 113, .98), rgba(248, 113, 113, .28));
  box-shadow: 0 6px 16px rgba(248, 113, 113, .24);
}

.faq__title {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: .2px;
  color: rgba(255, 255, 255, .98);
}

.faq__subtitle {
  margin: 0;
  font-size: 16.2px;
  line-height: 1.7;
  color: rgba(226, 232, 240, .72);
  max-width: 62ch;
  justify-self: start;
}

.faq__list {
  width: 100%;
  max-width: 920px;
  display: grid;
  gap: 14px;
  margin: 0;
}

.faqItem {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(15, 23, 42, .76), rgba(15, 23, 42, .92));
  box-shadow: 0 20px 48px rgba(0, 0, 0, .18);
  overflow: hidden;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease, background .14s ease;
}

.faqItem::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(248, 113, 113, .96), rgba(185, 28, 28, .92));
  box-shadow: 0 0 0 1px rgba(255,255,255,.04);
}

.faqItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .24);
  border-color: rgba(248, 113, 113, .18);
}

.faqItem__q {
  cursor: pointer;
  list-style: none;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;

  padding: 22px 22px 22px 26px;
  font-weight: 950;
  letter-spacing: .12px;
  color: rgba(255, 255, 255, .96);

  text-align: left;
}

.faqItem__q::-webkit-details-marker { display: none; }

.faqItem__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.faqItem__icon svg { width: 18px; height: 18px; }

.faqItem[open] {
  border-color: rgba(248, 113, 113, .24);
  box-shadow: 0 30px 74px rgba(0, 0, 0, .26);
}

.faqItem[open] .faqItem__icon {
  background: rgba(239, 68, 68, .16);
  border-color: rgba(248, 113, 113, .24);
}

.faqItem[open] .faqItem__icon svg {
  transform: rotate(180deg);
  transition: transform .18s ease;
}

.faqItem__a {
  padding: 0 22px 22px 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: left;
}

.faqItem__a p {
  margin: 14px 0 0;
  max-width: 66ch;

  color: rgba(226, 232, 240, .76);
  line-height: 1.75;
  font-size: 15.6px;
}

.faq__footer {
  margin: 20px 0 0;
  color: rgba(226, 232, 240, .72);
  font-size: 15.5px;
  text-align: left;
  max-width: 920px;
  width: 100%;
}

.faq__link {
  color: rgba(248, 113, 113, .98);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__link:hover { filter: brightness(1.05); }

/* Responsive */
@media (max-width: 560px) {
  .faq__head,
  .faq__footer {
    text-align: center;
  }

  .faq__kicker,
  .faq__subtitle {
    justify-self: center;
  }

  .faqItem__q {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    align-items: center;
    gap: 12px;
    padding: 18px 18px 18px 22px;
  }

  .faqItem__a {
    padding: 0 18px 18px 22px;
  }
}

/* =========================
   Reviews Widget
   ========================= */
.engagementBand {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(920px 320px at 100% 0%, rgba(239, 68, 68, .08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.engagementBand::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .35;
  pointer-events: none;
}

.reviews {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: clamp(44px, 5vw, 74px) 0;
}

.reviews__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padX);
  display: grid;
  gap: 22px;
}

.reviews__head {
  max-width: 72ch;
  display: grid;
  gap: 10px;
}

.reviews__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 23, 42, .78);
  background: rgba(220, 38, 38, .06);
  border: 1px solid rgba(220, 38, 38, .16);
  box-shadow: 0 10px 26px rgba(220, 38, 38, .08);
}

.reviews__kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--danger), rgba(220, 38, 38, .22));
  box-shadow: 0 6px 16px rgba(220, 38, 38, .22);
}

.reviews__title {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: .2px;
  color: rgba(15, 23, 42, .98);
}

.reviews__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(15, 23, 42, .70);
  max-width: 64ch;
}

.reviews__widget {
  position: relative;
  border-radius: 28px;
  padding: clamp(14px, 2vw, 20px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.98));
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow:
    0 24px 60px rgba(2, 6, 23, .08),
    inset 0 1px 0 rgba(255,255,255,.65);
}

.reviews__widget::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(239, 68, 68, .20), rgba(255,255,255,0), rgba(15, 23, 42, .06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.reviews__widget > [class^="elfsight-app-"],
.reviews__widget > [class*=" elfsight-app-"] {
  width: 100%;
  min-height: 260px;
}

/* =========================
   CTA
   ========================= */
.cta {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: clamp(52px, 6vw, 88px) 0;
}

.cta::before {
  content: none;
}

.cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padX);
  position: relative;
  z-index: 1;
}

.cta__box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, .08);
  background:
    linear-gradient(135deg, rgba(239, 68, 68, .10), rgba(255,255,255,.88) 28%, rgba(248,250,252,.98) 100%);
  box-shadow:
    0 24px 60px rgba(2, 6, 23, .10),
    inset 0 1px 0 rgba(255, 255, 255, .68);

  padding: clamp(24px, 4vw, 36px);
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 22px;
  align-items: center;
}

.cta__box::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, .18), rgba(239, 68, 68, 0) 70%);
  pointer-events: none;
}

.cta__box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(248, 113, 113, .98), rgba(185, 28, 28, .92));
  box-shadow: 0 0 24px rgba(239, 68, 68, .22);
}

.cta__content {
  max-width: 70ch;
  display: grid;
  gap: 12px;
}

.cta__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 23, 42, .66);
}

.cta__kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 68, 68, .92), rgba(239, 68, 68, .20));
  box-shadow: 0 6px 18px rgba(239, 68, 68, .22);
}

.cta__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: .2px;
  color: rgba(15, 23, 42, .98);
  max-width: 15ch;
}

.cta__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(15, 23, 42, .70);
  max-width: 56ch;
}

.cta__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cta__btn {
  --btn-height: 52px;
  --btn-px: 22px;
  --btn-radius: 14px;
  --btn-tx: rgba(255, 255, 255, .98);
  --btn-bd: rgba(185, 28, 28, .70);
  --btn-bg:
    linear-gradient(180deg, rgba(239, 68, 68, .98), rgba(185, 28, 28, .92)),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  --btn-sh:
    0 20px 44px rgba(220, 38, 38, .26),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  --btn-sh-hover:
    0 24px 54px rgba(220, 38, 38, .30),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  min-width: 220px;
  font-size: 15px;
  letter-spacing: .04em;
}

.cta__btn:hover {
  border-color: rgba(185, 28, 28, .86);
  filter: brightness(1.06);
}

/* =========================
   Footer
   ========================= */
.footer {
  position: relative;
  overflow: hidden;
  background: #07090f;
  color: rgba(255, 255, 255, .86);
  padding: 48px 0 22px;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padX);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.footer__brand { max-width: 52ch; }

.footer__logo {
  width: 160px;
  height: auto;
  display: block;
  filter: brightness(1.02);
}

.footer__desc {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  font-size: 14.8px;
}

.footer__title {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .96);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.footer__links,
.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer__link {
  color: rgba(255, 255, 255, .82);
  font-size: 14.8px;
  line-height: 1.5;
  transition: color .12s ease, opacity .12s ease;
}

.footer__link:hover { color: rgba(255, 255, 255, .98); }

.footer__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.footer__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .92;
  margin-top: 2px;
}

.footer__icon svg { width: 18px; height: 18px; }

.footer__text {
  color: rgba(255, 255, 255, .72);
  font-size: 14.8px;
  line-height: 1.6;
}

.footer__btn {
  --btn-tx: rgba(255, 255, 255, .98);
  --btn-bd: rgba(185, 28, 28, .64);
  --btn-bg:
    linear-gradient(180deg, rgba(239, 68, 68, .94), rgba(185, 28, 28, .88)),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  --btn-sh:
    0 16px 40px rgba(220, 38, 38, .22),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  --btn-sh-hover:
    0 18px 46px rgba(220, 38, 38, .26),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.footer__btn:hover {
  border-color: rgba(185, 28, 28, .82);
  filter: brightness(1.05);
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 13.5px;
}

/* =========================
   Tech Cards
   ========================= */
.techCards {
  background: #fff;
  padding: clamp(44px, 5vw, 74px) 0;
}

.techCards__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padX);
}

.techCards__head {
  margin: 0 0 24px;
  max-width: 72ch;
  display: grid;
  gap: 10px;
}

.techCards__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 23, 42, .72);
}

.techCards__kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--danger), rgba(220, 38, 38, .25));
}

.techCards__title {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.12;
  letter-spacing: .2px;
  color: rgba(15, 23, 42, .98);
}

.techCards__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15, 23, 42, .70);
}

.techCards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.tCard {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 16px 44px rgba(2, 6, 23, .08);
  transition: transform .14s ease, box-shadow .14s ease;
}

.tCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(2, 6, 23, .12);
}

.tCard__media {
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  height: 230px;
}

.tCard__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(2, 6, 23, .14));
}

.tCard__content {
  padding: 16px 16px 18px;
  display: grid;
  gap: 12px;
}

.tCard__title {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .2px;
  color: rgba(15, 23, 42, .96);
  text-transform: uppercase;
}

.tSpec {
  margin: 0;
  padding: 12px;
  border-radius: 14px;
  background: rgba(2, 6, 23, .03);
  border: 1px solid rgba(15, 23, 42, .10);
  display: grid;
  gap: 10px;
}

.tSpec__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
}

.tSpec__k {
  margin: 0;
  color: rgba(15, 23, 42, .70);
  font-size: 13.5px;
  line-height: 1.3;
}

.tSpec__v {
  margin: 0;
  color: rgba(15, 23, 42, .95);
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 13.8px;
  text-align: right;
  white-space: nowrap;
}

.tCard__btn {
  --btn-height: 44px;
  --btn-px: 16px;
  --btn-radius: 12px;
  --btn-bg: linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(2, 6, 23, .94));
  --btn-bd: rgba(148, 163, 184, .16);
  --btn-tx: #fff;
  --btn-sh: 0 14px 30px rgba(2, 6, 23, .16);
  --btn-sh-hover: 0 18px 36px rgba(2, 6, 23, .20);
  width: fit-content;
}

.tCard__btn:hover {
  filter: brightness(1.05);
}

/* =========================
   Whats Floating
   ========================= */
.wFloat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  width: 62px;
  height: 62px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
  overflow: hidden;
  padding: 0;
}

.wFloat:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 22px 60px rgba(2, 6, 23, .26);
}

.wFloat:active { transform: translateY(0); }

.wFloat__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   Lead Modal
   ========================= */
.leadModal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  overflow-y: auto;
  padding: 18px 0;
}

.leadModal[aria-hidden="false"] { display: block; }

.leadModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .72);
  backdrop-filter: blur(2px);
}

.leadModal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 24px));
  margin: 18px auto;
  padding: 0;
  max-height: calc(100dvh - 36px);
}

.leadModal__card {
  border-radius: 18px;
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
}

.leadModal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 10px;

  border: 1px solid rgba(255,255,255,.26);
  background: rgba(15, 23, 42, .72);
  color: rgba(255,255,255,.96);
  box-shadow: 0 12px 28px rgba(2, 6, 23, .22);

  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.leadModal__close:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, .84);
  border-color: rgba(255,255,255,.38);
  filter: brightness(1.06);
}

body.is-modal-open { overflow: hidden; }

/* =========================
   Footer - Copyright
   ========================= */
.footer__divider {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 14px 0 0;
}

.footer__copy-left {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 13.5px;
  line-height: 1.5;
  letter-spacing: .1px;
}

.footer__copy-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.footer__pura-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  padding: 0 12px;
  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  transition: transform .14s ease, filter .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
}

.footer__pura-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .24);
}

.footer__pura-link:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.footer__pura-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .22), 0 18px 52px rgba(0, 0, 0, .24);
}

.footer__pura-logo {
  width: 118px;
  height: auto;
  display: block;
  opacity: .92;
  transition: opacity .14s ease, transform .14s ease;
}

.footer__pura-link:hover .footer__pura-logo {
  opacity: 1;
  transform: translateY(-.5px);
}

/* Responsive */
@media (max-width: 680px) {
  .footer__copy {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer__copy-right {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .prod__grid,
  .techCards__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .pCard { height: 540px; }

  .about__grid { grid-template-columns: 1fr; }

  .cta__box { grid-template-columns: 1fr; }
  .cta__actions { justify-content: flex-start; }

  .tCard__media { height: 240px; }
  
}

@media (max-width: 900px) {
  .nav { display: none; }
  .navToggle { display: inline-flex; }
  .header__inner {
    gap: 10px;
    padding: 0 16px;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand__logo {
    width: 124px;
    height: 38px;
  }
  .header__actions,
  .header__cta {
    min-width: unset;
    flex: 0 0 auto;
    gap: 8px;
  }
  .header__insta {
    width: 46px;
    height: 46px;
  }
  .header__btn {
    --btn-height: 44px;
    --btn-px: 12px;
    min-width: 44px;
    padding: 0 12px;
    font-size: 14px;
  }
  .header__btn span:last-child {
    display: none;
  }
  .header__btn .btn__icon {
    width: 18px;
    height: 18px;
  }

  .footer {
    padding-bottom: calc(118px + env(safe-area-inset-bottom));
  }

  .hero { min-height: auto; align-items: stretch; }
  .hero__inner { padding: 38px var(--padX); }
  .hero__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero__left {
    display: contents;
    transform: none;
  }
  .hero__title { order: 1; max-width: 12ch; }
  .hero__subtitle { order: 2; }
  .hero__actions { order: 3; }
  .hero__right {
    order: 4;
    margin-top: 12px;
    width: min(100%, 396px);
    align-self: center;
  }
  .hero__badges {
    order: 5;
    margin-top: 18px;
    justify-items: center;
  }
  .badge {
    width: min(100%, 360px);
  }

  .header__btn { height: 44px; }
}

@media (max-width: 560px) {
  .hero__actions {
    display: grid;
    gap: 10px;
  }

  .footer__cta {
    margin-top: 18px;
    display: flex;
    justify-content: center;
  }

  .footer__btn {
    justify-self: center;
  }

  .leadModal {
    padding: 12px 0;
  }

  .leadModal__dialog,
  .leadModal__card {
    max-height: calc(100svh - 24px);
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    height: 54px;
    padding: 0 18px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .wFloat {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
  }

  .wFloat__img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 420px) {
  .formCard__choiceGrid { grid-template-columns: 1fr; }
  .formCard__choiceGrid .pillGroup__row,
  .pillGroup__row { grid-template-columns: 1fr; }
  .leadModal__dialog { margin: 12px auto; }
}

.hero__actions .btn,
.mNav .btn { justify-content: center; }

.hero__actions .btn span:last-child,
.mNav .btn span:last-child { display: inline !important; }

/* =========================
   WhatsApp Bar (Mobile)
   ========================= */
.wpp--mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;

  display: none;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);

  padding: 12px 14px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.wpp--mobile.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.wpp-bar__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;

  height: 66px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 10px 16px;

  background:
    linear-gradient(180deg, rgba(34, 197, 94, .96), rgba(22, 163, 74, .88));
  border: 1px solid rgba(255, 255, 255, .18);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 18px 55px rgba(2, 6, 23, .28);
  transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
}

.wpp--mobile:hover .wpp-bar__inner {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 22px 70px rgba(2, 6, 23, .34);
}

.wpp--mobile:active .wpp-bar__inner {
  transform: translateY(0);
  filter: brightness(0.98);
}

.wpp-bar__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;

  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.wpp-bar__text {
  display: grid;
  gap: 2px;
  justify-items: center;
  text-align: center;
  min-width: 0;
}

.wpp-bar__title {
  display: block;
  font-weight: 950;
  letter-spacing: .2px;
  color: rgba(255, 255, 255, .98);
  line-height: 1.1;
  font-size: 15px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70vw;
}

.wpp-bar__subtitle {
  display: block;
  font-weight: 750;
  letter-spacing: .1px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.2;
  font-size: 13.4px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70vw;
}

/* show only on mobile */
@media (max-width: 900px) {
  .wpp--mobile { display: block; }
}

/* small phones */
@media (max-width: 420px) {
  .wpp--mobile {
    padding: 10px 12px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .wpp-bar__inner {
    height: 64px;
    border-radius: 16px;
    padding: 10px 14px;
  }

  .wpp-bar__icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .wpp-bar__title,
  .wpp-bar__subtitle {
    max-width: 72vw;
  }
}

/* If you already have a floating button, avoid overlap */
@media (max-width: 900px) {
  .wFloat { display: none !important; }
}

/* =========================
   Reveal
   ========================= */
[data-reveal]{
  opacity: 0;
  transform: translate3d(22px, 0, 0);
  will-change: transform, opacity;

  transition-property: opacity, transform;
  transition-duration: 560ms;
  transition-timing-function: cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms);
}

[data-reveal].is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-reveal="left"]  { transform: translate3d(-22px, 0, 0); }
[data-reveal="right"] { transform: translate3d(22px, 0, 0); }
[data-reveal="up"]    { transform: translate3d(0, 16px, 0); }

