/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: white;
  color: #111;
}

/* ===== HEADER SUPERIOR ===== */

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background: #8a1b0f;
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  align-items: center;
}
.dtc-desktop {
  display: flex;
}
.dtc-mobile {
  display: none;
}

.images-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.video-container {
  margin: 50px auto 0 auto;
}

.logo {
  font-size: 32px;
  color: white;
  font-weight: bold;
}

.menu-icon {
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* ===== SUBHEADER ===== */

.sub-header-container {
  width: 100%;
  background: #6d1208;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.sub-header {
  width: 80%;
  background: #6d1208;
  color: #d4d4d4;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-sizing: border-box;
  padding: 12px 0;
}

.sub-header-content {
  width: 50%;
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 18s linear infinite;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ===== CONTEÚDO ===== */
.content {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.urgent span {
  color: #b11a00;
  font-weight: bold;
}

.urgent {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 25px;
}

.subtitle {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 35px;
  color: #222;
}

.date {
  font-size: 15px;
  color: #555;
}
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* CONTAINER */
/* CONTAINER */
.dtc-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  flex-wrap: nowrap; /* impede quebrar linha no desktop */
  max-width: 1200px;
  margin: auto;
}

/* CARDS */
.dtc-card {
  flex: 1;
  max-width: 31%; /* garante encaixe dos 3 */
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  text-align: center;
  padding-bottom: 25px;
  overflow: hidden;
}

.destacado {
  border: 3px solid #2a79c2;
}

/* TAG SUPERIOR */
.tag-top {
  background: #2a79c2;
  color: #fff;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
}

/* TITULOS */
.dtc-card h2 {
  margin-top: 22px;
  font-size: 34px;
  font-weight: 800;
}

.sub {
  font-size: 18px;
  margin-top: -10px;
  color: #555;
}

/* IMAGEM DO PRODUTO */
.product-img {
  width: 90%;
  margin: 15px auto;
  display: block;
}

/* PREÇO */
.price-box {
  margin-top: 10px;
  font-size: 40px;
  font-weight: 900;
}

.price {
  font-size: 60px;
  font-weight: 600;
}

.per {
  font-size: 20px;
  display: block;
  margin-top: -10px;
  font-weight: 600;
}

.save {
  font-weight: bold;
  margin-top: 10px;
}

.green {
  color: #37b64a;
}

.desc {
  font-size: 16px;
  margin-top: 5px;
  color: #444;
}

/* BOTÕES */
.btn {
  display: block;
  width: 80%;
  margin: 20px auto;
  padding: 16px;
  border-radius: 8px;
  font-size: 20px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.green-btn {
  background: #37b64a;
}

.blue-btn {
  background: linear-gradient(90deg, #004b9c, #0097d0);
}

/* ÍCONES PAGAMENTO */
.pay-img {
  width: 75%;
  margin: 12px auto;
  display: block;
}

/* TOTAL */
.total {
  font-size: 16px;
  margin-top: 10px;
}

.old {
  text-decoration: line-through;
  color: #c00;
}

.new {
  font-weight: 900;
  color: #27a300;
}
.pulse {
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}
/* ===========================================================
   ========== RESPONSIVIDADE – TABLET (768px–1024px) ==========
   =========================================================== */
@media (max-width: 1024px) {
  .dtc-desktop {
    display: none;
  }
  .dtc-mobile {
    display: flex;
  }
  .navbar {
    padding: 15px 25px;
  }
  .dtc-card {
    width: 100%;
  }

  .logo {
    font-size: 28px;
  }

  .urgent {
    font-size: 32px;
  }

  .subtitle {
    font-size: 26px;
  }

  .content {
    margin: 40px auto;
  }
}
.dtc-card-mob {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
}

.dtc-top-mob {
  background: #2a9ed9;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
}

.dtc-inner {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.dtc-left-mob {
  width: 40%;
  text-align: center;
}

.dtc-right-mob {
  width: 60%;
}

.product-mob {
  width: 100%;
  max-width: 140px;
}

.btn-mob {
  width: 100%;
  background: #2dbb36;
  color: #fff;
  border-radius: 8px;
  padding: 14px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-mob {
  margin-top: 10px;
  font-size: 0.9rem;
}

.old {
  text-decoration: line-through;
  color: red;
}
.new {
  color: #22aaff;
  font-weight: bold;
}

/* ===========================================================
   ========== RESPONSIVIDADE – MOBILE (ATÉ 768px) =============
   =========================================================== */
@media (max-width: 768px) {
  .dtc-desktop {
    display: none;
  }
  .dtc-mobile {
    display: block;
  }
  .navbar {
    padding: 12px 20px;
  }
  .images-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .images-container img {
    width: 90%;
  }

  .logo {
    font-size: 24px;
  }
  .dtc-card {
    width: 100%;
  }

  .menu-icon {
    font-size: 24px;
  }

  .sub-header {
    font-size: 12px;
    padding: 10px 15px;
    line-height: 1.3;
  }
  .sub-header-content {
    font-size: 12px;
    animation-duration: 14s;
  }

  .content {
    margin: 30px auto;
    padding: 0 15px;
  }

  .urgent {
    font-size: 24px;
    line-height: 1.35;
  }

  .subtitle {
    font-size: 20px;
  }

  .date {
    font-size: 13px;
  }
  /* Containers gerais — um card abaixo do outro */
  .dtc-container {
    flex-direction: column;
    gap: 25px;
  }

  .dtc-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }

  /* --- LAYOUT INTERNO DO CARD (igual imagem) --- */

  .dtc-card-content {
    display: flex;
    flex-direction: row; /* fica lado a lado */
    gap: 15px;
    align-items: center;
    justify-content: space-between;
  }

  .card-mobile {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    background: #d8ecf8;
    border-radius: 14px;
    border: 1px solid #8bb3d1;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }

  /* Cabeçalho */
  .card-mobile-header {
    background: #1b3f8b;
    color: white;
    text-align: center;
    padding: 14px 0;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
  }

  /* Conteúdo */
  .most-popular {
    background: linear-gradient(#6eb5e8, #9bd5f4);
  }
  .other-bottles {
    background: none;
  }
  .card-mobile-body {
    padding: 12px;
    position: relative;
    border: 1px solid #8bb3d1;
    border-radius: 0 0 10px 10px;
  }

  /* Títulos */
  .card-mobile-left h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    line-height: 32px;
  }

  .card-mobile-left .sub {
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    margin: 5px 0 15px;
  }

  /* Estrutura esquerda + preço à direita */
  .card-mobile-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px;
  }

  /* Imagem */
  .card-mobile-img {
    display: block;
    width: 145px;
    margin: 5px auto 0;
  }

  /* ----------- BOX DE PREÇO ----------- */
  .card-mobile-price-box {
    width: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid #8fc2e3;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
  }

  /* Preço */
  .price {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin: 5px 0;
  }

  .price small {
    font-size: 18px;
  }

  /* Benefícios */
  .benefit {
    font-size: 14px;
    margin: 6px 0;
    font-weight: bold;
  }

  .benefit.yellow {
    color: #faff00;
  }

  .benefit.green {
    color: #00ff90;
  }

  .benefit.white {
    color: #ffffff;
  }

  /* Pagamentos */
  .payment-img {
    width: 140px;
    margin: 8px auto 0;
    display: block;
  }

  /* Rodapé texto */
  .card-mobile-footer {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
  }

  .card-mobile-footer .red {
    color: red;
    font-weight: bold;
    text-decoration: line-through;
  }
  .card-mobile-footer .green {
    color: #39b54a;
    font-weight: bold;
  }

  /* Botão */
  .card-mobile-button {
    background: #36b44a;
    color: white;
    padding: 18px;
    margin: 16px 12px 20px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 4px 0px #2d923c;
  }

  .card-mobile-button img {
    width: 24px;
  }
}

.facebook-comments {
  width: 100%;

  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 12px;
}

.comments-header {
  font-size: 15px;
  color: #000;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dadde1;
  font-weight: 500;
}

.comment {
  display: flex;
  margin-bottom: 16px;
}

.comment-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
  background-color: #e4e6eb;
  overflow: hidden;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.comment-author {
  font-weight: 600;
  font-size: 13px;
  color: #050505;
  margin-right: 4px;
}

.comment-text {
  font-size: 14px;
  line-height: 1.28;
  color: #050505;
  margin-bottom: 4px;
}

.comment-actions {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #65676b;
  margin-top: 2px;
}

.comment-like {
  margin-right: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #4267b2;
}

.comment-reply {
  margin-right: 12px;
  cursor: pointer;
  color: #4267b2;
}

.comment-time {
  font-size: 12px;
  color: #65676b;
}

.comment-reactions {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.reaction-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #1877f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  margin-right: 4px;
}
.reaction-icon img {
  width: 100%;
}

.reaction-count {
  font-size: 12px;
  color: #65676b;
}

.mention {
  color: #385898;
  font-weight: 600;
  cursor: pointer;
}

.emoji {
  font-size: 16px;
  margin-right: 2px;
}
footer {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #8a1b0f;
  padding: 50px 0px;
  color: white;
  font-weight: 600;
}

/* ===========================================================
   ======= MOBILE MUITO PEQUENO (ATÉ 480px) – EXTRA ==========
   =========================================================== */
@media (max-width: 480px) {
  .dtc-desktop {
    display: none;
  }
  .dtc-mobile {
    display: block;
  }

  .navbar {
    padding: 10px 15px;
  }

  .logo {
    font-size: 20px;
  }

  .urgent {
    font-size: 21px;
  }

  .subtitle {
    font-size: 18px;
  }

  .sub-header {
    font-size: 11px;
  }
  .sub-header-content {
    font-size: 11px;
    animation-duration: 12s;
  }
  /* Containers gerais — um card abaixo do outro */
  .dtc-container {
    flex-direction: column;
    gap: 25px;
    padding: 0;
    margin-top: 30px;
  }

  .dtc-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }

  /* --- LAYOUT INTERNO DO CARD (igual imagem) --- */

  .dtc-card-content {
    display: flex;
    flex-direction: row; /* fica lado a lado */
    gap: 15px;
    align-items: center;
    justify-content: space-between;
  }

  /* Coluna da imagem */
  .dtc-card-left {
    width: 42%;
    text-align: center;
  }

  /* Coluna do preço / benefícios / botão */
  .dtc-card-right {
    width: 58%;
  }

  /* Ajuste dos textos grandes */
  .dtc-card-left h2,
  .dtc-card-left h3 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  /* Ajuste da imagem do produto */
  .dtc-card-left img {
    width: 100%;
    max-width: 140px;
  }

  /* Botão ocupa largura total */
  .dtc-card-right .buy-btn {
    width: 100%;
    font-size: 1rem;
    padding: 14px 0;
  }
}
