/* 
   Nail Designer Completa - Premium & Feminine Stylesheet
   Color Palette:
   - Fundo Principal (Creme/Off-White): #FFF8F2
   - Cor Principal (Rosa Queimado / Rose Gold): #C96F82
   - Cor de Destaque (Vinho Elegante): #7A2942
   - Cor de CTA (Verde Conversão): #20B15A
   - Detalhes Premium (Dourado Suave): #D6A85C
   - Texto Principal (Grafite Escuro): #2B2528
   - Fundos Alternados (Rosa Claro/Nude): #FBE8E7
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #FFF8F2;
  --bg-alt: #FBE8E7;
  --color-primary: #C96F82;
  --color-dark: #7A2942;
  --color-cta: #20B15A;
  --color-cta-hover: #19944a;
  --color-gold: #D6A85C;
  --color-gold-light: #f7e8cf;
  --color-text: #2B2528;
  --color-text-light: #5A5054;
  --color-white: #ffffff;
  --color-overlay: rgba(43, 37, 40, 0.65);
  
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
  
  --shadow-sm: 0 4px 16px rgba(122, 41, 66, 0.04);
  --shadow-md: 0 12px 36px rgba(122, 41, 66, 0.08);
  --shadow-lg: 0 24px 50px rgba(122, 41, 66, 0.12);
  --shadow-glow: 0 0 20px rgba(32, 177, 90, 0.35);
  --shadow-premium: 0 15px 35px rgba(122, 41, 66, 0.12), 0 0 20px rgba(214, 168, 92, 0.25);
  
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --border-radius-sm: 10px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
  
  --container-width: 1120px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 60px; /* Compensa a barra de escassez de duas linhas no mobile */
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: var(--color-text-light);
  font-weight: 400;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 60px 0;
  position: relative;
}

.bg-alt-section {
  background-color: var(--bg-alt);
}

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

/* Header Scarcity Bar */
.scarcity-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--color-dark), #521829);
  color: var(--color-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  line-height: 1.4;
}

.scarcity-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.scarcity-text strong {
  color: var(--color-gold-light);
  font-weight: 700;
}

.countdown-timer {
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-gold-light);
  background-color: rgba(255, 255, 255, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Hero Section */
.hero {
  padding: 20px 0 60px;
  background: radial-gradient(circle at 50% 100%, rgba(251, 232, 231, 0.7) 0%, rgba(255, 248, 242, 0) 70%);
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--bg-alt);
  border: 1px solid rgba(201, 111, 130, 0.35);
  color: var(--color-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-badge span {
  color: var(--color-gold);
  margin-right: 6px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero .subheadline {
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: var(--color-text-light);
}

.hero-bullets {
  list-style: none;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-bullets li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  color: var(--color-text);
  font-size: 0.95rem;
  text-align: left;
}

.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
}

/* Image Placeholders / Mockups */
.mockup-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-alt);
  border: 1px solid rgba(201, 111, 130, 0.15);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-placeholder {
  text-align: center;
  padding: 24px;
  color: var(--color-primary);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mockup-placeholder svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
  margin-bottom: 12px;
  opacity: 0.7;
}

.mockup-placeholder p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-dark);
}

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Buttons & CTA */
.btn-container {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-cta), #1ca051);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 3.5s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  25% { left: 150%; }
  100% { left: 150%; }
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(32, 177, 90, 0.45);
  background: linear-gradient(135deg, #25c064, var(--color-cta-hover));
}

.cta-subtext {
  font-size: 0.8rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-subtext span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cta-subtext span::before {
  content: "•";
  color: var(--color-primary);
  font-size: 1rem;
}

/* Section Header */
.section-header {
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 0.95rem;
}

/* Dobra 2 - Dor / Situações */
.dor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.dor-card {
  background-color: var(--color-white);
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(122, 41, 66, 0.02);
  border: 1px solid rgba(122, 41, 66, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(122, 41, 66, 0.05);
  border-color: rgba(122, 41, 66, 0.12);
}

.dor-icon {
  width: auto;
  height: 24px;
  color: var(--color-gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.dor-icon svg {
  height: 24px;
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dor-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.dor-card p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-text-light);
}

.dor-footer {
  max-width: 600px;
  margin: 30px auto 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.4;
  font-style: italic;
}

/* Dobra 3 - O que é o Curso */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.about-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.about-bullets li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

.about-bullets li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.95rem;
}

/* Dobra 4 - O que a Aluna vai Receber (Visual) */
.receber-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.receber-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 111, 130, 0.1);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.receber-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.receber-card .mockup-container {
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.receber-info {
  padding: 20px;
  flex-grow: 1;
}

.receber-info h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.receber-info p {
  font-size: 0.9rem;
}
/* Dobra 5 - Módulos & Formações (Carrossel) */
.modules-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0 50px 0;
  cursor: grab;
}

.modules-carousel-container::before,
.modules-carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.modules-carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent);
}

