/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-light: #fafafa;
  --bg-secondary: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --accent-pink: #e11d48;
  --accent-pink-dark: #be123c;
  --glass-bg: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(0, 0, 0, 0.08);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #ffffff 100%);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar Liquid Glass */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #1a1a1a 0%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(225, 29, 72, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(225, 29, 72, 0.6));
  }
}

/* Hero Section */
.hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem 5rem;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 181, 192, 0.15) 0%,
    transparent 50%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 181, 192, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(20deg);
  }
}

.hero-message-box {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  margin: 0 auto 2.5rem;
  max-width: 650px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-scarcity-line {
  font-size: 1.05rem;
  font-weight: 800;
  color: #e11d48;
  background: rgba(255, 107, 107, 0.1);
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.hero-cta {
  margin-top: 2rem;
}

.urgency-text {
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 50px;
  color: #e11d48;
  font-weight: 600;
  font-size: 1.1rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}
.hero-tag svg {
  flex-shrink: 0;
  color: #e11d48;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.hero-badge svg {
  color: #e11d48;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
  }
}

/* Products Section */
.products-section {
  padding: 1.5rem 2rem 4rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #111 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  color: #e11d48;
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 4rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e11d48, transparent);
  border-radius: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.product-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(225, 29, 72, 0.1) 0%,
    rgba(255, 154, 176, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: 0 20px 60px rgba(225, 29, 72, 0.2);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image-placeholder {
  width: 100%;
  padding-bottom: 125%; /* 4:5 aspect ratio (5/4 = 1.25 = 125%) */
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.product-image-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-placeholder img {
  transform: scale(1.05);
}

.placeholder-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
}

.product-info {
  padding: 1rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.product-desc {
  font-size: 0.75rem;
  color: #999999;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-weight: 400;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0.5rem;
}

.stock-info {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e11d48;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Buy Button */
.buy-button {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #e11d48;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4);
}

.buy-button:hover {
  background: #be123c;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(225, 29, 72, 0.6);
}

.buy-button:active {
  transform: translateY(0);
}

.pix-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
  .buy-button {
    font-size: 0.85rem;
    padding: 0.7rem 0.8rem;
  }

  .pix-icon {
    width: 18px;
    height: 18px;
  }
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer p {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e11d48;
}

/* Scroll Animation */
.product-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.product-card:nth-child(4) {
  animation-delay: 0.4s;
}
.product-card:nth-child(5) {
  animation-delay: 0.5s;
}
.product-card:nth-child(6) {
  animation-delay: 0.6s;
}
.product-card:nth-child(7) {
  animation-delay: 0.7s;
}
.product-card:nth-child(8) {
  animation-delay: 0.8s;
}
.product-card:nth-child(9) {
  animation-delay: 0.9s;
}
.product-card:nth-child(10) {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.modal-overlay.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-gray);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.modal-body {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-input:focus {
  outline: none;
  border-color: #e11d48;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.info-box {
  background: linear-gradient(
    135deg,
    rgba(225, 29, 72, 0.1) 0%,
    rgba(255, 181, 192, 0.15) 100%
  );
  border-left: 4px solid #e11d48;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.info-box strong {
  color: #e11d48;
}

.modal-footer {
  display: flex;
  gap: 1rem;
}

.modal-button {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.modal-button-cancel {
  background: #f0f0f0;
  color: var(--text-dark);
}

.modal-button-cancel:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.modal-button-primary {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.3);
}

.modal-button-primary:hover {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(225, 29, 72, 0.5);
}

.modal-button-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

.modal-button-primary:disabled:hover {
  transform: none;
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero {
    padding: 8rem 1.5rem 4rem;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
  }

  .navbar-content {
    flex-direction: row;
    gap: 0;
    padding: 0 1rem;
    justify-content: center;
  }

  .logo {
    font-size: 1.6rem;
  }

  .hero-message-box {
    padding: 1.2rem 1.5rem;
    margin: 0 0.5rem 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-scarcity-line {
    font-size: 0.95rem;
  }

  .hero-badges {
    flex-direction: row;
    gap: 0.8rem;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .products-section {
    padding: 3rem 1.5rem 4rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
  }

  .modal {
    padding: 1.5rem;
    width: 95%;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-footer {
    flex-direction: column;
  }
}

/* ====== Order Bump Styles ====== */
.order-bump-section {
  margin-bottom: 1.5rem;
}

.order-bump-card {
  border: 1.5px dashed #e0e0e0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.order-bump-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 179, 71, 0.08) 0%,
    rgba(255, 107, 107, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.order-bump-card:hover {
  border-color: #ffb347;
  box-shadow: 0 4px 16px rgba(255, 179, 71, 0.15);
}

.order-bump-card.active {
  border: 2px solid #e11d48;
  background: #fff;
  box-shadow: 0 6px 24px rgba(225, 29, 72, 0.2);
}

.order-bump-card.active::before {
  opacity: 1;
}

.order-bump-header {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.order-bump-toggle {
  flex-shrink: 0;
  padding-top: 0.1rem;
}

/* Custom checkbox toggle */
.bump-checkbox {
  display: none;
}

.bump-toggle-label {
  display: block;
  width: 36px;
  height: 20px;
  background: #d0d0d0;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bump-toggle-label::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px; /* Diminuído */
  height: 14px; /* Diminuído */
  background: white;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); /* Ajustado */
}

.bump-checkbox:checked + .bump-toggle-label {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
}

.bump-checkbox:checked + .bump-toggle-label::after {
  left: 18px;
}

.order-bump-info {
  flex: 1;
  min-width: 0;
}

.order-bump-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffb347 0%, #e11d48 100%);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.order-bump-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.order-bump-desc {
  font-size: 0.72rem;
  color: var(--text-gray);
  line-height: 1.4;
  margin: 0;
}

.order-bump-desc strong {
  color: #e11d48;
}

.order-bump-price {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.bump-price-value {
  font-size: 0.88rem;
  font-weight: 800;
  color: #e11d48;
  white-space: nowrap;
}

/* Price Summary */
.price-summary {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-top: 0.8rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.price-line.express-line {
  color: #e11d48;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-line.price-total {
  border-top: 1px solid #e0e0e0;
  margin-top: 0.3rem;
  padding-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Mobile adjustments for order bump */
@media (max-width: 480px) {
  .order-bump-header {
    flex-wrap: wrap;
  }

  .order-bump-price {
    width: 100%;
    justify-content: flex-end;
    margin-top: 0.3rem;
  }

  .order-bump-title {
    font-size: 0.85rem;
  }

  .order-bump-desc {
    font-size: 0.75rem;
  }
}
/* Bumps divider */
.bumps-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 0.75rem;
}
.bumps-divider::before,
.bumps-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}
.bumps-divider span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  white-space: nowrap;
}

/* Shipping info minimal */
.shipping-info-minimal {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.75rem 0.9rem;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: 0.75rem 0;
}
.shipping-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #666;
}
.shipping-info-item svg {
  flex-shrink: 0;
  color: #aaa;
}

/* Badge color variants */
.bump-badge-orange {
  background: linear-gradient(135deg, #ffb347 0%, #ff8c00 100%);
}
.bump-badge-pink {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
}
.bump-badge-purple {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

/* Order bump spacing */
.order-bump-section .order-bump-card + .order-bump-card {
  margin-top: 0.6rem;
}

/* Extra price lines */
.price-line.bump2-line {
  color: #a855f7;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}
.price-line.bump3-line {
  color: #e11d48;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

/* ====== FAQ Section ====== */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  background: white;
  transition: all 0.2s ease;
  user-select: none;
}

.faq-icon {
  color: #e11d48;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: #fafafa;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle:checked + .faq-question {
  background: rgba(225, 29, 72, 0.03);
  color: #be123c;
}

.faq-toggle:checked + .faq-question .faq-icon {
  transform: rotate(180deg);
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding: 1.25rem 1.5rem;
  border-top-color: rgba(0,0,0,0.05);
}

/* ============================================
   AUDIO SECTION � Players de Convers�o
   ============================================ */

.audio-section {
  padding: 0 2rem 4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(225,29,72,0.03) 100%);
}

.audio-section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.audio-headphone-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(255,220,0,0.12) 0%, rgba(255,180,0,0.08) 100%);
  border: 1px solid rgba(255,200,0,0.3);
  border-radius: 50px;
  padding: 0.7rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #7a5c00;
  margin-bottom: 1.6rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  animation: alertPulse 2.5s ease-in-out infinite;
}

.audio-headphone-alert svg { color: #c49000; flex-shrink: 0; }

@keyframes alertPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,200,0,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(255,200,0,0); }
}

.audio-players-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

@media (max-width: 640px) {
  .audio-players-row { grid-template-columns: 1fr; }
}

.audio-player-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 1.6rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-player-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.audio-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.18;
  filter: blur(30px);
}

.audio-card-main .audio-card-glow { background: radial-gradient(circle, #667eea, #764ba2); }
.audio-card-hot .audio-card-glow  { background: radial-gradient(circle, #e11d48, #ff6b6b); }

.audio-card-top { margin-bottom: 1.2rem; }

.audio-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.audio-badge-vip {
  background: linear-gradient(135deg, rgba(102,126,234,0.15) 0%, rgba(118,75,162,0.12) 100%);
  color: #5a4fcf;
  border: 1px solid rgba(102,126,234,0.25);
}

.audio-badge-hot {
  background: linear-gradient(135deg, rgba(225,29,72,0.12) 0%, rgba(255,107,107,0.1) 100%);
  color: #c41a3f;
  border: 1px solid rgba(225,29,72,0.2);
}

.audio-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.audio-card-desc {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
}

.audio-player-ui {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(0,0,0,0.03);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.audio-play-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(102,126,234,0.4);
  position: relative;
}

.audio-play-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(102,126,234,0.6); }
.audio-play-btn:active { transform: scale(0.96); }

.audio-play-hot {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  box-shadow: 0 4px 16px rgba(225,29,72,0.4);
}

.audio-play-hot:hover { box-shadow: 0 6px 24px rgba(225,29,72,0.6); }

.audio-play-btn .icon-play,
.audio-play-btn .icon-pause {
  position: absolute;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

.audio-play-btn .icon-play  { opacity: 1; transform: scale(1); }
.audio-play-btn .icon-pause { opacity: 0; transform: scale(0.7); }

.audio-play-btn.playing .icon-play  { opacity: 0; transform: scale(0.7); }
.audio-play-btn.playing .icon-pause { opacity: 1; transform: scale(1); }

.audio-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.audio-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 24px;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.audio-wave.active { opacity: 1; }

.audio-wave span {
  display: block;
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: #667eea;
}

.audio-wave-hot span { background: #e11d48; }

.audio-wave.active span {
  animation: waveBar 0.8s ease-in-out infinite alternate;
}

.audio-wave.active span:nth-child(1)  { animation-delay: 0.00s; }
.audio-wave.active span:nth-child(2)  { animation-delay: 0.07s; }
.audio-wave.active span:nth-child(3)  { animation-delay: 0.14s; }
.audio-wave.active span:nth-child(4)  { animation-delay: 0.21s; }
.audio-wave.active span:nth-child(5)  { animation-delay: 0.28s; }
.audio-wave.active span:nth-child(6)  { animation-delay: 0.35s; }
.audio-wave.active span:nth-child(7)  { animation-delay: 0.28s; }
.audio-wave.active span:nth-child(8)  { animation-delay: 0.21s; }
.audio-wave.active span:nth-child(9)  { animation-delay: 0.14s; }
.audio-wave.active span:nth-child(10) { animation-delay: 0.07s; }
.audio-wave.active span:nth-child(11) { animation-delay: 0.14s; }
.audio-wave.active span:nth-child(12) { animation-delay: 0.21s; }

@keyframes waveBar {
  from { height: 4px; }
  to   { height: 22px; }
}

.audio-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(0,0,0,0.1);
  cursor: pointer;
  outline: none;
}

.audio-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #667eea;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(102,126,234,0.5);
  transition: transform 0.15s ease;
}

.audio-progress::-webkit-slider-thumb:hover { transform: scale(1.3); }

.audio-progress-hot::-webkit-slider-thumb {
  background: #e11d48;
  box-shadow: 0 2px 6px rgba(225,29,72,0.5);
}

.audio-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: #667eea;
  cursor: pointer;
}

.audio-progress-hot::-moz-range-thumb { background: #e11d48; }

.audio-time {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #999;
  font-variant-numeric: tabular-nums;
  min-width: 30px;
  text-align: right;
}


/* ================================================
   AUDIO PLAYERS - Players de Conversao
   ================================================ */

.audio-section-hero,
.audio-section-products {
  padding: 0 2rem 3rem;
}

.audio-section-hero .audio-section-inner,
.audio-section-products .audio-section-inner {
  max-width: 700px;
  margin: 0 auto;
}

.audio-headphone-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(255,220,0,0.14) 0%, rgba(255,180,0,0.09) 100%);
  border: 1px solid rgba(255,200,0,0.35);
  border-radius: 50px;
  padding: 0.65rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a5c00;
  margin-bottom: 1.2rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  animation: alertPulse 2.5s ease-in-out infinite;
}

.audio-headphone-alert svg { color: #c49000; flex-shrink: 0; }

@keyframes alertPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,200,0,0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(255,200,0,0); }
}

.audio-player-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 1.6rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  animation: none;
}

.audio-player-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.audio-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.18;
  filter: blur(30px);
}

.audio-card-main .audio-card-glow { background: radial-gradient(circle, #667eea, #764ba2); }
.audio-card-hot  .audio-card-glow { background: radial-gradient(circle, #e11d48, #ff6b6b); }

.audio-card-top { margin-bottom: 1.2rem; }

.audio-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.audio-badge-vip {
  background: linear-gradient(135deg, rgba(102,126,234,0.15) 0%, rgba(118,75,162,0.12) 100%);
  color: #5a4fcf;
  border: 1px solid rgba(102,126,234,0.25);
}

.audio-badge-hot {
  background: linear-gradient(135deg, rgba(225,29,72,0.12) 0%, rgba(255,107,107,0.1) 100%);
  color: #c41a3f;
  border: 1px solid rgba(225,29,72,0.2);
}

.audio-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.audio-card-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.55;
  font-style: italic;
}

.audio-player-ui {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(0,0,0,0.03);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.audio-play-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(102,126,234,0.4);
  position: relative;
  opacity: 1;
  animation: none;
}

.audio-play-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(102,126,234,0.6); }
.audio-play-btn:active { transform: scale(0.96); }

.audio-play-hot {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  box-shadow: 0 4px 16px rgba(225,29,72,0.4);
}
.audio-play-hot:hover { box-shadow: 0 6px 24px rgba(225,29,72,0.6); }

.audio-play-btn .icon-play,
.audio-play-btn .icon-pause {
  position: absolute;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

.audio-play-btn .icon-play  { opacity: 1; transform: scale(1); }
.audio-play-btn .icon-pause { opacity: 0; transform: scale(0.7); }

.audio-play-btn.playing .icon-play  { opacity: 0; transform: scale(0.7); }
.audio-play-btn.playing .icon-pause { opacity: 1; transform: scale(1); }

.audio-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.audio-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 24px;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}
.audio-wave.active { opacity: 1; }

.audio-wave span {
  display: block;
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: #667eea;
}
.audio-wave-hot span { background: #e11d48; }

.audio-wave.active span { animation: waveBar 0.8s ease-in-out infinite alternate; }
.audio-wave.active span:nth-child(1)  { animation-delay: 0.00s; }
.audio-wave.active span:nth-child(2)  { animation-delay: 0.07s; }
.audio-wave.active span:nth-child(3)  { animation-delay: 0.14s; }
.audio-wave.active span:nth-child(4)  { animation-delay: 0.21s; }
.audio-wave.active span:nth-child(5)  { animation-delay: 0.28s; }
.audio-wave.active span:nth-child(6)  { animation-delay: 0.35s; }
.audio-wave.active span:nth-child(7)  { animation-delay: 0.28s; }
.audio-wave.active span:nth-child(8)  { animation-delay: 0.21s; }
.audio-wave.active span:nth-child(9)  { animation-delay: 0.14s; }
.audio-wave.active span:nth-child(10) { animation-delay: 0.07s; }
.audio-wave.active span:nth-child(11) { animation-delay: 0.14s; }
.audio-wave.active span:nth-child(12) { animation-delay: 0.21s; }

@keyframes waveBar { from { height: 4px; } to { height: 22px; } }

.audio-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(0,0,0,0.1);
  cursor: pointer;
  outline: none;
}

.audio-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #667eea;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(102,126,234,0.5);
  transition: transform 0.15s ease;
}
.audio-progress::-webkit-slider-thumb:hover { transform: scale(1.3); }
.audio-progress-hot::-webkit-slider-thumb {
  background: #e11d48;
  box-shadow: 0 2px 6px rgba(225,29,72,0.5);
}
.audio-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: #667eea;
  cursor: pointer;
}
.audio-progress-hot::-moz-range-thumb { background: #e11d48; }

.audio-time {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #999;
  font-variant-numeric: tabular-nums;
  min-width: 30px;
  text-align: right;
}
