body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Mulish", sans-serif;
}

.borda {
  width: 100%;
  height: 1px;
  background-color: #d3d3d3;
}

.esconder {
  display: none;
}

/* ============================================
   REAÇÕES FLUTUANTES — Facebook Live Style
   Emojis sobem do canto inferior direito do
   vídeo, com wobble, fade e scale realistas.
   ============================================ */

#fb-reactions-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 2147483647; /* z-index máximo — acima de qualquer player */
}

.fb-reaction-emoji {
  position: absolute;
  bottom: -60px;
  right: 4px;
  width: 40px;
  height: 40px;
  object-fit: contain;
  will-change: transform;
  animation: fbReactionFloat linear forwards;
}

/* Animação principal: sobe + wobble lateral + fade no topo */
@keyframes fbReactionFloat {
  0% {
    transform: translateY(0) scale(0.6) rotate(-8deg);
    opacity: 0;
  }
  8% {
    transform: translateY(-30px) scale(1.15) rotate(4deg);
    opacity: 1;
  }
  20% {
    transform: translateY(-90px) scale(1) rotate(-5deg);
    opacity: 1;
  }
  40% {
    transform: translateY(-180px) scale(0.95) rotate(6deg) translateX(6px);
    opacity: 0.95;
  }
  60% {
    transform: translateY(-270px) scale(0.9) rotate(-4deg) translateX(-4px);
    opacity: 0.85;
  }
  80% {
    transform: translateY(-360px) scale(0.8) rotate(3deg) translateX(3px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-440px) scale(0.7) rotate(-2deg);
    opacity: 0;
  }
}

/* ============================================
   BARRA DE REAÇÕES INTERATIVA (Rodapé do vídeo)
   ============================================ */

#fb-interactive-bar {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483647;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  padding: 6px 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fb-reaction-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.fb-reaction-btn:hover,
.fb-reaction-btn:active {
  opacity: 1;
  transform: scale(1.35) translateY(-4px);
}

.fb-reaction-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}


/* ============================================
   OVERLAY "a assistir" — Facebook Live Style
   ============================================ */

#fb-live-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 0, 0, 0.52);
  border-radius: 8px;
  padding: 5px 10px 5px 8px;
  pointer-events: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.fb-live-eye {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.fb-live-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

#contador-espectadores-live {
  color: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.fb-live-label {
  color: rgba(255, 255, 255, 0.82);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 500;
}

/* ============================================
   HEADER FACEBOOK CLONE — 3 BARRAS PROFISSIONAIS
   Barra 1: logo facebook + avatares cinza
   Barra 2: 5 ícones de nav com badges
   Barra 3: avatar + campo de post + foto
   ============================================ */

/* WRAPPER GERAL */
#fb-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #fff;
}

/* BARRA 1: Logo + avatares */
#fb-topbar {
  background-color: #ffffff;
  border-bottom: 1px solid #E4E6EB;
}

.fb-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  height: 56px;
  box-sizing: border-box;
}

/* Logo "facebook" como texto CSS — nunca corta */
.fb-wordmark {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1877F2;
  letter-spacing: -0.5px;
  line-height: 1;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

/* Avatares cinza à direita */
.fb-top-avatars {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.fb-avatar-lg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #E4E6EB;
}

.fb-avatar-md {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #E4E6EB;
}

/* BARRA 2: Ícones de navegação */
#fb-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #E4E6EB;
}

.fb-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  height: 52px;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.fb-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 44px;
  cursor: default;
}

.fb-nav-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
}

/* Badge laranja (casa 15+) */
.fb-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background-color: #E05600;
  color: #ffffff;
  font-family: system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  padding: 1px 5px;
  min-width: 17px;
  text-align: center;
  line-height: 1.5;
  border: 2px solid #fff;
  white-space: nowrap;
}

/* Badge vermelho (sino 6) */
.fb-badge-red {
  background-color: #E41E3F;
}

/* Badge laranja explícito */
.fb-badge-orange {
  background-color: #E05600;
}

/* Barra azul no item ativo */
.fb-active-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #1877F2;
  border-radius: 2px 2px 0 0;
}

/* BARRA 3: Campo de post */
#fb-postbar {
  background-color: #ffffff;
  border-bottom: 6px solid #F0F2F5;
  pointer-events: none;
}

.fb-post-inner {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 10px;
}

.fb-post-avatar {
  flex-shrink: 0;
}

.fb-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.fb-post-input {
  flex: 1;
  background-color: #F0F2F5;
  border-radius: 20px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  min-width: 0;
}

.fb-post-placeholder {
  color: #65676B;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fb-post-photo {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  color: #050505;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-left: 1px solid #E4E6EB;
  padding-left: 12px;
}

