/* ======================================
   DESIGN SYSTEM — Kit Setembro Amarelo
   ====================================== */

/* Garante que fontes do Google não bloqueiam a renderização */
@font-face { font-display: swap; }

:root {
  --yellow: #F5C518;
  --yellow-dark: #E09900;
  --yellow-light: #FFF3B0;
  --gold: #D4A017;
  --orange: #E99413;
  --green: #22C55E;
  --red: #EF4444;
  --red-dark: #B91C1C;

  --bg-dark: #0A0A0F;
  --bg-card: #13131A;
  --bg-card2: #1A1A25;
  --bg-surface: #1E1E2E;

  --text-primary: #FFFFFF;
  --text-secondary: #C4C4D4;
  --text-muted: #7A7A9A;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-glow: 0 0 60px rgba(245, 197, 24, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-btn: 0 8px 24px rgba(245, 197, 24, 0.4);

  --font-main: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======================================
   RESET & BASE
   ====================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.strike {
  text-decoration: line-through;
  opacity: 0.7;
}

/* ======================================
   ANIMATIONS
   ====================================== */

@keyframes pulse-btn {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-btn); }
  50% { transform: scale(1.04); box-shadow: 0 12px 36px rgba(245, 197, 24, 0.6); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scarcityFill {
  from { width: 0%; }
  to { width: 92%; }
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-active {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   TOP BAR
   ====================================== */

.topbar {
  background: linear-gradient(90deg, #B45309, var(--orange), #B45309);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.topbar strong {
  font-weight: 800;
}

.topbar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
}

/* ======================================
   HERO SECTION
   ====================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top left, #1A1400 0%, var(--bg-dark) 60%);
  padding: 80px 0 60px;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Badge */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-btn 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.5);
}

/* Titles */
.hero-title {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 10px;
  line-height: 1.5;
}

/* Stars */
.star-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.stars {
  font-size: 1.1rem;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Bullets */
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-bullets li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* Price Box */
.hero-price-box {
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: inline-block;
}

.price-from {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-from .strike {
  color: var(--red);
  font-weight: 600;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.price-currency {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--yellow);
}

.price-value {
  font-family: var(--font-main);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.price-cents {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--yellow);
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  color: #000;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  border-radius: inherit;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 197, 24, 0.5);
}

.btn-cta.pulse {
  animation: pulse-btn 2.5s ease-in-out infinite;
  will-change: transform;
}

.btn-cta.big-cta {
  font-size: 1.2rem;
  padding: 22px 48px;
  width: 100%;
  max-width: 520px;
}

/* Urgency */
.urgency-box {
  margin-top: 16px;
}

.urgency-bar-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.urgency-bar {
  background: linear-gradient(90deg, var(--red), #FF6B6B);
  height: 100%;
  width: 92%;
  border-radius: 100px;
  position: relative;
  animation: scarcityFill 2s ease-out forwards;
}

.urgency-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ======================================
   CAROUSEL
   ====================================== */

.hero-carousel {
  position: relative;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.slide-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: rgba(245, 197, 24, 0.4);
}

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

.carousel-dots {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--yellow);
  width: 20px;
  border-radius: 100px;
}

/* ======================================
   SECTION HEADERS
   ====================================== */

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.25);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.bonus-tag {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
  color: var(--green);
}

.proof-tag {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  color: #A5B4FC;
}

.section-title {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ======================================
   KITS SECTION
   ====================================== */

.kits-section {
  padding: 80px 0;
  background: var(--bg-card);
  position: relative;
}

.kits-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.kit-item {
  background: var(--bg-surface);
  border: 1px solid rgba(245, 197, 24, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: default;
}

.kit-item:hover {
  border-color: rgba(245, 197, 24, 0.4);
  background: rgba(245, 197, 24, 0.05);
  color: var(--text-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.1);
}

.kit-icon {
  font-size: 2rem;
  line-height: 1;
}

.kit-item-full {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(233, 148, 19, 0.1));
  border-color: rgba(245, 197, 24, 0.3);
  color: var(--yellow);
  font-weight: 700;
  font-size: 1rem;
  flex-direction: row;
  justify-content: center;
  padding: 16px;
}

/* ======================================
   BONUS SECTION
   ====================================== */

.bonus-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0D1A0D 100%);
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.bonus-card {
  background: var(--bg-card2);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.4);
}

.bonus-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.bonus-img-wrap {
  overflow: hidden;
}

.bonus-img-wrap img {
  width: 100%;
  transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-img-wrap img {
  transform: scale(1.04);
}

.bonus-info {
  padding: 16px 20px 20px;
}

.bonus-info h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bonus-old {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.bonus-free {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  margin-top: 4px;
}

.bonus-total-value {
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.bonus-val {
  color: var(--text-muted);
}

.free-tag {
  color: var(--green);
  font-size: 1.1rem;
}

/* ======================================
   SOCIAL PROOF
   ====================================== */

.proof-section {
  padding: 80px 0;
  background: var(--bg-card);
  position: relative;
}

.proof-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.6), transparent);
}

.proof-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proof-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.proof-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

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

/* ======================================
   OFFER SECTION
   ====================================== */

.offer-section {
  padding: 80px 0;
  background: radial-gradient(ellipse at center, #1A0F00 0%, var(--bg-dark) 70%);
  position: relative;
  overflow: hidden;
}

.offer-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}

.offer-card {
  background: var(--bg-card2);
  border: 2px solid rgba(245, 197, 24, 0.25);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 80px rgba(245, 197, 24, 0.1);
  position: relative;
}

.offer-header-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #000;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.offer-title {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
}

