* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}
.esconder {
  display: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
header {
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-cnn {
  font-size: 1.875rem;
  font-weight: bold;
  color: #cc0000;
}
.logo-health {
  font-size: 1.25rem;
  font-weight: 300;
}
nav {
  display: flex;
  gap: 1.5rem;
  margin-left: 2rem;
}
nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover {
  color: #cc0000;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-sign-in {
  background: #0071ce;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-sign-in:hover {
  background: #0060b8;
}
.video-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.video-title {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}
.video-container {
  background: black;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.video-header {
  background: #cc1212;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exclusive-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.live-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: #fff;
  border-radius: 50%;
}
.exclusive-text {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
}
.btn-watch {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-watch:hover {
  background: rgba(255, 255, 255, 0.3);
}
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: white;
}
.video-footer {
  background: #fff;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.red-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.live-text {
  color: #dc2626;
  font-weight: 600;
  font-size: 0.875rem;
}
.packages-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.packages-title {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
.timer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 1rem;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.package-card {
  border: 2px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  background: #fff;
  transition: all 0.3s;
}
.package-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.package-card.best-value {
  border-color: #f59e0b;
  background: #fffbeb;
}
.best-offer-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #fff;
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
}
.package-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.package-badge.gold {
  background: #f59e0b;
  color: #fff;
}
.package-badge.gray {
  background: #e5e5e5;
  color: #404040;
}
.package-title {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  text-align: center;
}
.package-image {
  width: 100%;
  height: 12rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
}
.price-per-bottle {
  font-size: 2.25rem;
  font-weight: bold;
  color: #cc1212;
  text-align: center;
  margin-bottom: 0.5rem;
}
.per-bottle-text {
  font-size: 0.875rem;
  color: #737373;
  text-align: center;
  margin-bottom: 0.5rem;
}
.savings-badge {
  background: #dcfce7;
  color: #166534;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.btn-buy {
  display: block;
  width: 100%;
  background: #cc1212;
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
  font-size: 1.125rem;
  margin: 1rem 0;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-buy:hover {
  background: #aa0000;
}
.payment-methods {
  width: 12rem;
  margin: 0 auto 0.5rem;
  display: block;
}
.price-total {
  text-align: center;
  font-size: 0.875rem;
}
.price-strike {
  text-decoration: line-through;
  color: #737373;
}

.badges-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.badge-img {
  height: 4rem;
  object-fit: contain;
}
.faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.faq-title {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 1.5rem 0;
}
.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  font-size: 1rem;
  color: #737373;
  line-height: 1.8;
  display: none;
  padding-top: 0.5rem;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-toggle {
  font-size: 1.5rem;
}
.comments-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}
.comments-container {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
}
.comment {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.comment:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.comment-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}
.comment-content {
  flex: 1;
}
.comment-name {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.comment-text {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.comment-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #737373;
}
.comment-action {
  background: none;
  border: none;
  color: #737373;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.comment-action:hover {
  color: #cc1212;
}
.comment-likes {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
footer {
  border-top: 1px solid #e5e5e5;
  background: #fafafa;
  margin-top: 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: #555;
  text-decoration: none;
}
.footer-links a:hover {
  color: #111;
}
@media (max-width: 768px) {
  .video-title {
    font-size: 1.5rem;
  }
  .packages-title {
    font-size: 1.5rem;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  nav {
    display: none;
  }
}
