/* ======================================================== */
/* ESTÉTICA DO CÓDIGO 2 (BEGE/DOURADO) APLICADA AO CÓDIGO 3 */
/* ======================================================== */

:root {
  /* Paleta de Cores (do Código 2) */
  --gold-color: #d4af37;
  --gold-gradient: linear-gradient(145deg, #e7c05b, #b99026);
  --bg-color-start: #f5f1e9; /* Bege Claro */
  --bg-color-end: #e8e2d5;   /* Bege Escuro */
  --text-color: #3d352a;     /* Marrom Escuro */
  --card-bg-color: #fdfaf3; /* Branco "sujo" / Bege muito claro */
  --muted-color: #796d5a;
  --shadow-color: rgba(61, 53, 42, 0.1);
  --border-color: #dcd3c3;

  /* Efeitos (do Código 3 original, mas adaptados) */
  --shadow-soft: 0 10px 30px var(--shadow-color);
  --shadow-strong: 0 20px 40px rgba(61, 53, 42, 0.2);
  --border-light: 1px solid rgba(61, 53, 42, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  /* Fundo Bege (do Código 2) */
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, var(--bg-color-start), var(--bg-color-end));
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Styles */
section {
  position: relative;
  margin: 4rem 0;
  padding: 6rem 0;
  border-radius: 30px;
  /* Fundo dos Cards (do Código 2) */
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  /* Gradiente Dourado (do Código 2) */
  background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
  animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Fundo do Header (do Código 2) */
  background: rgba(253, 250, 243, 0.85); /* --card-bg-color com transparência */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 2rem;
}

/* ======================================================== */
/* INÍCIO: Estilos do Logo (do Código 2) */
/* ======================================================== */
.logo {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text-color);
}

.logo-main {
  font-size: 24px;
  font-weight: 700;
}

.logo-sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-color);
  letter-spacing: 0.5px;
}
/* ======================================================== */
/* FIM: Estilos do Logo */
/* ======================================================== */


/* Sticky Offer Styles */
.sticky-offer {
  position: sticky;
  top: 80px;
  z-index: 900;
  /* Gradiente Dourado (do Código 2) */
  background: var(--gold-gradient);
  padding: 1rem;
  box-shadow: var(--shadow-strong);
  width: 100%;
  color: white; /* Texto branco para contrastar com dourado */
}

.offer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.offer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.15); /* Escurecido para contraste */
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  white-space: nowrap;
}

.countdown-display {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
}

.time-block {
  background: rgba(0, 0, 0, 0.15); /* Escurecido para contraste */
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  min-width: 70px;
  backdrop-filter: blur(5px);
}

.time-block span {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.time-block label {
  font-size: 0.8rem;
  opacity: 0.9; /* Mais claro */
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Section Styles */
.hero-section {
  padding-top: calc(80px + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  /* Fundo da Hero (do Código 2) */
  background: var(--card-bg-color);
  border-radius: 0 0 30px 30px;
}

.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* Cor Dourada (do Código 2) */
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid var(--gold-color);
}

.headline {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px var(--shadow-color);
  text-align: center;
  /* Fonte (do Código 2) */
  font-family: 'Playfair Display', serif;
}

.gradient-text {
  /* Gradiente Dourado (do Código 2) */
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  color: transparent;
}

/* VSL Container Styles */
.vsl-container {
  /* Fundo (do Código 2) */
  background: var(--card-bg-color);
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem 0;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-strong);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-color);
}

.vsl-container:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.vsl-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  height: auto;
}

.vsl-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Trust Badges Styles */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--card-bg-color); /* Adicionado */
  padding: 1rem 1.5rem; /* Adicionado */
  border-radius: 12px; /* Adicionado */
  transition: all 0.3s ease;
  display: flex; /* Adicionado */
  align-items: center; /* Adicionado */
  gap: 0.5rem; /* Adicionado */
}

.badge:hover {
  border-color: var(--gold-color);
  transform: translateY(-5px);
}

.badge i {
  font-size: 1.2rem;
  /* Cor Dourada (do Código 2) */
  color: var(--gold-color);
}

/* Enhanced Typography */
.sub-headline {
  font-size: 1.5rem;
  text-align: center;
  margin: 1rem 0 2rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--muted-color); /* Cor (do Código 2) */
}

