/* 
   ESTILOS PREMIUM - TEMPLATE VENDAS DE EBOOK
   Utiliza variáveis globais no :root para facilitar mudanças rápidas de cor, fontes e tamanhos.
*/

:root {
  /* Cores Principais - Estética Handmade Boutique */
  --navy: #2a443b;          /* Verde Oliva Escuro */
  --navy-light: #38594d;    /* Verde Oliva Médio */
  --navy-lighter: #4b7364;  /* Verde Oliva Claro */
  --gold: #d38c6f;          /* Terracota */
  --gold-dark: #b67458;     /* Terracota Escura */
  --gold-light: #f3d9ce;    /* Rosa Blush Claro */
  --gold-glow: rgba(211, 140, 111, 0.2); /* Brilho Terracota */
  
  /* Cores de Seções Claras */
  --light-cream: #faf8f5;   /* Creme Suave */
  --white: #ffffff;
  
  /* Cores de Texto */
  --text-dark: #2d312e;     /* Carvão */
  --text-muted-dark: #68736e; /* Carvão Muted */
  --text-light: #fcfbf9;    /* Off-White */
  --text-muted-light: #e8e3dc; /* Off-White Muted */
  
  /* Cores de Alerta e Status */
  --success: #8da388;       /* Verde Folha Suave */
  --success-bg: rgba(141, 163, 136, 0.1);
  --error-gray: #7a827d;
  
  /* Bordas e Sombras */
  --border-light: rgba(255, 255, 255, 0.1);
  --border-dark: rgba(42, 68, 59, 0.08);
  --shadow-soft: 0 10px 30px -10px rgba(42, 68, 59, 0.05);
  --shadow-gold-glow: 0 0 25px rgba(211, 140, 111, 0.12);
  
  /* Fontes */
  --font-serif: 'Lora', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET E ESTILOS GERAIS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* UTILITÁRIOS DE LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.medium-container {
  max-width: 800px;
}

.small-container {
  max-width: 680px;
}

.section {
  padding: 80px 0;
}

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

.bg-light {
  background-color: var(--light-cream);
}

.text-light {
  color: var(--text-light);
}

.font-timer {
  font-family: monospace, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.highlight-gold {
  color: var(--gold);
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), var(--shadow-gold-glow);
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--navy);
  color: var(--white);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ANIMAÇÕES */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* 1. AVISO DE URGÊNCIA (ALERT BAR) */
.alert-bar {
  background: linear-gradient(to right, var(--navy), #151c2e);
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 13px;
  position: relative; /* Mudado de sticky para relative para subir junto com a página */
  z-index: 999;
}

.alert-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.alert-badge {
  color: var(--gold);
  font-weight: 700;
}

.alert-divider {
  opacity: 0.3;
  color: var(--gold);
}

.alert-timer-text {
  font-weight: 500;
}

/* 2. HERO SECTION */
.hero-section {
  background-color: var(--navy);
  color: var(--text-light);
  padding: 40px 0 100px; /* Reduzido padding superior de 80px para 40px para aproximar do topo */
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-sparkles {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.icon-sparkle {
  color: var(--gold);
  animation: rotateSparkle 4s linear infinite;
}

@keyframes rotateSparkle {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  max-width: 850px;
  margin-bottom: 20px;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted-light);
  max-width: 680px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-subtitle strong {
  color: var(--white);
}

/* Representação do Mockup do Produto no Header */
.hero-mockup-wrapper {
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--shadow-gold-glow);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.hero-mockup-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), var(--shadow-gold-glow);
}

.hero-mockup-card {
  perspective: 1000px;
}

.ebook-placeholder-preview {
  position: relative;
  width: 320px;
  height: 440px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), var(--shadow-gold-glow);
  transform: rotateY(-10deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.ebook-placeholder-preview:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.ebook-cover-design {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.cover-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

.cover-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--white);
  font-weight: 700;
  margin-top: 40px;
}

.cover-subtitle {
  font-size: 13px;
  color: var(--text-muted-light);
  margin-top: 10px;
}

.cover-decoration {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 20px auto 0;
}

.ebook-bonus-badge {
  position: absolute;
  bottom: 24px;
  right: -15px;
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 4px;
  transform: rotate(-10deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.btn-cta {
  width: 100%;
  max-width: 380px;
}

.security-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted-light);
}

/* Bloco de Avaliações com Avatares e Estrelas */
.hero-rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}

.avatar-stack {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stack-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  object-fit: cover;
}

.stack-avatar:first-child {
  margin-left: 0;
}

.rating-stars-and-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.stars-row {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.star-rating-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rating-text {
  font-size: 13px;
  color: var(--text-muted-light);
  letter-spacing: 0.2px;
}

/* SEÇÃO PADRÃO - CABEÇALHOS */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* 3. PROVA SOCIAL (TESTIMONIALS) */
/* 3. PROVA SOCIAL (TESTIMONIALS - FACEBOOK MOCKUP) */
.testimonials-section {
  background-color: var(--light-cream);
  padding: 80px 0;
}

.facebook-comments-widget {
  background-color: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  text-align: left;
}

.fb-comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.fb-comments-count {
  font-size: 14px;
  font-weight: 600;
  color: #65676b;
}

.fb-sort-menu {
  font-size: 14px;
  color: #65676b;
}

.fb-sort-active {
  font-weight: 600;
  color: #050505;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chevron-icon {
  width: 14px;
  height: 14px;
}

.fb-comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fb-comment-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fb-comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.fb-comment-content-wrapper {
  flex: 1;
}

.fb-comment-bubble {
  background-color: #f0f2f5;
  border-radius: 18px;
  padding: 10px 16px;
  display: inline-block;
  position: relative;
  max-width: 100%;
}

.fb-comment-author {
  font-size: 13px;
  font-weight: 700;
  color: #050505;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.fb-author-badge {
  background-color: var(--navy-light);
  color: var(--white);
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: 6px;
  font-weight: 600;
}

.fb-comment-text {
  font-size: 13.5px;
  color: #050505;
  line-height: 1.4;
  margin: 0;
}

.fb-comment-reactions {
  position: absolute;
  bottom: -10px;
  right: 12px;
  background: var(--white);
  border-radius: 10px;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  font-size: 11px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.fb-reaction-icons {
  letter-spacing: -1px;
  margin-right: 2px;
}

.fb-reaction-count {
  color: #65676b;
  font-weight: 600;
}

.fb-comment-actions {
  margin-top: 4px;
  padding-left: 12px;
  font-size: 12px;
  color: #65676b;
  font-weight: 600;
}

.fb-action-link {
  cursor: pointer;
}

.fb-action-link:hover {
  text-decoration: underline;
}

.fb-action-link.active {
  color: #1877f2;
}

.fb-comment-time {
  color: #65676b;
  font-weight: 400;
}

/* Replies styling */
.fb-comment-replies {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reply-item {
  margin-left: 0;
}

.reply-item .fb-comment-avatar {
  width: 28px;
  height: 28px;
  font-size: 10px;
}

.reply-item .fb-comment-bubble {
  background-color: #f0f2f5;
  border-radius: 16px;
  padding: 8px 12px;
}

.owner-avatar {
  background-color: var(--navy);
}

/* Input Area Mock */
.fb-input-mock {
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
  margin-top: 16px;
  align-items: center;
}

.input-avatar {
  background-color: #1877f2;
}

.fb-input-box {
  flex: 1;
  background-color: #f0f2f5;
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: text;
}

.fb-input-box .placeholder {
  color: #65676b;
  font-size: 13px;
}

.fb-input-icons {
  display: flex;
  gap: 12px;
  color: #65676b;
  cursor: pointer;
  font-size: 14px;
}

.fb-input-icons span:hover {
  filter: brightness(0.8);
}

/* 4. VÍDEO DE DEMONSTRAÇÃO */
.video-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-color: var(--navy-light);
  border: 1px solid var(--border-dark);
}

.video-player-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-fake-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a2238;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, var(--navy) 150%);
}

.video-overlay-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.btn-play {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  transition: var(--transition);
  padding-left: 5px; /* Alinha visualmente o triângulo de play */
}

.btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.video-duration {
  margin-top: 12px;
  font-size: 12px;
  color: var(--white);
  background-color: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 50px;
}

/* 5. PARA QUEM É O PRODUTO */
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.target-card {
  background-color: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.target-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.target-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--gold-dark);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.target-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.target-card-text {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

/* 6. GALERIA DE PRÉVIAS */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gallery-item {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-page-mock {
  padding: 24px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-header {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted-dark);
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 6px;
  letter-spacing: 0.5px;
}

.page-content-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.page-title-mock {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.line-graph-mock {
  width: 80%;
  height: 1px;
  background-color: var(--border-dark);
  margin-bottom: 16px;
}

.circles-group-mock {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.circle-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background-color: var(--light-cream);
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4px;
  color: var(--navy);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.grid-nodes-mock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
}

.node-small {
  background-color: var(--light-cream);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 6px 4px;
  font-size: 8px;
  font-weight: 600;
  text-align: center;
}

.page-footer {
  font-size: 9px;
  color: var(--text-muted-dark);
  text-align: center;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 25, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  color: var(--white);
  transition: var(--transition);
  z-index: 5;
}

.gallery-overlay svg {
  color: var(--gold);
}

.gallery-overlay span {
  font-size: 13px;
  font-weight: 600;
}

/* 7. SEÇÃO DE CONTRASTE */
.features-contrast-section {
  background-color: var(--navy);
  text-align: center;
}

.contrast-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .contrast-title {
    font-size: 28px;
  }
}

.features-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .features-checklist-grid {
    grid-template-columns: 1fr;
  }
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: left;
}

.icon-check-wrapper {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-item span {
  font-size: 15px;
  font-weight: 500;
}

/* 8. PACOTE E BÔNUS */
/* 8. PACOTE SHOWCASE */
.package-showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-card {
  background-color: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: row;
  transition: var(--transition);
  align-items: stretch;
}

.showcase-card:nth-child(even) {
  flex-direction: row-reverse;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
  border-color: rgba(211, 140, 111, 0.25);
}

.showcase-media {
  position: relative;
  width: 50%; /* Aumentado para 50% para aceitar melhor o vídeo horizontal no desktop */
  overflow: hidden;
  background-color: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-card:nth-child(odd) .showcase-media {
  border-right: 1px solid var(--border-dark);
}

.showcase-card:nth-child(even) .showcase-media {
  border-left: 1px solid var(--border-dark);
}

.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  flex: 1;
}

.showcase-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background-color: rgba(211, 140, 111, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}

.showcase-badge.highlight-green {
  color: var(--success);
  background-color: rgba(141, 163, 136, 0.1);
}

.showcase-badge.highlight-blue {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.08);
}

.showcase-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.showcase-card-desc {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .package-showcase-grid {
    gap: 24px;
  }
  
  .showcase-card,
  .showcase-card:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
  }
  
  .showcase-media {
    width: 100%;
    aspect-ratio: 4 / 3; /* Vídeo maior e mais alto no mobile */
  }
  
  .showcase-card:nth-child(odd) .showcase-media,
  .showcase-card:nth-child(even) .showcase-media {
    border: none;
    border-bottom: 1px solid var(--border-dark);
  }
  
  .showcase-content {
    padding: 24px;
  }
}

/* BÔNUS */
.bonuses-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--navy);
}

