@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Roboto:wght@400;500&family=Sora:wght@400;500;600;700&display=swap");

:root {
  --red-dark: #a90404;
  --red: #740000;
  --red-soft: #b13131;
  --brand-red: #740000;
  --brand-red-dark: #042132;
  --brand-gold: #f3b241;
  --brand-gold-dark: #d8902f;
  --text: #1a1a1a;
  --muted: #5f5f5f;
  --page-max: 980px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Roboto", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

.hidden { display: none !important; }


.site-header {
  background: var(--red-dark);
  color: #ffffff;
  text-align: center;
  padding: 16px 12px 14px;
  letter-spacing: 2px;
  font-family: "Poppins", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.marquee {
  background: var(--red);
  color: #ffffff;
  overflow: hidden;
  border-bottom: 2px solid #8b0b10;
}

.marquee__track {
  display: flex;
  gap: 28px;
  padding: 8px 0;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  animation: marquee 18s linear infinite;
}

.marquee__track span {
  opacity: 0.95;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

main {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 28px 16px 40px;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 0 18px;
}

.video-card {
  width: min(320px, 86vw);
  aspect-ratio: 9 / 16;
  position: relative;
  background: #b1494c;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  color: #ffffff;
  background: rgba(142, 35, 42, 0.58);
  font-size: 12px;
  font-weight: 500;
}

.video-overlay__icon {
  width: 54px;
  height: 54px;
  color: #ffffff;
}

.video-overlay__text {
  margin: 0;
}

.media-logos {
  width: min(620px, 94vw);
  margin-top: 6px;
}

.watching {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 600;
}

.divider {
  border: none;
  height: 2px;
  background: var(--red);
  margin: 32px 0 24px;
}

.references {
  text-align: center;
  padding-bottom: 28px;
}

.references h2 {
  margin: 0 0 18px;
  font-family: "Poppins", "Roboto", Arial, sans-serif;
  font-size: 22px;
  color: var(--red-soft);
}

.references__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  align-items: center;
}

.references__row img {
  width: min(200px, 40vw);
  height: auto;
}

.references__row--spaced {
  margin-top: 14px;
}

.references__note {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 12px;
}

.offer-section {
  padding: 18px 0 36px;
  position: relative;
  background: #ffffff;
}

.offer-section--red {
  background: var(--brand-red);
  color: #ffffff;
  padding: 28px 0 70px;
  position: relative;
}

.offer-section--red::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 80px;
  background: #ffffff;
  border-radius: 0 0 100% 100%/0 0 100% 100%;
}

.offer-section--red .offer-section__header,
.offer-section--red .offer-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 0 16px;
  position: relative;
  z-index: 1;
}

.offer-section--red .offer-section__header h2 {
  color: #ffffff;
}

.offer-section--red .offer-section__header h2 span {
  color: #f3d600;
}

.offer-section__header {
  text-align: center;
  margin-bottom: 18px;
}

.offer-section__header h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", "Sora", Arial, sans-serif;
}

.offer-section__header h2 span {
  display: inline-block;
  color: #f3d600;
  font-weight: 700;
}

.offer-timer {
  display: inline-block;
  color: #ffffff;
  padding: 4px 16px 6px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 28px;
  background: transparent;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
  align-items: stretch;
  margin-top: 12px;
}

.offer-card {
  border: 3px solid var(--brand-red);
  border-radius: 25px;
  padding: 0 16px 20px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0; /* desktop/tablet por padrão */
}

/* Só mobile */
@media (max-width: 768px) {
  .offer-card {
    margin: 15px;
  }
}



.offer-card--highlight {
  border-color: var(--brand-gold);
  box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px);
}

.offer-card:hover {
  transform: scale(1.05);
}

.offer-card__tag {
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 12px 10px;
  font-size: 28px;
  margin: 0 -16px 10px;
  border-radius: 22px 22px 0 0;
  font-family: "Poppins", "Sora", Arial, sans-serif;
}

.offer-card--highlight .offer-card__tag {
  background: var(--brand-gold);
  color: #ffffff;
}

.offer-card__title {
  font-family: "Poppins", "Sora", Arial, sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000;
}

.offer-card__title span {
  display: block;
  font-size: 18px;
  letter-spacing: 1px;
}

.offer-card__badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.offer-card__badges span {
  background: var(--brand-gold);
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 4px;
}

.offer-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  margin: 10px 0 12px;
}

.offer-product {
  height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 8px;
}

.offer-product img {
  width: 50%;
  max-width: 250px;
  height: auto;
}

.offer-card--highlight .offer-product {
  height: 255px;
}

.offer-card--highlight .offer-product img {
  width: 95%;
  max-width: 285px;
}

.offer-card:last-child .offer-product img {
  width: 90%;
  max-width: 260px;
}

.offer-price__currency {
  font-size: 20px;
  font-weight: 700;
  margin-top: 6px;
  color: black;
}

.offer-price__value {
  font-size: 72px;
  font-weight: 700;
  color: #111111;
  line-height: 1;
  font-family: "Poppins", "Sora", Arial, sans-serif;
}

.offer-price__label {
  font-size: 12px;
  text-align: left;
  margin-top: 8px;
  color: #444444;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  font-family: "Poppins", "Sora", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #2b2b2b;
}

