/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #f5f5f5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border: 3px solid #f4f4f4;
  border-radius: 9999px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: #000;
  border-radius: 0.75rem;
  overflow: hidden;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

/* ===== ESCONDER (VTurb controlled) ===== */
.esconder {
  display: none;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

/* ===== PRICING CARD (BASE) ===== */
.pricing-card {
  flex: 1;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #171717;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.pricing-card--featured {
  border-color: #fff;
  background: linear-gradient(to bottom, #331C0D 0%, #f97316 130%);
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* Order on mobile */
.pricing-card--single { order: 3; }
.pricing-card--featured { order: 1; }
.pricing-card--triple { order: 2; }

.pricing-card__header {
  margin-bottom: 1rem;
}

.pricing-card__label {
  font-size: 1.125rem;
  font-weight: 800;
}

.pricing-card__label--featured {
  color: #34d399;
}

.pricing-card__subtitle {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

/* Badge "SPARE" */
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #eab308;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

/* Product image */
.pricing-card__image {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
}

.pricing-card__image img {
  margin: 0 auto;
}

/* Price */
.pricing-card__price {
  margin-bottom: 1rem;
}

.pricing-card__price-value {
  font-size: 2.25rem;
  font-weight: 800;
}

.pricing-card__price-unit {
  font-size: 1rem;
  font-weight: 600;
}

/* Features list */
.pricing-card__features {
  margin-bottom: 1.5rem;
}

.pricing-card__features li {
  font-size: 0.875rem;
}

.pricing-card__features li + li {
  margin-top: 0.25rem;
}

.pricing-card__features li:first-child {
  font-weight: 800;
}

.pricing-card__features--dark li {
  color: #262626;
}

.pricing-card__features--dark li:nth-child(2) {
  color: #404040;
}

/* Total */
.pricing-card__total {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 800;
}

.pricing-card__total s {
  opacity: 0.6;
  font-weight: 700;
}

.pricing-card__total .free-shipping {
  display: block;
  font-weight: 400;
}

.pricing-card__total .free-shipping--dark {
  color: #525252;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #059669;
  color: #fff;
  font-weight: 800;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: background-color 150ms ease;
}

.btn-cta:hover {
  background: #10b981;
}

/* Guarantee text */
.pricing-card__guarantee {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #404040;
}

.pricing-card--featured .pricing-card__guarantee {
  color: #fff;
}

/* Credit cards */
.pricing-card__cards {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Shipping */
.pricing-card__shipping {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 800;
}

/* ===== COMMENTS SECTION ===== */
.comments-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1rem;
}

.comments-container {
  width: 100%;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comments-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1rem;
}

.comments-header {
  font-size: 1rem;
  font-weight: 600;
  color: #171717;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Single comment */
.comment {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.comment__body {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.comment__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}

.comment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.comment__bubble {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 1rem;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1rem;
}

.comment__name {
  font-weight: 600;
  color: #0369a1;
}

.comment__text {
  font-size: 15px;
  line-height: 1.625;
  color: #171717;
}

.comment__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #737373;
  padding-left: 0.5rem;
}

/* Reactions */
.comment__reactions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.reaction-pill {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  background: #fff;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.reaction-icons {
  display: flex;
}

.reaction-icons > span + span {
  margin-left: -0.25rem;
}

.reaction-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reaction-icon--like {
  background: #2563eb;
}

.reaction-icon--heart {
  background: #e11d48;
}

.reaction-count {
  font-size: 0.75rem;
  color: #404040;
}

/* ===== FOOTER ===== */
.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-links a {
  color: #6b7280;
  font-size: 0.875rem;
}

/* ===== RESPONSIVE (md: 768px) ===== */
@media (min-width: 768px) {
  .pricing-grid {
    flex-direction: row;
  }

  .pricing-card--single { order: 1; }
  .pricing-card--featured { order: 2; transform: scale(1.02) translateY(-0.25rem); }
  .pricing-card--triple { order: 3; }

  .comments-box {
    padding: 1.5rem;
  }

  .comments-header {
    font-size: 1.125rem;
  }
}
