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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #8E2D44, #6b1f31);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(142, 45, 68, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(142, 45, 68, 0.5);
}

/* ===========================
   SECURITY TOPBAR
=========================== */
.security-topbar {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.2px;
}

/* ===========================
   TOAST COMPRA RECENTE
=========================== */
.purchase-toast {
  position: fixed;
  bottom: 24px;
  right: 16px;
  background: #fff;
  border: 2px solid #8E2D44;
  border-radius: 14px;
  padding: 12px 36px 12px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  z-index: 9999;
  width: 280px;
  max-width: calc(100vw - 32px);
  height: auto;
  max-height: none;
  overflow: hidden;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
  pointer-events: none;
}

.purchase-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Toast topo-direito (igual ref. imagem 1) */
.purchase-toast--top {
  bottom: auto;
  top: 16px;
  right: 16px;
  transform: translateY(-60px);
}

.purchase-toast--top.show {
  transform: translateY(0);
}

.toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.toast-inner {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  height: auto;
}

.toast-avatar {
  font-size: 1.8rem;
  flex-shrink: 0;
  background: #fce8ec;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-info strong {
  font-size: 0.9rem;
  color: #1a1a1a;
}

.toast-info span {
  font-size: 0.82rem;
  color: #8E2D44;
  font-weight: 600;
}

.toast-info small {
  font-size: 0.75rem;
  color: #6b6b6b;
}

/* ===========================
   REVEAL AO SCROLL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   BADGE GRID (hero)
=========================== */
.badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.badge {
  background: #fce8ec;
  color: #8E2D44;
  border: 1px solid #d4768a;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-icon { font-size: 1rem; }

/* ===========================
   HERO
=========================== */
.hero {
  background: linear-gradient(135deg, #fdf0f3 0%, #fce8ec 100%);
  padding: 0 0 0;
  border-bottom: 1px solid #f0cdd4;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.hero-image {
  flex: 0 0 560px;
  align-self: flex-end;
}

.hero-image img {
  width: 100%;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.10);
  display: block;
}

.hero-content {
  flex: 1;
  padding: 50px 0 60px;
}

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-highlight {
  color: #F59E0B;
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* ===========================
   POR QUE ESCOLHER
=========================== */
.why-section {
  padding: 70px 0 60px;
  background: #fff;
}

.why-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.why-card {
  background: #fafafa;
  border: 1px solid #f0cdd4;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(142, 45, 68, 0.1);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #8E2D44;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

/* ===========================
   GALERIA
=========================== */
.gallery-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #fdf0f3 0%, #fff 100%);
}

.gallery-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 36px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(142, 45, 68, 0.18);
}

/* ===========================
   DEPOIMENTOS
=========================== */
.testimonials-section {
  padding: 70px 0;
  background: #fff;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.rating-text {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #8E2D44;
  margin-bottom: 36px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.testimonials-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ===========================
   OFERTAS
=========================== */
.offers-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #fdf0f3 0%, #fce8ec 100%);
}

.urgency-bar {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 4px 16px rgba(220,38,38,0.35);
  animation: pulse 2s ease-in-out infinite;
  will-change: opacity;
}

.offer-timer {
  background: rgba(0,0,0,0.25);
  padding: 4px 14px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 900;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.88; }
}

.offers-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 40px auto 0;
}

.offer-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.offer-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}

.offer-icon-premium {
  filter: drop-shadow(0 2px 8px rgba(245,158,11,0.4));
}

.offer-highlight {
  border-color: #F59E0B;
  box-shadow: 0 8px 40px rgba(245, 158, 11, 0.2);
  background: linear-gradient(180deg, #fffbf0 0%, #fff 60%);
}

.offer-highlight:hover {
  box-shadow: 0 16px 56px rgba(245, 158, 11, 0.28);
}

.best-seller-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F59E0B, #d97706);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 22px;
  border-radius: 50px;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(245,158,11,0.45);
}

.offer-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.price-from {
  font-size: 1.05rem;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 500;
}

.discount-badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin: 8px 0;
}