.bonuses-subtitle {
  font-size: 15px;
  color: var(--text-muted-dark);
  text-align: center;
  margin-bottom: 40px;
}

.bonuses-list-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 950px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .bonuses-list-wrapper {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

.bonus-horizontal-card {
  display: flex;
  background-color: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  text-align: left;
}

.bonus-horizontal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  border-color: rgba(211, 140, 111, 0.3);
}

.bonus-image-side {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.bonus-image-side svg {
  width: 28px;
  height: 28px;
}

.bonus-info-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bonus-number-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 1.2px;
  line-height: 1;
  margin-bottom: 2px;
}

.bonus-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.bonus-desc {
  font-size: 13.5px;
  color: var(--text-muted-dark);
  line-height: 1.45;
  margin: 2px 0 6px;
}

.bonus-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.bonus-price .old-price {
  text-decoration: line-through;
  color: var(--text-muted-dark);
}

.bonus-price .free-badge {
  background: var(--success-bg);
  color: var(--success);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(141, 163, 136, 0.2);
}

.bg-gold-gradient {
  background: linear-gradient(135deg, rgba(211, 140, 111, 0.08), rgba(211, 140, 111, 0.2));
  color: var(--gold-dark) !important;
}

.bg-blue-gradient {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.2));
  color: #3b82f6 !important;
}