.modules-carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent);
}

.modules-carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.modules-carousel-track.dragging {
  cursor: grabbing;
}

.modules-carousel-track.dragging .module-slide {
  pointer-events: none;
}

.module-slide {
  flex-shrink: 0;
  width: 200px;
  height: auto;
  user-select: none;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 111, 130, 0.2);
}

.module-slide .mockup-image {
  width: 100%;
  height: auto;
  display: block;
}

.module-slide:hover {
  transform: translateY(-8px) scale(1.02);
}

@media (min-width: 768px) {
  .modules-carousel-container {
    padding: 40px 0 60px 0;
  }
  
  .modules-carousel-container::before,
  .modules-carousel-container::after {
    width: 60px;
  }
  
  .modules-carousel-track {
    gap: 24px;
  }
  
  .module-slide {
    width: 260px;
    height: auto;
  }
}

.extra-receber {
  background-color: var(--bg-alt);
  border-radius: var(--border-radius-md);
  padding: 24px;
  margin-top: 40px;
  border: 1px dashed var(--color-primary);
}

.extra-receber h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  text-align: center;
}

.extra-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-white);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.85rem;
}

.reforco-text {
  text-align: center;
  max-width: 750px;
  margin: 30px auto;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Dobra 6 - Foco Renda Extra */
.renda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.renda-card {
  background-color: var(--color-white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 111, 130, 0.1);
  text-align: center;
  transition: var(--transition-smooth);
}

.renda-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.renda-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: inline-block;
}

.renda-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.renda-card p {
  font-size: 0.9rem;
}

/* Dobra 7 - Bônus */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.bonus-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(214, 168, 92, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--color-gold);
}

.bonus-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--color-gold), #b88a3e);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}

.bonus-card .mockup-container {
  border-radius: 0;
  box-shadow: none;
  border: none;
  aspect-ratio: auto;
  height: auto;
}

.bonus-card .mockup-image {
  width: 100%;
  height: auto;
  display: block;
}

.bonus-info {
  padding: 20px;
  flex-grow: 1;
}

.bonus-info h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.bonus-info p {
  font-size: 0.9rem;
}

/* Dobra 8 - Prova Social / Depoimentos */
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.depoimento-card {
  background-color: var(--color-white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 111, 130, 0.08);
  transition: var(--transition-smooth);
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.depoimento-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.aluna-nome {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 0.95rem;
}

.aluna-cidade {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.stars {
  color: var(--color-gold);
  font-size: 0.8rem;
  margin-top: 2px;
}

.depoimento-text {
  font-size: 0.9rem;
  font-style: italic;
}

.prints-container h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.prints-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.print-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Dobra 9 - Antes e Depois */
.galeria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.galeria-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.galeria-footer {
  font-size: 0.95rem;
  max-width: 600px;
  margin: 16px auto 0;
}

/* Dobra 10 - Planos / Oferta Completa */
.oferta-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #4a1524 100%);
  color: var(--color-white);
}

.oferta-section .section-header h2,
.oferta-section .section-header p {
  color: var(--color-white);
}

.oferta-section .section-header h2::after {
  background-color: var(--color-gold);
}

.planos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 30px;
}

.plano-card {
  background-color: var(--color-white);
  color: var(--color-text);
  border-radius: var(--border-radius-lg);
  padding: 40px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.plano-card.premium {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-premium);
  background: linear-gradient(180deg, var(--color-white) 0%, #fffcf9 100%);
}

.plano-recomendado-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold), #b88a3e);
  color: var(--color-white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 4px;
}

.plano-nome {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.plano-card.premium .plano-nome {
  color: var(--color-dark);
}

.plano-preco-box {
  margin-bottom: 20px;
}

.plano-preco-de {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--color-text-light);
  opacity: 0.7;
}

.plano-preco-por {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
}

.plano-preco-por span {
  font-size: 1.2rem;
  font-weight: 700;
}

.plano-frequencia {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 600;
  margin-top: 2px;
}

.plano-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  min-height: 40px;
}

.plano-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 50px;
  margin-bottom: 10px;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  width: 100%;
}