.discount-badge-premium {
  background: linear-gradient(135deg, #F59E0B, #d97706);
}

.price-main {
  font-size: 3rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
  margin-bottom: 6px;
}

.price-main-premium {
  color: #F59E0B;
}

.savings {
  font-size: 0.85rem;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 24px;
}

.premium-includes-label {
  background: linear-gradient(135deg, #fdf0f3, #fce8ec);
  border: 1px solid #d4768a;
  color: #8E2D44;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.features-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #333;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list-premium li {
  font-size: 0.87rem;
}

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

.excl {
  background: #fce8ec;
  color: #8E2D44;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 4px;
  vertical-align: middle;
}

.btn-offer {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-offer:hover {
  transform: translateY(-2px);
}

.btn-basic {
  background: linear-gradient(135deg, #2d6a4f, #1b4332);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45,106,79,0.35);
}

.btn-premium {
  background: linear-gradient(135deg, #8E2D44, #6b1f31);
  color: #fff;
  box-shadow: 0 4px 20px rgba(142, 45, 68, 0.45);
  position: relative;
  overflow: hidden;
}

.btn-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.15);
  transform: translateX(-150%) skewX(-20deg);
  animation: shimmer 2.5s infinite;
  will-change: transform;
}

@keyframes shimmer {
  0%   { transform: translateX(-150%) skewX(-20deg); }
  100% { transform: translateX(400%) skewX(-20deg); }
}

.social-proof {
  margin-top: 14px;
  font-size: 0.82rem;
  color: #888;
  font-style: italic;
  color: #6b7280;
}

/* ===========================
   FAQ
=========================== */
.faq-section {
  padding: 70px 0;
  background: #fff;
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 36px;
}

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

.faq-item {
  border: 1px solid #f0cdd4;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.2s;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #8E2D44;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: #fce8ec;
}

.faq-item p {
  padding: 0 22px 18px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===========================
   GARANTIA
=========================== */
.guarantee-section {
  padding: 50px 0 60px;
  background: #fdf0f3;
  content-visibility: auto;
  contain-intrinsic-size: 0 280px;
}

/* Faixa de selos */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px 28px;
  max-width: 860px;
  margin: 0 auto 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  text-align: center;
}

.trust-icon {
  font-size: 1.7rem;
  line-height: 1;
}

.trust-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #444;
  line-height: 1.35;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: #e5e7eb;
  flex-shrink: 0;
}

/* Caixa de garantia */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 2px solid #d4768a;
  border-radius: 20px;
  padding: 28px 32px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(142, 45, 68, 0.1);
}

.guarantee-icon-wrap {
  flex-shrink: 0;
  background: linear-gradient(135deg, #fce8ec, #fdf0f3);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d4768a;
}

.guarantee-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.guarantee-text {
  flex: 1;
}

.guarantee-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #8E2D44;
  margin-bottom: 6px;
}

.guarantee-text p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

.guarantee-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid #f0cdd4;
}