.bg-green-gradient {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.2));
  color: #10b981 !important;
}

.bg-red-gradient {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.2));
  color: #ef4444 !important;
}

/* PREÇOS E OFERTAS */
.pricing-options-badges {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pricing-badges-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.pricing-badges-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pricing-badge-separator {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  padding: 4px;
}

.pricing-badge-option {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.badge-plan-basic {
  background-color: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border-dark);
}

.badge-plan-combo {
  background-color: var(--light-bg);
  color: var(--navy);
  border: 1.5px solid var(--gold);
}

.pricing-badge-option:hover {
  transform: translateY(-2px);
}

/* Efeito de Brilho Ouro Metálico Refletivo */
.gold-metallic-text {
  background: linear-gradient(
    90deg,
    #bf953f 0%,
    #fcf6ba 20%,
    #b38728 40%,
    #fcf6ba 60%,
    #bf953f 80%,
    #fcf6ba 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shine 6s linear infinite;
  font-weight: 800;
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.2));
}

@keyframes gold-shine {
  to {
    background-position: 200% center;
  }
}

.pricing-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza os blocos na tela horizontalmente */
  gap: 32px;
  max-width: 580px;    /* Largura ideal para os cards empilhados */
  margin: 40px auto 0;
  width: 100%;
}

.pricing-card {
  background-color: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; /* Centraliza os blocos internos */
  text-align: center;  /* Centraliza o texto padrão */
  position: relative;
  transition: var(--transition);
  width: 100%;         /* Preenche os 580px do wrapper */
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card-premium {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 2px solid var(--gold);
  color: var(--text-light);
  box-shadow: var(--shadow-gold-glow);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(212,175,55,0.35);
  white-space: nowrap;
  z-index: 10;
}

.pricing-card-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza conteúdo do cabeçalho */
  width: 100%;
}

