/* ============================================================
   STYLE.CSS — Colar São Bento
   Mobile-first | BEM-inspired | Sem inline styles
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #f1eae5;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ──────────────────────────────────────────────────────────
   2. VARIABLES
   ────────────────────────────────────────────────────────── */
:root {
  --color-bg:        #f1eae5;
  --color-white:     #ffffff;
  --color-black:     #000000;
  --color-text:      #333333;
  --color-muted:     #888888;
  --color-green:     #28a745;
  --color-green-dark:#1e7e34;
  --color-green-hover:#218838;
  --color-gold:      #d4af37;
  --color-gold-light:#f5d97a;
  --color-gold-dark: #b8962e;
  --color-red-urgency:#e05050;
  --color-cream:     #fff5ee;

  --shadow-card:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-heavy: 0 10px 30px rgba(0,0,0,0.18);
  --shadow-green: 0 6px 20px rgba(40,167,69,0.35);
  --shadow-gold:  0 4px 16px rgba(212,175,55,0.25);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  24px;

  --max-width: 800px;

  --transition: 0.2s ease;
}

/* ──────────────────────────────────────────────────────────
   3. LAYOUT HELPERS
   ────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.divider {
  border: none;
  border-bottom: 1px solid #e5e7eb;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────
   4. ANIMATIONS
   ────────────────────────────────────────────────────────── */
@keyframes goldShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes pixShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

@keyframes pulseBtn {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-green); }
  50%       { transform: scale(1.03); box-shadow: 0 10px 30px rgba(40,167,69,0.5); }
}

@keyframes couponShine {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────────────────────
   5. CTA BUTTON (reusável em toda a página)
   ────────────────────────────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-green);
  color: var(--color-cream);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  box-shadow: var(--shadow-green);
  transition: background var(--transition), transform var(--transition);
  width: 100%;
  max-width: 420px;
}

.btn-cta:hover {
  background: var(--color-green-hover);
  transform: translateY(-2px);
}

.pulse-btn {
  animation: pulseBtn 2.2s ease-in-out infinite;
}

.cta-section {
  padding: 20px 0;
  text-align: center;
  background: var(--color-bg);
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ──────────────────────────────────────────────────────────
   6. SECURITY BAR
   ────────────────────────────────────────────────────────── */
.security-bar {
  display: flex;
  justify-content: center;
}

.security-bar img {
  max-width: 80%;
  border-radius: var(--radius-sm);
}

/* ──────────────────────────────────────────────────────────
   7. HERO SECTION
   ────────────────────────────────────────────────────────── */
.hero-section {
  background: var(--color-bg);
  padding: 0 0 10px;
}

.hero-logo {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.hero-logo img {
  max-width: 44%;
  border-radius: var(--radius-sm);
  margin: 0 auto;
}

.hero-card {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  padding: 18px 16px;
  text-align: center;
  margin: 0 0 10px;
}

.hero-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.4;
  margin-bottom: 14px;
}

.hero-highlight {
  background: #ffe8a3;
  color: var(--color-black);
  padding: 2px 8px;
  border-radius: 6px;
}

.hero-product-img {
  margin: 0 auto 16px;
  max-width: 360px;
}

.hero-product-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  margin: 0 auto;
}

.hero-social-proof {
  margin: 14px 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.proof-number {
  color: #8b0000;
  font-weight: 700;
}

.stars {
  color: gold;
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin: 4px 0;
}

.review-count {
  font-size: 0.9rem;
  color: var(--color-text);
}

.buyer-avatars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px auto;
  max-width: 320px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #daa520;
  display: block;
}

.ra-badge {
  font-style: italic;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 12px 0;
}