.guarantee-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.g-stars { font-size: 1rem; }
.g-num   { font-size: 1.4rem; font-weight: 900; color: #8E2D44; line-height: 1; }
.g-count { font-size: 0.72rem; color: #888; }

.guarantee-buyers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: #fce8ec;
  border-radius: 10px;
  padding: 8px 14px;
}

.g-buyers-num   { font-size: 1.3rem; font-weight: 900; color: #8E2D44; line-height: 1; }
.g-buyers-label { font-size: 0.7rem; font-weight: 600; color: #8E2D44; text-align: center; line-height: 1.3; }

/* Parcelamento nos cards de oferta */
.price-installment {
  font-size: 0.92rem;
  color: #555;
  margin: 4px 0 6px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-block;
}

.price-installment strong {
  color: #16a34a;
  font-size: 1.05rem;
  font-weight: 900;
}

.price-installment-premium {
  background: #fffbeb;
  border-color: #fcd34d;
}

.price-installment-premium strong {
  color: #d97706;
}

/* Parcela destaque (grande, no topo) */
.price-installment-hero {
  display: block;
  font-size: 1rem;
  margin: 6px 0 4px;
  background: none;
  border: none;
  padding: 0;
}

.price-installment-hero strong {
  font-size: 3rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
}

.price-installment-premium.price-installment-hero strong {
  color: #F59E0B;
}

/* Preço à vista pequeno (abaixo da parcela) — seletor específico vence .price-main */
.price-main.price-main-small,
.offer-card .price-main-small {
  font-size: 1.05rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 4px;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .trust-bar { gap: 0; padding: 16px 12px; }
  .trust-item { padding: 0 12px; }
  .guarantee-box { flex-wrap: wrap; }
  .guarantee-right {
    flex-direction: row;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #f0cdd4;
    padding-top: 16px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .trust-bar { gap: 0; }
  .trust-item { padding: 8px 10px; }
  .trust-divider { display: none; }
  .guarantee-box { padding: 20px; }
  .guarantee-icon-wrap { width: 56px; height: 56px; }
  .guarantee-icon { font-size: 1.7rem; }
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 24px 20px;
  font-size: 0.85rem;
}

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-image {
    flex: none;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    align-self: auto;
  }
  .hero-image img {
    border-radius: 16px;
  }
  .hero-content {
    padding: 0 0 40px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .badge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
  .security-badges {
    margin-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .purchase-toast {
    bottom: 12px;
    right: 12px;
    width: 270px;
    max-width: calc(100vw - 24px);
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    align-self: flex-start;
  }
  .badge-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .price-main {
    font-size: 2.2rem;
  }
  .price-main.price-main-small,
  .offer-card .price-main-small {
    font-size: 1rem !important;
  }
  .price-installment-hero strong {
    font-size: 2.3rem;
  }
  .faq-section h2,
  .why-section h2,
  .gallery-section h2,
  .testimonials-section h2,
  .offers-section h2 {
    font-size: 1.6rem;
  }
}

/* ===========================
   CARROSSEL GALERIA
=========================== */
.carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 64px;
}

.carousel-overflow {
  overflow: hidden;
  width: 100%;
  border-radius: 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  cursor: grab;
}

.carousel-track:active { cursor: grabbing; }

.carousel-track img {
  /* largura definida via JS */
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  transition: transform 0.2s, box-shadow 0.2s;
  pointer-events: none;
  user-select: none;
  flex-shrink: 0;
}

.carousel-track img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(142, 45, 68, 0.18);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #8E2D44;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(142,45,68,0.4);
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}

.carousel-btn:hover {
  background: #6b1f31;
  transform: translateY(-50%) scale(1.08);
}

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

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4768a;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: #8E2D44;
  transform: scale(1.3);
}

.carousel-hint {
  text-align: center;
  font-size: 0.78rem;
  color: #767676;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .carousel-wrapper { padding: 0 42px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
}

@media (max-width: 600px) {
  .carousel-wrapper { padding: 0 36px; }
  .carousel-btn { width: 32px; height: 32px; font-size: 0.9rem; }
}

/* ===========================
   DEPOIMENTOS WHATSAPP (3 col)
=========================== */
.testimonials-whatsapp {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-whatsapp img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  object-fit: cover;
}

@media (max-width: 700px) {
  .testimonials-whatsapp {
    grid-template-columns: 1fr !important;
    max-width: 380px;
  }
}

/* ===========================
   BÔNUS ESPECIAL — JOGOS BÍBLICOS
=========================== */
.bonus-games-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff 0%, #fdf0f3 100%);
}

.bonus-games-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #8E2D44;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.bonus-games-label span {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #d4768a;
}

.bonus-games-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.bonus-games-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.bonus-games-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.bonus-games-images img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

@media (max-width: 700px) {
  .bonus-games-images {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

@media (max-width: 600px) {
  .bonus-games-title {
    font-size: 1.6rem;
  }
  .bonus-games-label span {
    width: 36px;
  }
}

/* ===========================
   CARROSSEL DEPOIMENTOS
=========================== */
.testi-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 760px;   /* largura para 2 capturas de tela lado a lado */
  margin: 0 auto;
}

.testi-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.testi-track {
  display: flex;
  will-change: transform;
  align-items: flex-start;
}

.testi-slide {
  flex-shrink: 0;
  overflow: hidden;
  padding: 0 6px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.testi-slide img {
  width: 100%;
  margin: 0 auto;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 16px;
  pointer-events: none;
  user-select: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.testi-btn {
  background: #8E2D44;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(142,45,68,0.35);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.testi-btn:hover {
  background: #6b1f31;
  transform: scale(1.08);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4768a;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.testi-dot.active {
  background: #8E2D44;
  transform: scale(1.35);
}

@media (max-width: 600px) {
  .testi-carousel-wrapper {
    max-width: 100%;
    gap: 6px;
  }
  .testi-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.9rem;
  }
  .testi-slide {
    padding: 0 4px;
  }
  .testi-slide img {
    max-height: 600px;
    border-radius: 12px;
  }
}