.plan-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}

.pricing-card-premium .plan-title {
  color: var(--white);
}

.plan-desc {
  font-size: 13px;
  color: var(--text-muted-dark);
  margin-top: 4px;
}

.pricing-card-premium .plan-desc {
  color: var(--text-muted-light);
}

/* Representação visual do Bundle Combo em CSS */
.bundle-image-mockup {
  width: 100%;
  height: 180px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bundle-visual {
  position: relative;
  width: 160px;
  height: 140px;
}

.bundle-book {
  position: absolute;
  width: 85px;
  height: 115px;
  border-radius: 2px 4px 4px 2px;
  padding: 16px 8px;
  font-size: 8px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 8px 8px 16px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main-book {
  background: var(--navy-lighter);
  border: 1px solid var(--gold);
  border-left: 3px solid var(--gold);
  left: 10px;
  top: 10px;
  z-index: 2;
  transform: rotate(-5deg);
}

.secondary-book {
  background: var(--gold-dark);
  border: 1px solid var(--gold-light);
  border-left: 3px solid var(--gold-light);
  left: 55px;
  top: 15px;
  z-index: 1;
  transform: rotate(5deg);
}

.bundle-badge {
  position: absolute;
  top: 10px;
  right: -5px;
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  transform: rotate(10deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 3;
}

/* Destaque Bônus Super Oferta */
.super-offer-highlight-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
  width: 100%; /* Preenche a largura total do card */
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.highlight-item-meta {
  font-size: 11px;
  color: var(--text-muted-light);
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: 24px;
  width: 100%;
}

.price-old {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text-muted-dark);
  margin-bottom: 2px;
}

.pricing-card-premium .price-old {
  color: var(--text-muted-light);
  opacity: 0.8;
}

.price-current {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.price-savings {
  font-size: 11px;
  color: var(--text-muted-light);
  margin-top: 4px;
  text-align: center;
  line-height: 1.4;
}

.price-savings strong {
  color: var(--white);
}

.plan-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto 32px;
  width: fit-content;  /* Mantém a lista alinhada junta no centro */
  align-items: flex-start; /* Mantém os checkmarks alinhados à esquerda entre si */
  flex-grow: 1;
}

.plan-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  text-align: left;
}

.icon-gold {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

.icon-gray {
  color: var(--error-gray);
  flex-shrink: 0;
  margin-top: 2px;
}

.security-info-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted-light);
  margin-top: 12px;
  opacity: 0.8;
}