.trust-badge-hero {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.trust-badge-hero img {
  max-width: 150px;
  border: 3px solid #ccc;
  border-radius: 10px;
  margin: 0 auto;
}

/* Stat box */
.stat-box {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 14px 20px;
  margin: 10px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  text-align: center;
}

/* Video wrapper */
.video-wrapper {
  max-width: 360px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.video-placeholder {
  background: #111;
  width: 100%;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  border-radius: 12px;
}

.video-placeholder i {
  font-size: 3rem;
}

.video-placeholder p {
  font-size: 0.9rem;
}

/* ──────────────────────────────────────────────────────────
   8. RELIGIOUS SECTION
   ────────────────────────────────────────────────────────── */
.religious-section {
  padding: 10px 0;
  background: var(--color-bg);
}

.section-label-box {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 12px 24px;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  text-align: center;
}

.religious-img img {
  width: 100%;
  display: block;
}

/* ──────────────────────────────────────────────────────────
   9. BENEFITS + CAROUSEL
   ────────────────────────────────────────────────────────── */
.benefits-section {
  padding: 0;
  background: var(--color-bg);
}

.benefits-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 28px 20px 24px;
  text-align: center;
  margin: 0;
}

.benefits-title {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.4;
}

.benefits-list {
  text-align: left;
  margin-bottom: 22px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #222;
}

.check {
  flex-shrink: 0;
  font-size: 1rem;
}

/* Carousel */
.carousel-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 auto 10px;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  font-size: 2rem;
  color: #111;
  padding: 4px 14px;
  border-radius: 10px;
  z-index: 10;
  transition: background var(--transition);
  line-height: 1;
}

.carousel-nav:hover {
  background: rgba(255,255,255,1);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding-bottom: 4px;
}

.carousel-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dots .dot.active {
  background: #000;
  transform: scale(1.2);
}

/* ──────────────────────────────────────────────────────────
   10. COUPON SECTION
   ────────────────────────────────────────────────────────── */
.coupon-section {
  padding: 14px 0;
  background: var(--color-bg);
}

.coupon-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  color: #111;
  margin-bottom: 18px;
}

.coupon-wrap {
  display: flex;
  justify-content: center;
}

.coupon-ticket {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 20px 22px 26px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,0.55) 0, rgba(255,255,255,0) 45%),
    linear-gradient(90deg, #ffeaa7, #ffd166, #f4c430, var(--color-gold), #ffd166, #ffeaa7);
  background-size: 300% 100%;
  animation: couponShine 6s linear infinite;
  box-shadow: 0 14px 24px rgba(0,0,0,0.12);
  overflow: visible;
}

.coupon-notch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg);
}

.coupon-notch--left  { left:  -14px; }
.coupon-notch--right { right: -14px; }

.coupon-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.coupon-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.35);
  font-size: 22px;
  flex-shrink: 0;
}

.coupon-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: #3c2f00;
  letter-spacing: 0.3px;
}

.coupon-sub-text {
  font-size: 0.85rem;
  color: #4a4a4a;
}

.coupon-dashed-line {
  height: 1px;
  width: 100%;
  margin: 10px 0 12px;
  background: repeating-linear-gradient(90deg, rgba(0,0,0,0.18) 0 10px, rgba(0,0,0,0) 10px 20px);
  opacity: 0.6;
}

.coupon-progress-wrap {
  background: #e9ecef;
  border-radius: 8px;
  height: 10px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.12);
}

.coupon-progress-bar {
  height: 100%;
  width: 88%;
  background: linear-gradient(90deg, #1fa833, #3ad348);
  transition: width 1.2s ease;
}

.coupon-info-text {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #2f2f2f;
  opacity: 0.9;
}

.coupon-btn-wrap {
  margin-top: 14px;
  text-align: right;
}

.btn-coupon {
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px rgba(40,167,69,0.35);
  transition: transform 0.12s ease, background var(--transition);
}

.btn-coupon:hover {
  transform: translateY(-1px);
  background: var(--color-green-hover);
}

.btn-coupon.released {
  background: #00b894;
  box-shadow: 0 6px 14px rgba(0,184,148,0.35);
}

/* ──────────────────────────────────────────────────────────
   11. PRODUCT DETAIL
   ────────────────────────────────────────────────────────── */
.product-detail-section {
  padding: 10px 0;
  background: var(--color-bg);
}

.product-detail-card {
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  background: var(--color-white);
  font-family: 'Poppins', sans-serif;
}

.product-detail-img {
  width: 100%;
  display: block;
}

.product-detail-header {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.product-detail-header h2 {
  font-size: 1.2rem;
  color: #111;
}

.product-detail-body {
  padding: 18px 20px;
}

.product-rating {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #111;
}

.stars-gold {
  color: #f5c518;
}

.product-rating small {
  color: #555;
  font-size: 0.8rem;
}

.product-features {
  font-size: 0.9rem;
  color: #111;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.check-icon {
  color: var(--color-green);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   12. SAINT SECTION
   ────────────────────────────────────────────────────────── */
.saint-section {
  padding: 10px 0;
  background: var(--color-bg);
}

.saint-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  color: #000;
}

.saint-title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  margin-bottom: 12px;
}

.saint-text-box {
  background: rgba(0,0,0,0.03);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
  font-weight: 500;
}

.saint-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.saint-img {
  max-width: 280px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.grimoire-title {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  margin: 24px 0 16px;
}

.grimoire-card {
  background: var(--color-white);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}

.grimoire-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  margin-bottom: 10px;
}

.grimoire-caption {
  font-size: 0.85rem;
  color: #000;
  font-weight: 500;
}

/* ──────────────────────────────────────────────────────────
   13. OFFERS / CHECKOUT SECTION
   ────────────────────────────────────────────────────────── */
.offers-section {
  background: #f4f4f2;
}

/* Timer */
.timer-block {
  background: #0d0d0d;
  padding: 28px 16px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.timer-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px);
  pointer-events: none;
}

