/* ═══════════════════════════════════════════════
   MASTERCHEFF - ESTILOS GLOBAIS
   ═══════════════════════════════════════════════ */

:root {
  --gold: #c9a227;
  --gold-light: #f0c040;
  --gold-dark: #9a7b1a;
  --dark: #0d0d0d;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #242424;
  --dark-5: #2e2e2e;
  --text: #f0f0f0;
  --text-muted: #888;
  --text-faint: #555;
  --red: #e53e3e;
  --green: #38a169;
  --purple: #805ad5;

  --font-main: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(201, 162, 39, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 10px;
}

/* ══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-text {
  color: var(--text);
}

.logo-accent {
  color: var(--gold);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Cart Button */
.cart-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  position: relative;
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
}

.cart-count {
  background: var(--dark);
  color: var(--gold);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════
   CART SIDEBAR
═══════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--dark-2);
  border-left: 1px solid rgba(201, 162, 39, 0.2);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100vw;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.cart-close:hover {
  background: var(--dark-4);
  color: var(--text);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  margin: auto;
}

.cart-item {
  display: flex;
  gap: 12px;
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 12px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  background: var(--dark-5);
  border: none;
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.qty-value {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
}

.remove-item {
  background: none;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  font-size: 0.85rem;
  margin-left: auto;
  align-self: flex-start;
  transition: var(--transition);
}

.remove-item:hover {
  color: var(--red);
}

.cart-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.total-final {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold) !important;
  padding-top: 8px;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.total-final span {
  color: var(--gold) !important;
}

.btn-checkout {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

/* ══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(13, 13, 13, 0.92) 0%,
      rgba(13, 13, 13, 0.7) 50%,
      rgba(13, 13, 13, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 650px;
  padding-left: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(240, 240, 240, 0.8);
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.05rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 162, 39, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: fadeUp 0.8s ease 0.5s both;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 162, 39, 0.3);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════════ */
.benefits {
  background: var(--dark-3);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 24px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}

.benefit-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════
   SEÇÃO KITS
═══════════════════════════════════════════════ */
.kits-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.loading-kits {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px;
  color: var(--text-muted);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(201, 162, 39, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Kit Card */
.kit-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  group: true;
}

.kit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.kit-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--dark-4);
}

.kit-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.kit-card:hover .kit-card-img {
  transform: scale(1.08);
}

.kit-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--dark);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.kit-discount {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 50px;
}

.kit-card-body {
  padding: 20px;
}

.kit-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.kit-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kit-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.kit-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.kit-price-original {
  font-size: 0.9rem;
  color: var(--text-faint);
  text-decoration: line-through;
}

.kit-actions {
  display: flex;
  gap: 10px;
}

.btn-add-cart {
  flex: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
}

.btn-details {
  background: var(--dark-5);
  color: var(--text-muted);
  border: none;
  padding: 12px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-details:hover {
  background: var(--dark-4);
  color: var(--text);
}

/* ══════════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════════ */
.sobre {
  padding: 100px 0;
  background: var(--dark-2);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 12px 0 18px;
}

.sobre-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.sobre-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sobre-lista li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sobre-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-gold);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.sobre-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════════
   GARANTIA
═══════════════════════════════════════════════ */
.garantia {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(13, 13, 13, 0));
}

.garantia-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-gold);
}

.garantia-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.garantia-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
}

.garantia-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.garantia-selos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.selo {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════════════ */
.depoimentos {
  padding: 100px 0;
  background: var(--dark);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.depoimento-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-4px);
}

.stars {
  font-size: 1rem;
  margin-bottom: 14px;
}

.depoimento-card>p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.depoente {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depoente-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.depoente strong {
  display: block;
  font-size: 0.95rem;
}

.depoente small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 14px 0 20px;
  max-width: 260px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  background: var(--dark-4);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 0.82rem;
}