/* Banner de Destaque no Meio */
.pricing-upsell-banner {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed rgba(212, 175, 55, 0.5);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;         /* Preenche os 580px do wrapper */
}

.pricing-upsell-banner .upsell-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.pricing-upsell-banner .upsell-desc {
  font-size: 12px;
  color: var(--text-muted-dark);
}

.animate-pulse-arrow {
  animation: pulseArrow 1.5s infinite;
}

@keyframes pulseArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* GARANTIA THEMED (ESTILO ORIGINAL COM BORDA E COR DE FUNDO) */
.guarantee-box-themed {
  background-color: rgba(16, 185, 129, 0.05);
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .guarantee-box-themed {
    padding: 32px 20px;
  }
}

.guarantee-shield-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--success);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.icon-shield-check {
  width: 40px;
  height: 40px;
}

.guarantee-title-themed {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}

.guarantee-desc-themed {
  font-size: 15px;
  color: var(--text-muted-dark);
  max-width: 580px;
  line-height: 1.6;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.faq-question:hover {
  background-color: var(--light-cream);
}

.faq-icon-wrapper {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon-wrapper svg {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Toggle do ícone + / - baseado no estado active */
.faq-item:not(.active) .icon-plus {
  opacity: 1;
  transform: scale(1);
}

.faq-item:not(.active) .icon-minus {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.faq-item.active .icon-plus {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.faq-item.active .icon-minus {
  opacity: 1;
  transform: scale(1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 250px; /* Altura suficiente para o conteúdo do FAQ */
  padding: 0 24px 24px;
  border-top: 1px solid var(--border-dark);
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.6;
  padding-top: 16px;
}

/* 12. CHAMADA FINAL (BOTTOM CTA) */
.final-cta-section {
  background-color: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.final-cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at bottom, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.relative-z {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 700px;
}

@media (max-width: 768px) {
  .final-cta-title {
    font-size: 28px;
  }
}

.final-cta-subtitle {
  font-size: 16px;
  color: var(--text-muted-light);
  max-width: 550px;
  margin-bottom: 32px;
}

/* 13. RODAPÉ (FOOTER) */
.footer-section {
  background-color: var(--navy);
  color: var(--text-muted-light);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  text-align: center;
}

.footer-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.copyright {
  font-weight: 600;
  color: var(--white);
}

.disclaimer {
  max-width: 800px;
  line-height: 1.8;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-links a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

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

.bullet {
  opacity: 0.3;
}

.facebook-disclaimer {
  max-width: 800px;
  line-height: 1.8;
  opacity: 0.55;
  font-size: 11px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

/* ==========================================
   RECUPERAÇÃO DE CHECKOUT MODAL STYLES
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6); /* Slate 900 semi-transparente */
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .modal-overlay {
    align-items: flex-start;
    padding: 40px 12px;
  }
}

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

.modal-card {
  background-color: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.modal-overlay.show-modal .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: 300;
  color: var(--text-muted-dark);
  cursor: pointer;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.modal-close-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.modal-header {
  padding: 32px 32px 16px 32px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, rgba(245, 158, 11, 0.03) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.modal-alert-badge {
  background-color: #fef3c7;
  color: #d97706;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted-dark);
  font-weight: 500;
}

.modal-content {
  padding: 24px 32px 32px 32px;
}

.modal-offer-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-offer-text {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 8px;
}

.price-old-inline {
  text-decoration: line-through;
  opacity: 0.7;
}

.modal-price-tag {
  font-size: 38px;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-price-savings {
  font-size: 12px;
  color: #34d399;
  font-weight: 600;
}

.modal-benefits-summary {
  margin-bottom: 24px;
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  text-align: left;
}

.modal-benefit-icon {
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-modal-cta {
  width: 100%;
  font-size: 15px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.modal-decline-link {
  font-size: 12px;
  color: var(--text-muted-dark);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}

.modal-decline-link:hover {
  color: #ef4444;
}