.timer-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold-dark), var(--color-gold-light), var(--color-gold));
  background-size: 300% 100%;
  animation: goldShimmer 3s linear infinite;
  color: #1a0e00;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.timer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.timer-subtitle {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 18px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-digit {
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 10px;
  color: #39d468;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 4px;
  line-height: 1;
  padding: 8px 14px 4px;
  min-width: 72px;
  text-align: center;
  box-shadow: 0 0 18px rgba(57,212,104,0.18);
}

.cd-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: #333;
  line-height: 1;
  padding-bottom: 14px;
}

.urgency-text {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--color-red-urgency);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-red-urgency);
  animation: pulseDot 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Gold banner */
.gold-banner {
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  background-size: 200% 100%;
  animation: goldShimmer 4s linear infinite;
  padding: 13px 16px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #1a0e00;
}

/* Offers container */
.offers-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 22px 14px;
}

.offers-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

/* Offer card */
.offer-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  text-align: center;
}

.offer-card--featured {
  border: 2px solid var(--color-gold);
  box-shadow: 0 4px 28px rgba(212,175,55,0.18);
}

.offer-img-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 14px;
}

.offer-img-wrap img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

.offer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

/* Best seller badge */
.best-seller-badge {
  position: absolute;
  top: 14px;
  right: -4px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.best-seller-inner {
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  background-size: 250% 100%;
  animation: goldShimmer 2.8s linear infinite;
  color: #1a0e00;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 1.5px;
  padding: 6px 14px 6px 18px;
  border-radius: 4px 0 0 4px;
  box-shadow: -3px 3px 10px rgba(0,0,0,0.25);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.best-seller-fold {
  width: 0;
  height: 0;
  border-left: 4px solid #7a5e10;
  border-top: 6px solid transparent;
  align-self: flex-end;
}

/* PIX badge */
.pix-badge {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #27ae60;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pix-badge-label {
  background: linear-gradient(90deg, #1e8449, #27ae60, #52d68a, #27ae60, #1e8449);
  background-size: 250% 100%;
  animation: pixShimmer 2.4s linear infinite;
  color: var(--color-white);
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pix-badge-value {
  background: var(--color-white);
  color: #1a7a35;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-left: 1.5px solid #27ae60;
}

/* Price */
.price-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.price-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--color-green);
  line-height: 1;
  letter-spacing: 1px;
}

.price-cents {
  font-size: 1.4rem;
  vertical-align: super;
}

.price-unit {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 4px 0;
}

.offer-details {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}

/* Buy button */
.btn-buy {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  margin-top: 12px;
  box-shadow: var(--shadow-green);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-buy:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(40,167,69,0.45);
  color: var(--color-white);
}

/* ──────────────────────────────────────────────────────────
   14. EXCLUSIVE / AUTHENTICITY SECTION
   ────────────────────────────────────────────────────────── */
.exclusive-section {
  padding: 10px 0;
  background: var(--color-bg);
}

.exclusive-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  color: #000;
}

.exclusive-title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}

.exclusive-subtitle {
  text-align: center;
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 18px;
}