/* Enhanced CTA Styles */
.cta-button {
  /* Gradiente Dourado (do Código 2) */
  background: var(--gold-gradient);
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: white; /* Texto branco para contrastar */
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); /* Sombra Dourada */
}

/* Enhanced Guarantee Section */
.guarantee-card {
  text-align: center;
  padding: 3rem;
  border-radius: 20px;
  background: var(--card-bg-color); /* Fundo (do Código 2) */
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
  transition: all 0.3s ease;
}

.guarantee-card i {
  font-size: 4rem;
  color: var(--gold-color); /* Cor (do Código 2) */
  margin-bottom: 2rem;
}

.guarantee-details {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted-color); /* Cor (do Código 2) */
}

/* Enhanced Bonus Tag */
.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(212, 175, 55, 0.1); /* Fundo Dourado (do Código 2) */
  border-radius: 50px;
  margin-top: 2rem;
  border: 1px solid var(--gold-color); /* Borda Dourada (do Código 2) */
  color: var(--gold-color); /* Cor (do Código 2) */
}

.bonus-tag i {
  color: var(--gold-color); /* Cor (do Código 2) */
}

/* CTA Button Styles */
.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent); /* Brilho mais forte */
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-button:hover::before {
  transform: translateX(100%);
}

.cta-button:focus,
.pulse-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.5); /* Foco Dourado */
}

/* Floating CTA Styles */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  left: 2rem;
  display: flex;
  justify-content: center;
}

.pulse-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--gold-gradient); /* Gradiente Dourado (do Código 2) */
  border-radius: 50px;
  color: white; /* Texto Branco */
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-strong);
  animation: pulse 2s infinite;
  width: 100%;
  max-width: 300px;
  justify-content: center;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); /* Sombra Dourada */
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); /* Sombra Dourada */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); /* Sombra Dourada */
  }
}

.feature-card {
  background: var(--card-bg-color); /* Fundo (do Código 2) */
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--gold-color) 0%, transparent 50%); /* Luz Dourada */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 0.05; /* Mais sutil */
  animation: pulse-light 2s infinite;
}

@keyframes pulse-light {
  0% { transform: scale(0.95); opacity: 0.05; }
  50% { transform: scale(1); opacity: 0.1; }
  100% { transform: scale(0.95); opacity: 0.05; }
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

/* Testimonial Card Styles */
.testimonial-card {
  background: var(--card-bg-color); /* Fundo (do Código 2) */
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
  transform-style: preserve-3d;
  perspective: 1000px;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 4rem;
  color: var(--gold-color); /* Cor (do Código 2) */
  opacity: 0.2;
  font-family: serif;
}

/* Guarantee Section Styles */
.guarantee-section {
  background: var(--gold-gradient); /* Gradiente Dourado (do Código 2) */
  position: relative;
  overflow: hidden;
  color: white; /* Texto Branco */
}

.guarantee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Floating Elements Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
.floating { animation: float 6s ease-in-out infinite; }

/* Shine Effect */
.shine-effect { position: relative; overflow: hidden; }
.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Glow Effect */
.glow-effect { position: relative; }
.glow-effect::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gold-gradient); /* Gradiente Dourado */
  filter: blur(15px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.glow-effect:hover::after { opacity: 0.5; }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .headline { font-size: 1.8rem; text-align: center; }
  .sticky-offer { padding: 0.75rem 0.5rem; }
  .offer-content { flex-direction: column; gap: 0.75rem; text-align: center; }
  .offer.badge { width: 100%; justify-content: center; font-size: 0.9rem; }
  .countdown-display { justify-content: center; width: 100%; gap: 0.5rem; }
  .time-block { flex: 1; min-width: auto; padding: 0.5rem; }
  .time-block span { font-size: 1.1rem; }
  .time-block label { font-size: 0.65rem; }
  .trust-badges { flex-direction: column; /* Alterado para coluna */ gap: 1rem; } /* Alterado */
  .badge { width: 100%; justify-content: center; font-size: 0.9rem; padding: 0.75rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
  .feature-card { padding: 1.5rem; }
  .cta-button { width: 100%; justify-content: center; padding: 1.25rem 2rem; font-size: 1rem; }
  .vsl-container { padding: 1rem; margin: 2rem 0; }
  .vsl-wrapper { border-radius: 8px; }
  .floating-cta { bottom: 1rem; right: 1rem; left: 1rem; }
  .pulse-button { width: 100%; justify-content: center; font-size: 0.9rem; }
  .testimonial-card { padding: 1rem; }
  .nav-container { padding: 0 1rem; height: 70px; }
  .logo-main { font-size: 20px; } /* Ajuste de logo */
  .logo-sub { font-size: 12px; } /* Ajuste de logo */
  section { margin-bottom: 3rem; padding: 3rem 0; border-radius: 20px; }
  .feature-card, .testimonial-card { transform: none !important; }
}

@media (max-width: 480px) {
  .headline { font-size: 1.5rem; }
  .premium-badge { font-size: 0.8rem; padding: 0.4rem 1rem; }
  .time-block { padding: 0.4rem; }
  .time-block span { font-size: 1rem; }
  .time-block label { font-size: 0.6rem; }
  .feature-card { padding: 1.25rem; }
  .feature-card i { font-size: 1.5rem; }
  .feature-card h3 { font-size: 1rem; }
  .feature-card p { font-size: 0.9rem; }
}

.swiper-container { padding-bottom: 3rem; }
.swiper-button-next, .swiper-button-prev { display: none; }
@media (min-width: 769px) {
  .swiper-button-next, .swiper-button-prev { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.video-placeholder {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.video-overlay p {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 480px) {
  .video-overlay p { font-size: 0.9rem; padding: 0 1rem; }
}

.cta-container { display: flex; justify-content: center; margin-top: 2rem; }
.selo { max-width: 100px; height: auto; }

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color); /* Cor (do Código 2) */
  text-shadow: 1px 1px 2px var(--shadow-color);
  position: relative;
  padding-bottom: 1rem;
  font-family: 'Playfair Display', serif; /* Fonte (do Código 2) */
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gold-color); /* Cor (do Código 2) */
  border-radius: 5px;
}

.guarantee-section {
  background: var(--gold-gradient); /* Gradiente Dourado (do Código 2) */
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.guarantee-card {
  padding: 2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1); /* Mais claro */
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white; /* Adicionado */
}

.guarantee-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.guarantee-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white; /* Cor (do Código 2) */
}