/* VIDEO */
.video h2 {
  color: #000;
  text-align: center;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 600;
  line-height: clamp(28px, 4vw, 49px);
  letter-spacing: 0;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.video h3 {
  font-size: 20px;
  text-align: center;
  font-family: sans-serif;
  font-weight: 500;
  margin-top: 0;
  font-family: "Poppins", sans-serif;
}

.autor {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  font-size: clamp(14px, 3vw, 16px);
}

.atualizado {
  font-weight: 400;
  color: #54595f;
  line-height: 1.5;
  font-size: clamp(12px, 3vw, 16px);
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.bordavideo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.video p {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

/* OFERTA ESPECIAL */
.oferta-especial {
  background-color: #db0000;
}

.oferta-especial h1 {
  color: #f7ff00;
  font-family: "Poppins", Sans-serif;
  font-size: 47px;
  font-weight: 700;
  line-height: 1;
}

.oferta-especial p {
  text-align: center;
  color: #ffffff;
  font-family: "Poppins", Sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.countdown {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 15em;
  font-family: "Poppins", sans-serif;
}

.wrapperCountdown {
  font-weight: 800;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0.7em;
}

.digitsCircle {
  border-radius: 50%;
  /* border: 4px solid #fc4d4a; */
  border: 4px solid #f50028;
  line-height: 1.4em;
  padding: 10px;
  width: 60px;
  height: 60px;
  text-align: center;
  margin: 5px;
  font-weight: bold;
  font-size: larger;
}

.form-control {
  color: #000 !important;
}

/* KITS */
.kits h2 {
  font-size: clamp(32px, 3vw, 34px);
  line-height: 1;
  font-weight: 900;
}

.kits h3 {
  font-size: clamp(24px, 3vw, 28px);
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

/* ─── CARD BASE ─── */
.box-kit {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  border: 2px solid #ddd;
  overflow: hidden;
  transition: transform 0.2s;
  color: #1c1c1c;
}

.box-kit:hover {
  transform: scale(1.015);
}

/* ─── CARD DESTAQUE ─── */
.box-kit.kit-destaque {
  background-color: #01531f;
  border: 3px solid #d4af37;
  box-shadow: 0 0 28px 4px rgba(212,175,55,0.5);
  color: #fff;
}

/* ─── HEADER CARD NORMAL ─── */
.box-kit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tipo-kit {
  background: #2c2c2c;
  width: 55%;
  border-radius: 0 0 12px 0;
  padding: 13px 8px;
  font-weight: 800;
  font-size: 15px;
  color: white;
  text-align: center;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qtd-kit {
  color: #1c1c1c;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  width: 45%;
  text-align: center;
  padding: 6px 8px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

/* ─── HEADER CARD DESTAQUE ─── */
.box-kit-header-destaque {
  background: linear-gradient(135deg, #d4af37 0%, #f5e26e 50%, #d4af37 100%);
  text-align: center;
  padding: 12px 10px;
}

.tipo-kit-destaque {
  color: #01531f;
  font-weight: 900;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kit-qtd-destaque {
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  padding: 10px 10px 0;
  line-height: 1.1;
}

.kit-dias {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}

/* ─── BODY ─── */
.box-kit-body {
  padding: 16px;
  text-align: center;
}

/* ─── IMAGEM ─── */
.img-kit {
  width: 220px;
  height: 220px;
  max-width: 100%;
  object-fit: contain;
}

.img-kit-destaque {
  width: 260px;
  height: 260px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
}

/* ─── PREÇO DESTAQUE ─── */
.kit-preco-destaque {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 8px auto 12px;
  width: fit-content;
  line-height: 1;
}

.kit-preco-destaque sup {
  font-size: 1.6rem;
  font-weight: 800;
  color: #d4af37;
  align-self: flex-start;
  margin-top: 6px;
}

.kit-preco-destaque .preco-num {
  font-size: 5rem;
  font-weight: 900;
  color: #d4af37;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

.kit-preco-destaque .preco-cents {
  font-size: 1.8rem;
  font-weight: 800;
  color: #d4af37;
  align-self: flex-end;
  margin-bottom: 8px;
}

.por-frasco-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  text-align: left;
  margin-left: 4px;
  line-height: 1.2;
  align-self: center;
}

/* ─── PREÇO NORMAL ─── */
.kit-preco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 8px auto 12px;
  width: fit-content;
  line-height: 1;
}

.kit-preco sup {
  font-size: 1.3rem;
  font-weight: 800;
  color: #017d33;
  align-self: flex-start;
  margin-top: 6px;
}

.kit-preco .preco-num {
  font-size: 4rem;
  font-weight: 900;
  color: #017d33;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

.kit-preco .preco-cents {
  font-size: 1.5rem;
  font-weight: 800;
  color: #017d33;
  align-self: flex-end;
  margin-bottom: 6px;
}

.por-frasco-dark {
  color: #444 !important;
}

/* ─── SAVINGS / CHECKMARKS DESTAQUE ─── */
.kit-savings-destaque {
  margin: 0 0 14px;
  font-size: 0.88rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

.kit-savings-destaque > div {
  padding: 7px 6px;
  border-bottom: 1px dashed rgba(255,255,255,0.35);
  color: #fff;
}

.kit-savings-destaque > div:first-child {
  border-top: 1px dashed rgba(255,255,255,0.35);
  color: #d4af37;
}

.kit-savings-destaque .fa-check-circle {
  color: #d4af37;
  margin-right: 6px;
  font-size: 1rem;
}

/* ─── SAVINGS / CHECKMARKS NORMAL ─── */
.kit-savings {
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  text-align: left;
  color: #333;
}

.kit-savings > div {
  padding: 7px 6px;
  border-bottom: 1px dashed rgba(0,0,0,0.2);
}

.kit-savings > div:first-child {
  border-top: 1px dashed rgba(0,0,0,0.2);
  color: #017d33;
}

.kit-savings .fa-check-circle {
  color: #017d33;
  margin-right: 6px;
  font-size: 0.95rem;
}

/* ─── BOTÃO NORMAL ─── */
.comprar-agora {
  font-weight: 800;
  color: #fff;
  background: linear-gradient(to bottom, #1ca11e, #0c7a0e);
  border: none;
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  transition: all 0.3s;
  font-size: 16px;
  line-height: 1.2;
  width: 100%;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.comprar-agora:hover {
  background: linear-gradient(to bottom, #22c024, #11960d);
  box-shadow: 0 6px 20px rgba(28,161,30,0.45);
  transform: scale(1.03);
}

/* ─── BOTÃO DESTAQUE ─── */
.comprar-destaque {
  background: linear-gradient(to bottom, #28c62a, #17a81a);
  border: 2px solid #d4af37;
  box-shadow: 0 6px 24px rgba(212,175,55,0.3);
  font-size: 17px;
}

.comprar-destaque:hover {
  background: linear-gradient(to bottom, #33d436, #20b422);
  box-shadow: 0 8px 28px rgba(212,175,55,0.5);
}

/* ─── CARTÕES ─── */
.cards-img {
  max-width: 230px;
  width: 100%;
  display: block;
  margin: 4px auto -2px auto; /* Centraliza horizontalmente e aproxima do Total */
}

/* ─── TOTAL ─── */
.kit-total {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-top: 0;
}

.kit-total-destaque {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 0;
}

.kit-total s, .kit-total-destaque s {
  text-decoration-color: red;
  text-decoration-thickness: 2px;
}

.frete-gratis {
  color: #ff4444;
  font-weight: 800;
}

.kit-destaque .frete-gratis {
  color: #d4af37;
}

/* ─── LINK SEM ESTILO ─── */
.kit-link {
  text-decoration: none !important;
}

.kit-link:hover .box-kit {
  transform: scale(1.015);
}

/* ─── ALINHAMENTO DA ROW ─── */
.kits-row {
  align-items: stretch;
}

/* ─── ANIMAÇÃO PULSE ─── */
.de-por {
  font-size: 14px;
  line-height: 1.4;
  color: #020101;
  font-weight: 500;
  margin-top: 10px;
}

@keyframes pulse-grow {
  to {
    transform: scale(1.06);
  }
}

.pulse-grow:active,
.pulse-grow:focus,
.pulse-grow:hover {
  animation-name: pulse-grow;
  animation-duration: 0.35s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* ─── MOBILE: LAYOUT 2 COLUNAS (igual ao VSL de referência) ─── */
@media (max-width: 767px) {

  .kits-row {
    display: flex;
    flex-direction: column;
  }

  /* Destaque aparece primeiro */
  .order-1 { order: 1; }
  .order-2 { order: 2; }
  .order-3 { order: 3; }

  .box-kit,
  .box-kit.kit-destaque {
    border-radius: 12px;
  }

  .box-kit-body {
    padding: 12px 10px;
  }

  /* Grid 2 colunas: imagem esq (55%), info dir (45%) */
  .box-kit .box-kit-body {
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-areas:
      "img preco"
      "img savings"
      "btn btn"
      "cards cards"
      "total total";
    column-gap: 4px;
    align-items: start;
  }

  /* Container da imagem — overflow hidden + scale para zoom sem corte */
  .img-kit {
    grid-area: img;
    width: 100%;
    height: auto;
    max-width: 100%;
    align-self: center;
    /* Zoom via scale — não sai do container */
    transform: scale(1.18);
    transform-origin: center center;
    display: block;
  }

  /* Imagem do destaque (6 frascos) — zoom controlado sem sobrepor textos */
  .img-kit-destaque {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: scale(1.05);
    transform-origin: left center;
  }

  /* Wrapper da imagem precisa de overflow hidden p/ scale não vazar */
  .box-kit .box-kit-body {
    overflow: hidden;
  }

  .kit-preco,
  .kit-preco-destaque {
    grid-area: preco;
    justify-content: flex-start;
    margin: 0;
  }

  .kit-preco .preco-num,
  .kit-preco-destaque .preco-num {
    font-size: 3.5rem;
  }

  .kit-preco .preco-cents,
  .kit-preco-destaque .preco-cents {
    font-size: 1.4rem;
  }

  .kit-preco sup,
  .kit-preco-destaque sup {
    font-size: 1.2rem;
    margin-top: 5px;
  }

  .por-frasco-label {
    font-size: 0.68rem;
  }

  .kit-savings,
  .kit-savings-destaque {
    grid-area: savings;
    font-size: 0.76rem;
  }

  .kit-savings > div,
  .kit-savings-destaque > div {
    padding: 5px 4px;
  }

  .comprar-agora {
    grid-area: btn;
    font-size: 15px;
    padding: 14px 12px;
  }

  .cards-img {
    grid-area: cards;
    max-width: 180px;
    display: block;
    margin: 8px auto -2px auto;
  }

  .kit-total,
  .kit-total-destaque {
    grid-area: total;
    font-size: 12px;
    text-align: center;
    padding-bottom: 4px;
    margin-top: 0;
  }

  .tipo-kit {
    font-size: 13px;
    padding: 10px 6px;
    width: 50%;
  }

  .qtd-kit {
    font-size: 13px;
    width: 50%;
  }

  .tipo-kit-destaque {
    font-size: 15px;
  }

  .kit-qtd-destaque {
    font-size: 18px;
    padding: 8px 8px 0;
  }

  /* Card destaque: header dourado ocupa full */
  .box-kit-header-destaque {
    padding: 10px 8px;
  }
}


/* DÚVIDAS */
.duvidas h1 {
  color: #ff0000;
  font-weight: 900;
}

.duvidas h3 {
  color: #870000;
  font-weight: 700;
}

.duvidas img {
  width: 70%;
}

/* COMENTÁRIOS */
.comentarios {
  padding-top: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(20px, 3vw, 32px);
}

.comentarios h4 {
  font-family: "Poppins", sans-serif;
}

.divisor {
  height: 1px;
  background-color: #cfcfcf;
}

.box-comentario img {
  flex-shrink: 0;
  border-radius: 50px;
  width: 56px;
  height: 56px;
}

.texto {
  padding: 8px 8px 3px 8px;
  background-color: #f6f6f6;
  border-radius: 10px 10px 10px 10px;
  width: 100%;
}

.comentarios p {
  color: #454545;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.azul {
  color: #365899;
}

.hora {
  color: #365899;
  font-size: 12px;
  font-weight: 400;
}

.botoes-acoes {
  font-size: 12px;
  font-weight: 400;
  color: #7a7a7a;
}

.botoes-acoes img {
  width: 17px !important;
  height: 17px !important;
  flex-shrink: 0;
}

.box-comentario img {
  flex-shrink: 0;
  border-radius: 50px;
  width: 56px;
  height: 56px;
}

.aceita {
  color: #7a7a7a;
  font-size: 10px;
  text-align: center;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 32px;
}

.face img {
  width: 22px;
  height: 22px;
  border-radius: 2px 2px 2px 2px;
  flex-shrink: 0;
}

.face span {
  color: #7a7a7a;
  font-size: 12px;
  text-align: center;
  font-weight: 400;
}

.reply {
  margin: 18px 0 0 45px;
  padding-left: 15px;
  border-left: 1px dotted #c1c1c1;
}

.reply .box-comentario {
  margin-bottom: 15px;
}

.btn-comprar {
  background: linear-gradient(#fff84a 23%, #fcd307 73%);
  border-radius: 10px;
  color: #001824;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border: 1px solid #e0ce02;
  /* DegradÃª de amarelo */
  font-weight: 700;
  margin-left: 0;
  border: 1px solid, #ffc107;
  padding: 14px 40px;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-comprar i {
  background-color: #000000;
  color: #ffffff;
  padding: 15px;
  border-radius: 50px;
  margin-left: 10px;
  font-size: 13px;
}

/* FOOTER */
footer {
  background-color: black;
}

footer p {
  font-family: Helvetica, sans-serif;
  color: #93b2b6;
  font-size: 13px;
}

@media (max-width: 767px) {
  .padding {
    padding: 0;
  }

  .oferta-especial h1 {
    font-size: 30px;
  }

  .oferta-especial p {
    font-size: 14px;
  }
}