.plano-card.premium .plano-btn {
  background: linear-gradient(135deg, var(--color-cta), #1ca051);
  box-shadow: var(--shadow-glow);
}

.plano-card.premium .plano-btn:hover {
  background: linear-gradient(135deg, #25c064, var(--color-cta-hover));
}

.plano-btn:hover {
  background-color: var(--color-dark);
  transform: translateY(-2px);
}

.plano-btn-sub {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.plano-features {
  list-style: none;
  border-top: 1px solid rgba(122, 41, 66, 0.1);
  padding-top: 20px;
  flex-grow: 1;
  text-align: left;
}

.plano-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--color-text);
}

.plano-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background-color: rgba(32, 177, 90, 0.15);
  color: var(--color-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
}

.plano-card.basic .plano-features li.limited {
  opacity: 0.5;
  text-decoration: line-through;
}

.plano-card.basic .plano-features li.limited::before {
  content: "✕";
  background-color: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.4);
}

.plano-aviso-limite {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-dark);
  background-color: rgba(122, 41, 66, 0.05);
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 16px;
}

/* Dobra 11 - Garantia */
.garantia-box {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 36px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(201, 111, 130, 0.15);
}

.garantia-imagem-box {
  width: 100%;
  max-width: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.garantia-imagem {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.garantia-placeholder {
  width: 80px;
  height: 80px;
  background-color: var(--bg-alt);
  border-radius: 50%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  border: 1px dashed var(--color-gold);
  padding: 8px;
  text-align: center;
}

.garantia-placeholder svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  margin-bottom: 4px;
}

.garantia-placeholder p {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-dark);
  line-height: 1.1;
}

.garantia-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.garantia-box p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.garantia-badge-text {
  display: inline-block;
  background-color: var(--bg-alt);
  color: var(--color-dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(122, 41, 66, 0.12);
}

/* Dobra 12 - Como Funciona o Acesso */
.passos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.passo-card {
  background-color: var(--color-white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.passo-numero {
  width: 44px;
  height: 44px;
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.passo-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.passo-card p {
  font-size: 0.9rem;
}

/* Dobra 13 - FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-alt); /* #FBE8E7 */
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  border: none;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(122, 41, 66, 0.04);
}

.faq-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  color: var(--color-primary);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 0 20px 16px;
}

.faq-answer p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(122, 41, 66, 0.1);
}

/* Rodapé */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  font-size: 0.8rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer-divider {
  width: 50px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
}

/* Pop-up Modal de Upgrade (Dark Premium) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 11, 13, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: #1c1517; /* Deep Charcoal Vinho */
  border-radius: 16px;
  width: 100%;
  max-width: 420px; /* Mais compacto */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(214, 168, 92, 0.15);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
}

.modal-header {
  padding: 28px 24px 12px;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

.modal-badge {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.modal-header h2 {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.modal-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.4;
  margin: 0 auto;
}

.modal-body {
  padding: 12px 24px 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.modal-price-container {
  text-align: center;
  margin-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.02);
  padding: 14px;
  border-radius: 10px;
  border: 1px dashed rgba(214, 168, 92, 0.25);
}

.modal-price-de {
  font-size: 0.78rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 2px;
}

.modal-price-val {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ff6a00; /* Orange Price */
  line-height: 1.1;
  letter-spacing: -1px;
}

.modal-price-savings {
  font-size: 0.68rem;
  font-weight: 800;
  color: #2ecc71; /* Green Savings Alert */
  margin-top: 4px;
  display: block;
  letter-spacing: 0.5px;
}

.modal-features-box {
  background-color: #120d0f;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.modal-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-features-list li {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  text-align: left;
}

.check-icon {
  width: 14px;
  height: 14px;
  color: #ff6a00;
  margin-right: 8px;
  flex-shrink: 0;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.modal-btn-primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(214, 168, 92, 0.25);
  transition: var(--transition-smooth);
}

.modal-btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
  box-shadow: 0 12px 24px rgba(122, 41, 66, 0.35);
}

.modal-btn-secondary {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  cursor: pointer;
  padding: 6px 12px;
  transition: var(--transition-fast);
}

.modal-btn-secondary:hover {
  color: var(--color-white);
}

/* Scroll Reveal Animations styling */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Delays for staggered animations */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* Responsive adjustments */
@media (min-width: 600px) {
  .dor-grid, .passos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .extra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  body {
    padding-top: 68px; /* Compensa a barra no desktop */
  }
  
  section {
    padding: 80px 0;
  }
  
  .hero {
    padding: 30px 0 80px;
  }
  
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  
  .hero-content {
    text-align: left;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-badge {
    margin-bottom: 24px;
  }
  
  .btn-container {
    justify-content: flex-start;
  }
  
  .cta-subtext {
    justify-content: flex-start;
  }
  
  .section-header h2 {
    font-size: 2.4rem;
  }
  
  .dor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .dor-card {
    width: calc(33.333% - 14px);
    max-width: 340px;
  }
  
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    text-align: left;
  }
  
  .about-content {
    text-align: left;
  }
  
  .about-bullets {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .receber-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .extra-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .renda-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .bonus-grid > *:nth-child(4) {
    grid-column: span 1.5;
  }
  
  .depoimentos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .prints-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .planos-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    margin: 0 auto 30px;
    gap: 30px;
  }
  
  .plano-card {
    padding: 50px 30px;
  }
  
  .passos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Modal features styled inside list, no override needed */
  
  .scarcity-bar {
    font-size: 0.82rem;
    padding: 12px 16px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }
  
  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Novas Customizações: Hero Centrado, Prova Social Carousel, Centralização de Planos
   ========================================================================== */

/* Hero Centrado & Banner Principal */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge.highlight {
  background: linear-gradient(135deg, var(--color-dark), var(--color-primary));
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 16px;
  border: none;
  box-shadow: 0 4px 12px rgba(122, 41, 66, 0.2);
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.hero .subheadline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.35;
}

.hero-banner-box {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 16px;
}

.hero-banner-box .mockup-container {
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 111, 130, 0.18);
}

.hero-description {
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0 auto 24px;
  line-height: 1.5;
  color: var(--color-text-light);
  text-align: center;
}

/* Slider de Depoimentos Interativo */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 320px; /* Largura ideal para o print do celular */
  margin: 0 auto;
  padding: 10px 0 30px;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 111, 130, 0.12);
  background-color: var(--color-white);
}

.slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.print-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid rgba(122, 41, 66, 0.12);
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  z-index: 10;
}

.slider-arrow:hover {
  background-color: var(--bg-alt);
  color: var(--color-primary);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
  left: -20px;
}

.slider-arrow.next {
  right: -20px;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(122, 41, 66, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}

.slider-dot.active {
  background-color: var(--color-primary);
  width: 20px;
  border-radius: 4px;
}

/* Plano Centrado e Botão no Rodapé */
.plano-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.plano-preco-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.plano-features {
  text-align: left;
}

.plano-card .plano-btn {
  margin-top: 24px;
  width: 100%;
  margin-bottom: 0;
}

.plano-btn-sub {
  margin-top: 8px;
  margin-bottom: 0;
}

/* Responsivo Hero */
@media (min-width: 768px) {
  .hero-badge.highlight {
    font-size: 1.05rem;
    padding: 8px 22px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  
  .hero .subheadline {
    font-size: 1.45rem;
    margin-bottom: 24px;
  }
  
  .hero-banner-box {
    margin-bottom: 24px;
  }
  
  .hero-description {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }
}

/* Dobra 14 - Última Chamada */
.ultima-chamada {
  background: linear-gradient(135deg, var(--color-dark) 0%, #521829 100%);
  padding: 60px 0;
  position: relative;
  color: var(--color-white);
  border-top: 1px solid rgba(214, 168, 92, 0.15);
  text-align: center;
}

.ultima-chamada-badge {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.ultima-chamada h2 {
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.ultima-chamada-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  max-width: 650px;
  margin: 0 auto 28px;
  line-height: 1.55;
}

.ultima-chamada .btn-cta {
  background: linear-gradient(135deg, var(--color-cta), #1ca051);
  box-shadow: var(--shadow-glow);
}

.ultima-chamada .btn-cta:hover {
  background: linear-gradient(135deg, #25c064, var(--color-cta-hover));
  box-shadow: 0 12px 28px rgba(32, 177, 90, 0.45);
}

.ultima-chamada-subtext {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}

@media (min-width: 768px) {
  .ultima-chamada {
    padding: 80px 0;
  }
  .ultima-chamada h2 {
    font-size: 2.2rem;
  }
  .ultima-chamada-desc {
    font-size: 0.98rem;
  }
}

/* Dobra 9 - Vídeo de Apresentação (Substituindo Galeria) */
.video-wrapper {
  max-width: 720px;
  margin: 0 auto 40px auto;
  width: 100%;
}

.video-container-box {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 111, 130, 0.2);
  position: relative;
}

.vimeo-embed-wrapper {
  position: relative;
  width: 100%;
}

.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(43, 37, 40, 0.55);
  cursor: pointer;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease;
}

.video-cover.playing {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.play-button-trigger {
  width: 76px;
  height: 76px;
  background-color: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: play-pulse-glow 2.2s infinite;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, color 0.3s ease, opacity 0.5s ease, visibility 0.5s ease;
  margin-bottom: 14px;
}

.play-button-trigger svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.video-cover:not(.playing):hover .play-button-trigger {
  transform: scale(1.12);
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 0 25px rgba(201, 111, 130, 0.45);
}

.video-cover.playing .play-button-trigger,
.video-cover.playing .play-button-text {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-button-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

@keyframes play-pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