.guarantee-card .gradient-text {
  background: linear-gradient(145deg, #ffffff, #f0f0f0); /* Texto branco */
  -webkit-background-clip: text;
  color: transparent;
}

.cta-section {
  background: var(--card-bg-color); /* Fundo (do Código 2) */
  padding: 4rem 0;
  text-align: center;
}

.cta-card {
  padding: 3rem;
  border-radius: 20px;
  background: var(--card-bg-color); /* Fundo (do Código 2) */
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
}

.price-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

.price-display span {
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px var(--shadow-color);
}

.price-display .original {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: var(--muted-color); /* Cor (do Código 2) */
}

.price-display .current {
  font-size: 2rem;
  color: var(--gold-color); /* Cor (do Código 2) */
}

.price-display .installments {
  font-size: 1.2rem;
  color: var(--text-color); /* Cor (do Código 2) */
}

.price-display .total {
  font-size: 1rem;
  color: var(--muted-color); /* Cor (do Código 2) */
}

/* Purchase Notification */
.purchase-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--card-bg-color); /* Fundo (do Código 2) */
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  max-width: 300px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.purchase-notification img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.notification-content {
  color: var(--text-color); /* Cor (do Código 2) */
}

.notification-content h4 {
  margin: 0;
  font-size: 14px;
  color: var(--gold-color); /* Cor (do Código 2) */
}

.notification-content p {
  margin: 5px 0 0;
  font-size: 12px;
  opacity: 0.8;
}

/* Enhanced Product Status */
.product-status {
  background: rgba(61, 53, 42, 0.05); /* Fundo (do Código 2) */
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
}

.status-bar {
  height: 6px;
  background: rgba(61, 53, 42, 0.1); /* Fundo (do Código 2) */
  border-radius: 3px;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
}

.status-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gold-gradient); /* Gradiente Dourado (do Código 2) */
  border-radius: 3px;
  transition: width 0.5s ease;
}