.offer-highlight {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.offer-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

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

.offer-divider {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.offer-pricing {
  margin-bottom: 28px;
}

.offer-original {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.red-strike {
  color: var(--red);
  font-weight: 700;
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}

.offer-currency {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 600;
  color: var(--yellow);
}

.offer-value {
  font-family: var(--font-main);
  font-size: 6rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.offer-cents {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow);
}

.offer-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Scarcity bar */
.scarcity-block {
  margin-bottom: 28px;
}

.scarcity-bar-outer {
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  height: 14px;
  overflow: hidden;
  margin-bottom: 8px;
}

.scarcity-bar-inner {
  background: linear-gradient(90deg, #EF4444, #FF6B6B);
  height: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  animation: scarcityFill 2.5s ease-out forwards;
  width: 0%;
}

.scarcity-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.city-num {
  font-weight: 800;
  color: var(--yellow);
}

.offer-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 20px;
}

.secure-badges {
  display: flex;
  justify-content: center;
}

.secure-badge-img {
  max-width: 320px;
  opacity: 0.85;
  filter: brightness(0.9);
}

/* ======================================
   CAUSE SECTION
   ====================================== */

.cause-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0D1400, #1A1400);
}

.cause-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  max-width: 800px;
  margin: 0 auto;
}

.cause-icon {
  font-size: 4rem;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}

.cause-text h2 {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 10px;
}

.cause-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ======================================
   GUARANTEE SECTION
   ====================================== */

.guarantee-section {
  padding: 80px 0;
  background: var(--bg-card);
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.guarantee-img-wrap {
  flex-shrink: 0;
  width: 160px;
}

.guarantee-img-wrap img {
  width: 100%;
  animation: float 4s ease-in-out infinite;
}

.guarantee-sub {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 8px;
}

.guarantee-title {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.guarantee-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ======================================
   FINAL CTA
   ====================================== */

.final-cta {
  padding: 80px 0;
  background: radial-gradient(ellipse at center, #1A1400 0%, var(--bg-dark) 70%);
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.final-cta .btn-cta {
  margin: 0 auto;
}

/* ======================================
   FOOTER
   ====================================== */

.footer {
  background: #06060A;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 20px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer p {
  margin-bottom: 6px;
}

.footer a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--yellow);
}

/* ======================================
   RESPONSIVE — MOBILE
   ====================================== */

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-carousel {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-sub-title {
    font-size: 0.95rem;
  }

  .badge-pill {
    display: flex;
    justify-content: center;
  }

  .star-rating {
    justify-content: center;
  }

  .hero-bullets {
    align-items: flex-start;
  }

  .hero-price-box {
    width: 100%;
    text-align: center;
  }

  .price-value {
    font-size: 3.5rem;
  }

  .btn-cta {
    width: 100%;
    font-size: 1rem;
    padding: 16px 24px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .kits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-card {
    padding: 32px 24px;
  }

  .offer-value {
    font-size: 4.5rem;
  }

  .cause-card {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }

  .guarantee-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .guarantee-img-wrap {
    width: 120px;
    margin: 0 auto;
  }

  .final-cta h2 {
    font-size: 1.7rem;
  }

  .topbar {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .kits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-title {
    font-size: 1.4rem;
  }
}
