* {
  box-sizing: border-box;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #fff;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* TOP BAR */
.top-bar {
  background: #111;
  text-align: center;
}

.top-main { color: #fff; font-weight: bold; font-size: 18px; }
.top-sub { color: orange; font-weight: bold; }
.top-trust { color: #ccc; font-size: 14px; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  border: 1px solid #ddd;
  padding: 30px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.card.featured {
  border: 2px solid orange;
}

.img-placeholder {
  height: 180px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.price {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}


button {
  background: orange;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
}

/* QUALITY */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 15px;
  text-align: center;
}

/* INGREDIENTS */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.ingredient {
  border: 2px solid orange;
  border-radius: 50%;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: .3s;
}

.ingredient:hover {
  background: orange;
  color: #fff;
}

.ingredient span {
  font-size: 13px;
  margin-top: 8px;
}



/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  text-align: center;
}
.img-placeholder img,
.creator-img img,
.final-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
.img-placeholder img {
  max-height: 160px;
}
/* TOP BANNER MODERN */
.top-banner {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: #fff;
  padding: 40px 0;
}

.top-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.top-left h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.top-left h1 span {
  color: #ff8c00;
}

.top-badge {
  display: inline-block;
  background: #ff8c00;
  color: #111;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 10px;
}

.top-warning {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #ff3b3b;
}

/* RIGHT SIDE */
.top-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.trust-item .check {
  background: #00d084;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.trust-item.highlight .check {
  background: #00d084;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .top-container {
    flex-direction: column;
    text-align: center;
  }

  .top-right {
    align-items: center;
  }
}
/* COUNTDOWN TIMER */
.top-warning-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.countdown {
  background: #ff3b3b;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 2px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.countdown span {
  min-width: 24px;
  display: inline-block;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-warning-wrapper {
    justify-content: center;
  }
}
/* PRODUCT SECTION */
.product-section {
  padding: 60px 20px;
  background: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* DESTAQUE */
.product-card.featured {
  border: 3px solid #ff8c00;
  transform: scale(1.05);
}

/* BADGE */
.badges {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.header-badge {
  position: static; /* 🔥 impede bug */
  background: #111;
  color: #00e676;
  font-size: 15px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge.highlight {
  background: linear-gradient(90deg, #ff7a18, #ffb347);
  color: #000;
}

/* IMAGEM */
.product-card img {
  max-width: 170px;
  margin: 25px auto 15px;
  display: block;
}

/* TITULO */
.product-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* SUB */
.sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}



.price .old {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.price .new {
  font-size: 26px;
  font-weight: 800;
  color: #ff7a18;
}

/* BOTÃO */
.cart-btn {
  width: 100%;
  background: linear-gradient(90deg, #ff7a18, #ffb347);
  color: #000;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-btn:hover {
  background: linear-gradient(90deg, #ffb347, #ff7a18);
  transform: scale(1.05);
}

/* INGREDIENTS SECTION */
.ingredients-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.ingredients-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.ingredients-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}



/* CARD */
.ingredient-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.ingredient-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ICON */
.ingredient-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  border-radius: 50%;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* TEXT */
.ingredient-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .ingredient-card {
    padding: 24px 16px;
  }

  .ingredient-icon {
    width: 68px;
    height: 68px;
    font-size: 30px;
    margin-bottom: 14px;
  }

  .ingredient-card h3 {
    font-size: 16px;
  }

  .ingredient-card p {
    font-size: 14px;
  }
}

/* =========================
   FAQ SECTION – PREMIUM
========================= */

.faq-section {
  padding: 90px 20px;
  max-width: 950px;
  margin: auto;
  background: #ffffff;
}

/* TITLE */
.faq-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.faq-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 55px;
  line-height: 1.6;
}

/* CONTAINER */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.faq-item {
  background: #f9f9f9;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 28px;
  font-size: 19px;
  font-weight: 700;
  color: #111; /* 🔥 TEXTO ESCURO */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* HOVER */
.faq-question:hover {
  background: #eeeeee;
}

/* ICON */
.faq-icon {
  font-size: 28px;
  color: #ff7a18;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 16.5px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 12px;
}

/* ACTIVE STATE */
.faq-item.active {
  background: #ffffff;
  border-left: 5px solid #ff7a18;
}

.faq-item.active .faq-answer {
  max-height: 700px;
  padding-top: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


.faq-answer p {
  padding: 10px 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/* =========================
   FINAL OFFER – ADVANCED
========================= */

.final-offer-advanced {
  padding: 110px 20px;
  background: #ffffff;
  text-align: center;
}

.final-title {
  font-size: 40px;
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
}

.final-subtitle {
  font-size: 19px;
  color: #555;
  max-width: 760px;
  margin: 0 auto 70px;
  line-height: 1.7;
}

/* WRAPPER */
.offer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* FEATURES */
.features {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.feature-card {
  background: #f9f9f9;
  border-radius: 22px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* HOVER */
.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(255,122,24,0.35);
}

/* ICON */
.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

/* CENTER PRODUCT – FIXED */
.product-center-advanced {
  position: relative;
  width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* INNER COLUMN */
.product-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

/* IMAGE */
.product-inner img {
  max-width: 240px;
  display: block;
}

/* CTA */
.cta-advanced {
  margin-top: 26px;
  padding: 18px 44px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(255,122,24,0.5);
  transition: all 0.3s ease;
}

.cta-advanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(255,122,24,0.7);
}
/* =========================
   ARROWS – FIXED & SAFE
========================= */

/* As setas ficam ATRÁS */
.product-center-advanced {
  position: relative;
  z-index: 1;
}

/* Cards SEMPRE acima */
.feature-card {
  position: relative;
  z-index: 3;
}

/* Arrow base */
.arrow {
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, #ff7a18, #ffb347);
  z-index: 0; /* 🔥 atrás de tudo */
  pointer-events: none;
}

/* LEFT SIDE – para antes dos cards */
.arrow.left.top {
  width: 70px;
  left: -70px;
  top: 28%;
}

.arrow.left.middle {
  width: 85px;
  left: -85px;
  top: 50%;
}

.arrow.left.bottom {
  width: 70px;
  left: -70px;
  top: 72%;
}

/* RIGHT SIDE – para antes dos cards */
.arrow.right.top {
  width: 70px;
  right: -70px;
  top: 28%;
}

.arrow.right.middle {
  width: 85px;
  right: -85px;
  top: 50%;
}

.arrow.right.bottom {
  width: 70px;
  right: -70px;
  top: 72%;
}


/* RESPONSIVE */
@media (max-width: 950px) {
  .offer-wrapper {
    flex-direction: column;
  }

  .features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-center-advanced {
    margin: 40px 0;
  }

  .arrow {
    display: none;
  }
}
.site-footer {
  background: radial-gradient(circle at top, #1a1a1a, #0a0a0a);
  color: #cfcfcf;
  padding: 60px 20px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-logo h3 {
  color: #ff7a2f;
  font-size: 26px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.footer-logo p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #ff7a2f;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.75;
}

.footer-disclaimer {
  max-width: 900px;
  margin: auto;
  font-size: 12px;
  line-height: 1.7;
  color: #9b9b9b;
}

.footer-disclaimer a {
  color: #ff7a2f;
  text-decoration: underline;
}

.footer-copy {
  margin-top: 30px;
  font-size: 12px;
  color: #777;
}
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
.urgency-box {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.urgency-text {
  color: #ff9a3c;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 122, 47, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.time-box {
  background: linear-gradient(180deg, #1f1f1f, #000);
  border: 2px solid #ff7a2f;
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 62px;
  text-align: center;
  box-shadow: 0 0 12px rgba(255, 122, 47, 0.35);
}

.time-box span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.time-box small {
  font-size: 10px;
  font-weight: 700;
  color: #ff7a2f;
  letter-spacing: 1px;
}

.colon {
  color: #ff7a2f;
  font-size: 26px;
  font-weight: 900;
}
.urgency-wrapper {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* TEXTO DE ESCASSEZ */
.urgency-label {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff9a3c;
  background: linear-gradient(90deg, rgba(255,122,47,.15), rgba(255,122,47,.05));
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 0 14px rgba(255,122,47,.35);
  text-align: center;
}

/* TIMER */
.countdown-premium {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CAIXAS DO TEMPO */
.time-unit {
  background: linear-gradient(135deg, #00ff99, #00cc66);
  border: 2px solid #ff7a2f;
  border-radius: 14px;
  width: 92px;
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 0 25px rgba(255,122,47,.45),
    inset 0 0 10px rgba(255,255,255,.05);
}

/* NÚMEROS */
.time-unit span {
  font-size: 36px;
  font-weight: 900;
  color: hsl(0, 0%, 4%);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

/* TEXTO */
.time-unit small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: hsl(0, 0%, 5%);
  margin-top: 4px;
}

/* DIVISOR */
.divider {
  font-size: 36px;
  font-weight: 900;
  color: #ff7a2f;
  margin: 0 10px;
}
@media (max-width: 600px) {
  .time-unit {
    width: 70px;
    height: 70px;
  }

  .time-unit span {
    font-size: 26px;
  }

  .divider {
    font-size: 28px;
  }
}
/*ultima açao*/
.top-header {
  background: #0f0f0f;
  color: #ffffff;
  width: 100%;
  padding: 40px 16px 32px; /* 👈 MAIS ESPAÇO EM CIMA */
  display: flex;
  justify-content: center;
  overflow: visible;
  position: relative;
}



.sub {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #ff7a2f;
}


.secure-offer {
  text-align: center;
  padding: 40px 20px 30px;
  background: radial-gradient(
    circle at top,
    rgba(255, 140, 0, 0.15),
    transparent 70%
  );
}

.secure-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 12px;
}

.secure-title span {
  color: #ff8c00;
  text-shadow: 0 0 12px rgba(255, 140, 0, 0.6);
}

.secure-subtitle {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffb347;
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.35);
  box-shadow: 0 0 18px rgba(255, 140, 0, 0.25);
  margin-bottom: 26px;
}


.secure-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00ff99, #00cc66);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 140, 0, 0.35);
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.secure-badge .icon {
  color: #000;
  font-size: 18px;
  font-weight: 900;
}

.below-hero-media {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.media-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}



/* =========================
   HERO MEDIA – TRANSPARENT
========================= */

.below-hero-media {
  padding: 30px 20px 8px;
  background: transparent;
  margin-top: 0;
}

.media-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}

/* VIDEO */
.media-video {
  flex: 1.3;
}

.media-video video {
  width: 100%;
  border-radius: 14px;
  background: transparent;
}

/* IMAGE */
.media-image {
  flex: 1;
  text-align: center;
}

.media-image img {
  max-width: 90%;
  height: auto;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .media-container {
    flex-direction: column;
    gap: 50px;
  }
}


/* =========================
   ULTRA ATTENTION CTA BUTTON
========================= */

.official-button-wrapper {
  max-width: 1200px;
  margin: 30px auto 15px;
  padding: 0 20px;
}

.official-button {
  display: block;
  width: 100%;
  padding: 28px 20px;

  text-align: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  color: #000;
  background: linear-gradient(135deg, #00ff99, #00cc66);
  border-radius: 18px;
  text-decoration: none;

  box-shadow: 
    0 0 0 rgba(0,255,153,0.8),
    0 18px 45px rgba(0,255,153,0.45);

  animation: pulseScale 1.8s infinite ease-in-out;
  transition: transform 0.2s ease;
}

/* HOVER */
.official-button:hover {
  transform: scale(1.05);
}

/* 🔥 PULSE + SCALE */
@keyframes pulseScale {
  0% {
    transform: scale(1);
    box-shadow: 
      0 0 0 0 rgba(0,255,153,0.8),
      0 18px 45px rgba(0,255,153,0.45);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 
      0 0 25px 10px rgba(0,255,153,0.9),
      0 25px 60px rgba(0,255,153,0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 
      0 0 0 0 rgba(0,255,153,0.8),
      0 18px 45px rgba(0,255,153,0.45);
  }
}


.promo-banner-section {
  padding: 30px 20px;
  background: transparent;
}

.promo-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* IMAGEM */
.promo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

/* BOTÃO */
.promo-cta {
  flex-shrink: 0;
}

.promo-button {
  display: inline-block;
  padding: 22px 38px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
  animation: pulseGlow 1.6s infinite;
  transition: transform 0.3s ease;
}

/* HOVER */
.promo-button:hover {
  transform: scale(1.08);
}

/* ANIMAÇÃO DE PULSAR */
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(0, 255, 136, 0.5);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 32px rgba(0, 255, 136, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(0, 255, 136, 0.5);
  }
}
@media (max-width: 768px) {
  .promo-banner-container {
    flex-direction: column;
    text-align: center;
  }

  .promo-button {
    width: 100%;
    max-width: 320px;
  }
}
/* VARIAÇÃO MAIOR – ORDER NOW */
.official-button-large {
  font-size: 26px;       /* maior */
  padding: 32px 24px;   /* mais alto */
  border-radius: 20px;  /* mais robusto */
}


.product-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disclaimer {
  font-size: 10.8px;           /* pequeno, mas legível */
  line-height: 1.35;
  color: #a6abb2;              /* cinza neutro, não chama atenção */
  text-align: center;
  max-width: 380px;
  margin: 8px auto 14px;       /* colado no frasco, afastado do botão */
  letter-spacing: 0.1px;
  opacity: 0.85;
  user-select: none;           /* evita seleção visual feia */
}




@media (max-width: 900px) {

  /* layout geral */
  .offer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* mata o layout lateral */
  .features.left,
  .features.right {
    position: static;
    width: 100%;
    max-width: 420px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0 auto 18px;
    justify-items: center;
  }

  /* garante 6 ícones juntos */
  .features.left {
    order: 1;
  }

  .features.right {
    order: 1;
  }

  /* frasco sempre abaixo */
  .product-center-advanced {
    order: 2;
    margin-top: 10px;
  }

  /* card certinho */
  .feature-card {
    width: 100%;
    max-width: 110px;
    padding: 14px 10px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* ícone NUNCA sai do círculo */
  .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 6px;
  }

  /* remove setas */
  .arrow {
    display: none !important;
  }
}