/* ══════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-box {
  background: var(--dark-3);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--dark-5);
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  z-index: 1;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--red);
  color: white;
}

.modal-gallery {
  display: flex;
  flex-direction: column;
}

.modal-img-main {
  width: 100%;
}

.modal-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: opacity 0.3s ease;
}

.modal-img-thumbs {
  display: flex;
  gap: 12px;
  padding: 16px 28px 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.modal-img-thumbs::-webkit-scrollbar {
  display: none;
}

.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: var(--transition);
  flex-shrink: 0;
}

.thumb-img:hover {
  opacity: 1;
}

.thumb-img.active {
  opacity: 1;
  border-color: var(--gold);
}

.modal-body {
  padding: 28px;
}

.modal-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  color: var(--dark);
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.modal-itens h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--gold);
}

.modal-itens ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.modal-itens li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal-itens li::before {
  content: '✅';
  font-size: 0.8rem;
}

.modal-pricing {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.modal-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.modal-price-old {
  font-size: 1rem;
  color: var(--text-faint);
  text-decoration: line-through;
}

.btn-add-modal {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 18px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-add-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 162, 39, 0.4);
}

/* ══════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark-3);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--text);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 360px;
  box-shadow: var(--shadow);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ══════════════════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════════════════ */
.checkout-page {
  min-height: 100vh;
  padding: 100px 0 60px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
}

.checkout-form-section {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.checkout-form-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--dark-4);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group input::placeholder {
  color: var(--text-faint);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-summary {
  background: var(--dark-3);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.checkout-summary h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
}

.summary-items {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  background: var(--dark-4);
  border-radius: var(--radius);
}

.summary-item-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.summary-item-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.summary-item-qty {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.summary-item-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}

.summary-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 16px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
  padding-top: 12px;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.cupom-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.cupom-input {
  flex: 1;
  background: var(--dark-4);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  text-transform: uppercase;
  transition: var(--transition);
}

.cupom-input:focus {
  border-color: var(--gold);
}

.btn-cupom {
  background: var(--dark-5);
  color: var(--text-muted);
  border: none;
  border-radius: var(--radius);
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-cupom:hover {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
}

.btn-finalizar {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 18px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
}

.btn-finalizar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 162, 39, 0.4);
}

.btn-finalizar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ══════════════════════════════════════════════
   PAGAMENTO PIX
═══════════════════════════════════════════════ */
.pix-page {
  min-height: 100vh;
  padding: 100px 0 60px;
}

.pix-container {
  max-width: 600px;
  margin: 0 auto;
}

.pix-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.pix-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.pix-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pix-card>p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pix-valor {
  background: rgba(201, 162, 39, 0.1);
  border: 2px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}

.pix-valor-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pix-valor-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
}

.pix-qr-section {
  margin-bottom: 24px;
}

.pix-qr {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: var(--radius);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid rgba(201, 162, 39, 0.3);
}

.pix-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pix-qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 0.85rem;
}

.pix-chave-section {
  background: var(--dark-4);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}

.pix-chave-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pix-chave-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pix-chave-value {
  flex: 1;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  word-break: break-all;
}