.watching-now, .stock-status {
  font-size: 14px;
  color: var(--muted-color); /* Cor (do Código 2) */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.watching-now::before {
  content: '\f06e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold-color); /* Cor (do Código 2) */
}

.stock-status::before {
  content: '\f49e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold-color); /* Cor (do Código 2) */
}

/* Enhanced FAQ Styles */
.faq-section { margin: 40px 0; }
.faq-item {
  background: var(--card-bg-color); /* Fundo (do Código 2) */
  border-radius: 10px;
  margin: 10px 0;
  overflow: hidden;
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-question:hover { background: rgba(61, 53, 42, 0.05); } /* Fundo (do Código 2) */
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 20px 20px; }

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .purchase-notification { left: 10px; right: 10px; max-width: calc(100% - 20px); }
  .product-status { padding: 15px; }
  .faq-question { padding: 15px; }
  .faq-answer { padding: 0 15px; }
}

/* Security Badges */
.security-badges-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.security-badges {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg-color); /* Fundo (do Código 2) */
  color: var(--text-color); /* Cor (do Código 2) */
  padding: 15px 20px;
  border-radius: 50px;
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.security-badge:hover {
  background: white; /* Mais claro */
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}
.security-badge i { font-size: 1.2rem; color: var(--gold-color); /* Cor (do Código 2) */ }
.security-badge span { font-weight: 500; }

@media (max-width: 768px) {
  .security-badges-container { justify-content: center; }
  .security-badges { flex-direction: column; align-items: center; gap: 10px; }
  .security-badge { width: 100%; text-align: center; justify-content: center; }
}

.cta-section-mid {
  background: var(--bg-color-end); /* Fundo (do Código 2) */
  padding: 4rem 0;
  text-align: center;
  margin: 0; /* Remove margem */
  border-radius: 0; /* Remove borda */
  border: none; /* Remove borda */
  box-shadow: none; /* Remove sombra */
}

.eyelash-examples {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.eyelash-example {
  background: rgba(61, 53, 42, 0.05); /* Fundo (do Código 2) */
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
}
.eyelash-example h4 { font-size: 1rem; margin-top: 0.5rem; color: var(--text-color); }

/* New Styles for Info Sections */
.info-section, .bonus-section, .support-section {
  background: var(--card-bg-color); /* Fundo (do Código 2) */
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem 0;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-strong);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
}
.info-section h2, .bonus-section h2, .support-section h2 {
  font-size: 1.8rem;
  color: var(--gold-color); /* Cor (do Código 2) */
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px var(--shadow-color);
  font-family: 'Playfair Display', serif; /* Fonte (do Código 2) */
}
.info-section p, .bonus-section p, .support-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color); /* Cor (do Código 2) */
}
.info-section ul, .bonus-section ul, .support-section ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.info-section li, .bonus-section li, .support-section li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color); /* Cor (do Código 2) */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.info-section li i, .bonus-section li i, .support-section li i {
  color: var(--gold-color); /* Cor (do Código 2) */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .info-section, .bonus-section, .support-section { padding: 1.5rem; margin: 2rem 0; }
  .info-section h2, .bonus-section h2, .support-section h2 { font-size: 1.5rem; }
  .info-section p, .bonus-section p, .support-section p,
  .info-section li, .bonus-section li, .support-section li { font-size: 1rem; }
}

/* Course Modules Section Styles */
.modules-section {
  background: var(--card-bg-color); /* Fundo (do Código 2) */
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem 0;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-strong);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.module-item {
  background: white; /* Fundo Branco (do Código 2) */
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid var(--border-color); /* Borda (do Código 2) */
  transition: all 0.3s ease;
}

.module-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.module-image {
  text-align: center;
  margin-bottom: 1rem;
}

.module-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.module-content h3 {
  font-size: 1.3rem;
  color: var(--gold-color); /* Cor Dourada (do Código 2) */
  margin-bottom: 0.75rem;
  text-shadow: 1px 1px 2px var(--shadow-color);
  font-family: 'Playfair Display', serif; /* Fonte (do Código 2) */
}

.module-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color); /* Cor (do Código 2) */
}

.module-content ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.module-content li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-color); /* Cor (do Código 2) */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.module-content li i {
  color: var(--gold-color); /* Cor (do Código 2) */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .modules-section { padding: 1.5rem; margin: 2rem 0; }
  .modules-grid { grid-template-columns: 1fr; }
  .module-item { padding: 1rem; }
  .module-content h3 { font-size: 1.1rem; }
  .module-content p, .module-content li { font-size: 0.9rem; }
}