.exclusive-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.exclusive-img {
  max-width: 85%;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.exclusive-text-box {
  background: rgba(0,0,0,0.03);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.authenticity-box {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.15);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  color: #000;
  margin-top: 10px;
}

/* ──────────────────────────────────────────────────────────
   15. TESTIMONIALS VIDEO SECTION
   ────────────────────────────────────────────────────────── */
.testimonials-video-section {
  padding: 20px 0;
  background: var(--color-bg);
}

.testimonials-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 18px;
  color: #111;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.video-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 14px rgba(0,0,0,0.22);
  aspect-ratio: 9/16;
  position: relative;
}

.video-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ──────────────────────────────────────────────────────────
   16. FAQ SECTION
   ────────────────────────────────────────────────────────── */
.faq-section {
  padding: 10px 0;
  background: var(--color-bg);
}

.faq-box {
  background: var(--color-white);
  padding: 28px 18px;
  border-radius: 0;
}

.faq-main-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  margin-bottom: 8px;
}

.faq-intro {
  font-size: 0.95rem;
  text-align: center;
  color: #444;
  margin-bottom: 24px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  text-align: left;
  gap: 10px;
  line-height: 1.4;
}

.faq-chevron {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}

.faq-answer.is-open {
  max-height: 300px;
  padding-bottom: 16px;
}

/* ──────────────────────────────────────────────────────────
   17. SEAL SECTION
   ────────────────────────────────────────────────────────── */
.seal-section {
  padding: 16px 0;
  background: var(--color-bg);
  text-align: center;
}

.seal-img {
  max-width: 62%;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

/* ──────────────────────────────────────────────────────────
   18. FOOTER
   ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-cream);
  border-top: 1px solid #030f1d;
  padding: 24px 0;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #04172c;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.footer-contact {
  margin-bottom: 16px;
}

.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.footer-contact p,
.footer-legal p {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.footer-legal {
  margin-top: 16px;
  font-size: 0.85rem;
}

/* ──────────────────────────────────────────────────────────
   19. RESPONSIVE — TABLET (≥ 600px)
   ────────────────────────────────────────────────────────── */
@media (min-width: 600px) {
  .hero-product-img img {
    height: 380px;
  }

  .carousel-box {
    height: 380px;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .btn-cta {
    font-size: 1.1rem;
  }

  .benefits-title {
    font-size: 1.3rem;
  }

  .footer-nav {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

/* ──────────────────────────────────────────────────────────
   20. RESPONSIVE — DESKTOP (≥ 800px)
   ────────────────────────────────────────────────────────── */
@media (min-width: 800px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-product-img img {
    height: 420px;
  }

  .carousel-box {
    height: 420px;
    max-width: 480px;
  }

  .timer-title {
    font-size: 3.5rem;
  }

  .cd-digit {
    font-size: 3.8rem;
    min-width: 90px;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .testimonials-title {
    font-size: 2.4rem;
  }

  .offer-card {
    padding: 28px;
  }

  .product-detail-card {
    max-width: 480px;
  }
}
.video-container-vertical {
    position: relative;
    width: 100%;
    max-width: 400px; /* Largura máxima para não ficar gigante no PC */
    margin: 20px auto;
    aspect-ratio: 9 / 16; /* FORMATO VERTICAL */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .video-container-vertical video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo preencher todo o espaço vertical */
  }

  .vsl-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    background: rgba(0,0,0,0.3);
    color: #fff;
    z-index: 5;
    transition: opacity 0.3s;
  }

  .vsl-play-button {
    width: 80px; height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #000; font-size: 30px;
    margin-bottom: 10px;
  }
/* Container da grade de vídeos */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Força 2 colunas lado a lado */
  gap: 15px; /* Espaçamento entre os vídeos */
  padding: 10px;
}

/* O "card" que envolve cada vídeo */
.video-item {
  background-color: #f1f1f1; /* Fundo cinza claro igual da imagem 1 */
  border-radius: 20px; /* Bordas bem arredondadas */
  padding: 10px; /* Espaço entre a borda e o vídeo */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Sombra bem leve */
}

/* Ajuste do iframe para ficar redondo também */
.video-item iframe {
  border-radius: 15px;
  aspect-ratio: 9 / 16; /* Mantém o formato vertical */
  width: 100%;
  height: auto;
  display: block;
}

/* Ajuste para celular: manter 2 colunas ou passar para 1 se ficar muito apertado */
@media (max-width: 480px) {
  .video-grid {
    gap: 10px;
  }
  .video-item {
    padding: 5px;
    border-radius: 15px;
  }
}