.offer-list li {
  margin: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.offer-list li::before {
  content: "✔";
  color: #000000;
  font-size: 14px;
}

.offer-total {
  font-size: 13px;
  margin: 8px 0 6px;
}

.offer-total strong {
  font-size: 16px;
}

.offer-ship {
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 4px 0 12px;
  padding: 4px 10px;
  border-radius: 12px;
  background: #000000;
}

.offer-card--highlight .offer-ship,
.offer-card:last-child .offer-ship {
  background: var(--brand-gold-dark);
}

.offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background-color: transparent;
  background-image: linear-gradient(180deg, #f39602 49%, #ed8104 50%);
  color: #000000;
  text-decoration: none;
  padding: 20px;
  font-weight: 800;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 39px;
  box-shadow: 0 5px 0 0 #bd5e18;
  font-family: "Sora", "Poppins", Arial, sans-serif;
}

.offer-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.offer-cards {
  margin: 12px auto 0;
  width: 160px;
}

.guarantee {
  padding: 32px 0;
  display: flex;
  justify-content: center;
}

.guarantee__box {
  max-width: 820px;
  background: #ffffff;
  border: 3px solid var(--brand-red);
  border-radius: 18px;
  text-align: center;
  padding: 26px 28px 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
}

.guarantee__seal {
  width: 120px;
  margin: 12px auto 12px;
  display: block;
}

.guarantee__box h2 {
  margin: 0 0 8px;
  font-size: 2.5em;
  color: var(--brand-red);
}

.guarantee__box h3 {
  margin: 0 0 12px;
  font-size: 2em;
  text-decoration: underline;
}

.guarantee__box p {
  margin: 0 0 12px;
  font-size: 1em;
  color: #303030;
}

.guarantee__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.guarantee__badges img {
  width: 70px;
}

.quality {
  text-align: center;
  padding: 32px 0 36px;
  background: var(--brand-red);
  color: #ffffff;
}

.quality > * {
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.quality h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 34px;
}

.quality p {
  margin: 0 auto 18px;
  max-width: 760px;
  font-size: 17px;
  color: #ffffff;
}

.quality__stars {
  font-size: 28px;
  color: #f3d600;
  margin-bottom: 8px;
}

.quality__icons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* ✅ permite quebrar linha no mobile */
  gap: clamp(10px, 2vw, 20px); /* ✅ gap responsivo */
}

.quality__icons img {
  width: clamp(56px, 18vw, 120px); /* ✅ tamanho fluido (min → ideal → max) */
  height: auto; /* ✅ mantém proporção */
  object-fit: contain;
}


.testimonials {
  padding: 26px 0 32px;
  text-align: center;
}

.testimonials__intro h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: 26px;
}

.testimonials__pill {
  display: inline-block;
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 12px;
  margin: 10px 0 16px;
}

.testimonials__polaroid {
  width: min(760px, 100%);
  margin: 0 auto 20px;
}

.testimonials__polaroid--mobile {
  display: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 16px;
  align-items: center;
}

.testimonial-card__media {
  display: flex;
  justify-content: center;
}

.testimonial-card__media img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__body {
  padding: 0 12px 0 0;
  font-size: 13px;
  color: #2a2a2a;
}

.testimonial-card__stars {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #8b1e22;
}

.testimonial-card strong {
  display: block;
  margin-top: 10px;
}

.ingredients {
  padding: 24px 0 32px;
  text-align: center;
}

.ingredients h2 {
  color: #111111;
  margin-bottom: 8px;
  font-size: 22px;
}

.ingredients__sub {
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 18px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.ingredient {
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 3px solid var(--brand-red);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.ingredient img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 12px;
  border-radius: 12px;
}

.ingredient h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.ingredient p {
  margin: 0;
  font-size: 13px;
  color: #444444;
}

.faq {
  padding: 24px 0 36px;
}

.faq--red {
  background: var(--brand-red);
  color: #000000;
  padding: 32px 0 38px;
  border-radius: 0;
}

.faq__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 24px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq--red .faq-list {
  padding: 0 16px;
}

.faq details {
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  background: #ffffff;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  padding-left: 26px;
  position: relative;
  font-size: 14px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "+";
  position: absolute;
  left: 6px;
  top: 0;
  color: #000000;
  font-weight: 700;
}

.faq details[open] summary::before {
  content: "−";
}

.faq p {
  margin: 10px 0 0;
  font-size: 13px;
  color: #2f2f2f;
}

.comments {
  padding: 24px 0 20px;
  text-align: center;
}

.comments h2 {
  margin-bottom: 18px;
  color: #b31217;
}

.comment-list {
  display: grid;
  gap: 16px;
  text-align: left;
}

.comment {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  background: #f5f5f5;
  padding: 12px;
  border-radius: 8px;
}

.comment__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.comment__body h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.comment__body p {
  margin: 0 0 6px;
  font-size: 13px;
}

.comment__meta {
  font-size: 11px;
  color: #6d6d6d;
}

.comment__reactions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
}

.comment__reactions img {
  width: 40px;
}

.comment__closed {
  margin-top: 16px;
  font-size: 12px;
  color: #6f6f6f;
}

.site-footer {
  background: #0c0c0c;
  color: #9a9a9a;
  text-align: center;
  padding: 16px 10px;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 640px) {
  .site-header {
    font-size: 20px;
  }

  .watching {
    font-size: 16px;
  }

  .references h2 {
    font-size: 20px;
  }

  .offer-card--highlight {
    transform: none;
  }

  .testimonials__polaroid {
    display: none;
  }

  .testimonials__polaroid--mobile {
    display: block;
  }

  .comment {
    grid-template-columns: 48px 1fr;
  }

  .comment__avatar {
    width: 48px;
    height: 48px;
  }

  .testimonial-card {
    grid-template-columns: 80px 1fr;
    padding: 12px;
  }

  .testimonial-card__media img {
    width: 64px;
    height: 64px;
  }

  .guarantee__box h2 {
    font-size: 1.4em;
  }

  .guarantee__box h3 {
    font-size: 1.2em;
  }

  .guarantee__box p {
    font-size: 0.95em;
  }
}