.btn-copiar {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-copiar:hover {
  transform: translateY(-2px);
}

.pix-instrucoes {
  text-align: left;
  background: var(--dark-4);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.pix-instrucoes h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.pix-instrucoes ol {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pix-instrucoes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-muted);
  counter-increment: steps;
}

.pix-instrucoes li::before {
  content: counter(steps);
  width: 22px;
  height: 22px;
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pix-pedido-info {
  background: var(--dark-4);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.pix-pedido-info h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pix-pedido-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}

.timer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.timer {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.btn-confirmar {
  width: 100%;
  background: linear-gradient(135deg, #38a169, #2d7a55);
  color: white;
  border: none;
  padding: 18px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 12px;
}

.btn-confirmar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(56, 161, 105, 0.3);
}

.pix-footer-note {
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ══════════════════════════════════════════════
   SUCESSO
═══════════════════════════════════════════════ */
.sucesso-page {
  min-height: 100vh;
  padding: 100px 0 60px;
}

.sucesso-container {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.sucesso-icon {
  font-size: 5rem;
  margin-bottom: 24px;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.sucesso-container h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.sucesso-container>p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.sucesso-card {
  background: var(--dark-3);
  border: 1px solid rgba(56, 161, 105, 0.3);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 24px;
}

.btn-voltar {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 16px 40px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-voltar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 162, 39, 0.4);
}

/* ══════════════════════════════════════════════
   ADMIN PAGE
═══════════════════════════════════════════════ */
.admin-page {
  min-height: 100vh;
  padding: 80px 0 40px;
}

.admin-login {
  max-width: 400px;
  margin: 100px auto;
  text-align: center;
}

.admin-login-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.admin-login-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.admin-header h1 {
  font-size: 1.6rem;
  font-weight: 800;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-aguardando {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.status-pago {
  background: rgba(56, 161, 105, 0.2);
  color: #68d391;
}

.status-enviado {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.status-cancelado {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0;
}

.admin-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 12px 24px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}

.admin-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.pedidos-table {
  width: 100%;
  border-collapse: collapse;
}

.pedidos-table th,
.pedidos-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
}

.pedidos-table th {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--dark-4);
}

.pedidos-table td {
  color: var(--text-muted);
}

.pedidos-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.config-form {
  max-width: 560px;
}

.section-divider {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 24px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.btn-salvar {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
}

.btn-salvar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
}

.btn-sair {
  background: var(--dark-4);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-sair:hover {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  border-color: var(--red);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   TABLET (≤ 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════
   MOBILE (≤ 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Tipografia ── */
  html {
    font-size: 15px;
  }

  /* ── Nav ── */
  .nav-links {
    display: none;
  }

  .nav-inner {
    padding: 0 16px;
    height: 60px;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .btn-cart {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  /* ── Hero ── */
  .hero-content {
    padding: 90px 20px 50px;
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-stat strong {
    font-size: 1.2rem;
  }

  /* ── Benefícios ── */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-item {
    padding: 16px 20px;
    flex-direction: row;
    gap: 14px;
  }

  /* ── Produtos ── */
  .kits-section {
    padding: 50px 0;
  }

  .kits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kit-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .kit-card-img-wrap {
    width: 130px;
    min-width: 130px;
    flex-shrink: 0;
    border-radius: 0;
  }

  .kit-card-img {
    height: 100%;
    object-fit: cover;
  }

  .kit-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .kit-name {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .kit-desc {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .price-display-wrap {
    margin-bottom: 8px;
  }

  .price-cc {
    font-size: 0.72rem;
  }

  .price-pix {
    font-size: 1.1rem;
  }

  .price-pix span {
    font-size: 0.62rem;
    padding: 2px 5px;
  }

  .stock-alert {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .kit-actions {
    display: flex;
    gap: 8px;
  }

  .btn-add-cart {
    flex: 1;
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .btn-details {
    padding: 10px 10px;
    font-size: 0.78rem;
    flex-shrink: 0;
  }

  /* ── Modal ── */
  .kit-modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal-content {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    animation: slideUpModal 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
  }

  @keyframes slideUpModal {
    from {
      transform: translateY(100%);
    }

    to {
      transform: translateY(0);
    }
  }

  .modal-close {
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .modal-img {
    height: 220px;
  }

  .modal-img-thumbs {
    gap: 6px;
    padding: 8px 12px;
  }

  .thumb-img {
    width: 52px;
    height: 52px;
  }

  .modal-body {
    padding: 16px 18px 24px;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .modal-desc {
    font-size: 0.85rem;
  }

  .viewers-badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  .modal-stock-alert {
    padding: 10px 14px;
  }

  .modal-stock-alert .stock-text {
    font-size: 0.8rem;
  }

  .price-pix {
    gap: 6px;
  }

  .btn-add-modal {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
  }

  /* ── Carrinho Lateral ── */
  .cart-sidebar {
    width: 100vw;
    right: -100vw;
    padding: 0;
  }

  .cart-header {
    padding: 16px 20px;
  }

  .cart-items {
    padding: 12px 16px;
  }

  .cart-footer {
    padding: 16px 20px;
  }

  .btn-checkout {
    padding: 16px;
    font-size: 1rem;
    border-radius: 14px;
  }

  /* ── Depoimentos ── */
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  /* ── Seção Garantia ── */
  .garantia-seals {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* ── FAQ ── */
  .faq-section {
    padding: 50px 0;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }

  .faq-answer-inner {
    padding: 0 18px 16px;
    font-size: 0.83rem;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 0.78rem;
  }

  .footer-seals {
    gap: 14px;
    padding: 18px 0;
  }

  .footer-seal {
    font-size: 0.75rem;
  }

  /* ── Section Headers ── */
  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .container {
    padding: 0 16px;
  }

  /* ── Checkout ── */
  .checkout-page {
    padding: 80px 0 40px;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .checkout-form-section {
    padding: 20px 16px;
  }

  .checkout-summary {
    padding: 20px 16px;
  }

  .checkout-timer-bar {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 12px 16px;
  }

  .timer-clock {
    font-size: 1.4rem !important;
    letter-spacing: 4px !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .security-seals {
    gap: 8px;
    padding: 14px 0;
  }

  .seal-item {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .order-bump {
    padding: 14px;
  }

  .ob-title {
    font-size: 0.88rem;
  }

  .ob-desc {
    font-size: 0.78rem;
  }

  /* ── WhatsApp ── */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float .wpp-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .whatsapp-float .wpp-tooltip {
    display: none;
  }

  /* ── Social Proof Popup ── */
  .social-proof-popup {
    bottom: 80px;
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 10px 14px;
  }

  .sp-img {
    width: 38px;
    height: 38px;
  }

  .sp-text {
    font-size: 0.78rem;
  }

  /* ── PIX Pagamento ── */
  .pix-card {
    padding: 24px 16px;
  }

  /* ── Sucesso ── */
  .sucesso-card {
    padding: 24px 16px;
  }
}

/* ══════════════════════════════════════════════
   MOBILE PEQUENO (≤ 480px)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .kit-card {
    flex-direction: column;
  }

  .kit-card-img-wrap {
    width: 100%;
    min-width: unset;
    height: 200px;
  }

  .kit-card-img {
    height: 200px;
    object-fit: cover;
  }

  .price-pix {
    font-size: 1.3rem;
  }

  .kits-grid {
    gap: 14px;
  }

  .checkout-form-section,
  .checkout-summary {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .btn-finalizar {
    padding: 16px;
    font-size: 1rem;
    border-radius: 12px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .benefits-grid {
    gap: 10px;
  }

  .modal-img {
    height: 190px;
  }

  .modal-body {
    padding: 14px 16px 28px;
  }

  .modal-title {
    font-size: 1.1rem;
  }

  .social-proof-popup {
    bottom: 72px;
  }
}

/* ══════════════════════════════════════════════
   WHATSAPP FLUTUANTE
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float .wpp-icon {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float:hover .wpp-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .wpp-tooltip {
  background: var(--dark-3);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .wpp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* ══════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════ */
.faq-section {
  padding: 80px 0;
  background: var(--dark-2);
}

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(201, 162, 39, 0.25);
}

.faq-item.open {
  border-color: rgba(201, 162, 39, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CHECKOUT TIMER BAR
═══════════════════════════════════════════════ */
.checkout-timer-bar {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  animation: timerGlow 2s ease-in-out infinite;
}

.checkout-timer-bar .timer-text {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.checkout-timer-bar .timer-text strong {
  color: #f87171;
}

.checkout-timer-bar .timer-clock {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-family: 'Outfit', monospace;
}

@keyframes timerGlow {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(239, 68, 68, 0);
  }

  50% {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
  }
}

/* ══════════════════════════════════════════════
   SELOS DE SEGURANÇA
═══════════════════════════════════════════════ */
.security-seals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-top: 12px;
}

.seal-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 161, 105, 0.08);
  border: 1px solid rgba(56, 161, 105, 0.2);
  color: #68d391;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
}

.seal-item:hover {
  background: rgba(56, 161, 105, 0.15);
  transform: translateY(-2px);
}

.seal-item .seal-icon {
  font-size: 1rem;
}

/* Selos no footer */
.footer-seals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 20px;
}

.footer-seal {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-faint);
  font-size: 0.8rem;
  font-weight: 500;
}

.footer-seal .seal-shield {
  font-size: 1.2rem;
}

/* ══════════════════════════════════════════════
   ESTOQUE BAIXO / ESCASSEZ
═══════════════════════════════════════════════ */
.stock-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  padding: 8px 14px;
  margin-top: 10px;
  animation: stockPulse 1.5s ease-in-out infinite;
}

.stock-alert .stock-dot {
  width: 8px;
  height: 8px;
  background: #f87171;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

.stock-alert .stock-text {
  font-size: 0.8rem;
  color: #f87171;
  font-weight: 700;
}

@keyframes stockPulse {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(239, 68, 68, 0);
  }

  50% {
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.15);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Estoque no modal */
.modal-stock-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 16px;
}

.modal-stock-alert .stock-dot {
  width: 10px;
  height: 10px;
  background: #f87171;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
  flex-shrink: 0;
}

.modal-stock-alert .stock-text {
  font-size: 0.85rem;
  color: #f87171;
  font-weight: 600;
}

/* Barra de pessoas vendo */
.viewers-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
  animation: fadeIn 0.5s ease;
}

/* ══════════════════════════════════════════════
   NOTIFICAÇÃO DE PROVA SOCIAL
═══════════════════════════════════════════════ */
.social-proof-popup {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: var(--dark-3);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 7000;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  max-width: 320px;
}

.social-proof-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.sp-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.sp-text {
  font-size: 0.85rem;
  line-height: 1.4;
}

.sp-text strong {
  display: block;
  color: var(--gold);
}

.sp-time {
  font-size: 0.75rem;
  color: var(--text-faint);
  display: block;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════
   PROGRESSO DE FRETE GRÁTIS
═══════════════════════════════════════════════ */
.free-shipping-wrap {
  background: var(--dark-4);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  text-align: center;
}

.fs-message {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}

.fs-message strong {
  color: #68d391;
}

.fs-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.fs-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #38a169, #68d391);
  border-radius: 10px;
  transition: width 0.4s ease;
}

.fs-success {
  color: #68d391;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ══════════════════════════════════════════════
   ORDER BUMP (UPSELL)
═══════════════════════════════════════════════ */
.order-bump {
  background: rgba(245, 158, 11, 0.08);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  border-radius: var(--radius);
  padding: 16px;
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.order-bump:hover {
  background: rgba(245, 158, 11, 0.12);
  border-style: solid;
}

.order-bump.active {
  background: rgba(56, 161, 105, 0.1);
  border: 1px solid #68d391;
}

.ob-checkbox {
  width: 22px;
  height: 22px;
  margin-top: 4px;
  accent-color: var(--gold);
  cursor: pointer;
}

.ob-content {
  flex: 1;
}

.ob-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.ob-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   PREÇO PIX DISPLAY
═══════════════════════════════════════════════ */
.price-display-wrap {
  margin-bottom: 16px;
}

.price-cc {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-pix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-pix span {
  font-size: 0.75rem;
  background: var(--gold);
  color: var(--dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   BARRA CTA FIXA MOBILE
═══════════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6000;
  background: linear-gradient(135deg, #1a1610 0%, #12100e 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-cta-bar.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.mobile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-cta-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.mobile-cta-sub {
  font-size: 0.7rem;
  color: var(--text-faint);
}

.mobile-cta-btn {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-body);
}

.mobile-cta-btn:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: block;
  }

  /* Espaço no rodapé para não ficar atrás da barra */
  footer.footer {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* Touch improvements - botões mais fáceis de tocar */
@media (hover: none) and (pointer: coarse) {

  .btn-add-cart,
  .btn-details,
  .btn-add-modal,
  .btn-finalizar,
  .btn-checkout,
  .mobile-cta-btn {
    min-height: 44px;
  }

  .faq-question {
    min-height: 52px;
  }

  .thumb-img {
    min-width: 44px;
    min-height: 44px;
  }

  /* Remove hover effects em touch (economiza bateria e evita estados presos) */
  .kit-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  .seal-item:hover {
    transform: none;
  }
}