/* ==========================================================================
   ENSINANDO O CORAÇÃO - DOMUS
   Custom Palette, Custom Typography & Premium Unframed Visual System
   ========================================================================= */

/* --- LOCAL FONT FACE DEFINITION --- */
@font-face {
  font-family: 'MerriweatherLocal';
  src: url('Fontes/Merriweather-VariableFont_opsz,wdth,wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* --- DESIGN TOKENS --- */
:root {
  /* Canvas Backgrounds */
  --bg-primary: #FBF8F3;
  --bg-surface: #FFFFFF;
  --bg-secondary: #F4EFE6;
  --bg-tertiary: #EFE8DC;
  
  /* Brand Custom Colors */
  --color-highlight-1: #D25801;        /* Textos em destaque 1 (#D25801) */
  --color-highlight-1-hover: #B84D01;
  --color-highlight-1-light: #FDF3EB;

  --color-highlight-2: #47594b;        /* Textos em destaque 2 (#47594b) */
  --color-highlight-2-hover: #38473B;
  --color-highlight-2-light: #EEF2EF;

  /* Vibrant High-Contrast Green Color Tokens */
  --color-green-primary: #1DA851;
  --color-green-hover: #15803D;
  --color-green-light: #22C55E;

  /* Typography Colors */
  --text-dark: #373938;               /* Textos maiores (#373938) */
  --text-muted: #525654;
  --text-light: #7A7E7C;
  --text-white: #FFFFFF;

  /* UI Shadows */
  --shadow-soft: 0 10px 30px -5px rgba(55, 57, 56, 0.04), 0 4px 12px rgba(55, 57, 56, 0.02);
  --shadow-card: 0 20px 45px -10px rgba(55, 57, 56, 0.06);
  --shadow-hover: 0 25px 50px -12px rgba(210, 88, 1, 0.16);
  --shadow-cta: 0 14px 35px -5px rgba(29, 168, 81, 0.4);

  /* Fonts */
  --font-heading: 'MerriweatherLocal', 'Merriweather', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Compact Spacing Tokens */
  --section-padding-y: 2.5rem;
  --section-padding-y-lg: 3.75rem;
  --container-max: 1120px;

  /* Radius Tokens */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- LAYOUT CONTAINERS --- */
.page-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container.max-width-md {
  max-width: 840px;
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--section-padding-y-lg);
    padding-bottom: var(--section-padding-y-lg);
  }
}

.center {
  text-align: center;
}

/* --- ANNOUNCEMENT BAR --- */
.top-announcement-bar {
  background: linear-gradient(135deg, var(--color-highlight-2) 0%, #354338 100%);
  color: var(--text-white);
  font-size: clamp(0.72rem, 3.2vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.6rem 0.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
  white-space: nowrap;
  overflow: hidden;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.announcement-content span {
  white-space: nowrap;
}

/* --- TYPOGRAPHY & SECTION HEADERS --- */
.section-header {
  margin-bottom: 1.5rem;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.highlight-underline {
  position: relative;
  display: inline-block;
  color: var(--color-highlight-1);
}

.highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background-color: rgba(210, 88, 1, 0.18);
  border-radius: 4px;
  z-index: -1;
}

/* --- BUTTONS & CTAS (TODOS OS BOTÕES EM VERDE CHAMATIVO) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.82rem, 2.5vw, 1.05rem);
  padding: 1.15rem 1.75rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-align: center;
  width: auto;
  max-width: 100%;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-text {
  white-space: nowrap;
  display: inline-block;
}

/* BOTÃO PRINCIPAL VERDE DE ALTO CONTRASTE */
.btn-primary {
  background: linear-gradient(135deg, #1DA851 0%, #15803D 100%);
  color: var(--text-white);
  box-shadow: 0 14px 35px -5px rgba(29, 168, 81, 0.45);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px -5px rgba(29, 168, 81, 0.55);
}

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

/* BOTÃO DE CHECKOUT VERDE (EM 2 LINHAS SE NECESSÁRIO) */
.btn-checkout {
  background: linear-gradient(135deg, #1DA851 0%, #15803D 100%);
  color: #FFFFFF;
  font-size: clamp(0.85rem, 2.4vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 1.2rem 1.75rem;
  box-shadow: 0 16px 40px -5px rgba(29, 168, 81, 0.45);
  white-space: normal;
  line-height: 1.35;
  border-radius: var(--radius-pill);
  max-width: 520px;
  width: 100%;
}

.btn-checkout:hover {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px -5px rgba(29, 168, 81, 0.55);
}

.btn-checkout .btn-text {
  white-space: normal;
  text-align: center;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: var(--text-white);
  font-size: clamp(0.82rem, 2.5vw, 1.02rem);
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #22BE5B 0%, #1A9648 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.4);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

/* Micro-Pulse Animation (Sombra Verde) */
@keyframes pulseSubtle {
  0% { transform: scale(1); box-shadow: 0 10px 28px rgba(29, 168, 81, 0.3); }
  50% { transform: scale(1.02); box-shadow: 0 16px 38px rgba(29, 168, 81, 0.45); }
  100% { transform: scale(1); box-shadow: 0 10px 28px rgba(29, 168, 81, 0.3); }
}

.btn-pulse {
  animation: pulseSubtle 3.5s ease-in-out infinite;
}

.btn-pulse:hover {
  animation: none;
}

/* --- SEÇÃO 1: HERO / HEADER --- */
.hero-section {
  background: radial-gradient(circle at 50% 0%, rgba(253, 243, 235, 0.9) 0%, var(--bg-primary) 70%);
  padding-top: 2rem;
  padding-bottom: 2.75rem;
  position: relative;
}

.hero-ambient-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(210, 88, 1, 0.06) 0%, rgba(251, 248, 243, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

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

.brand-logo-wrapper {
  margin-bottom: 1rem;
  background: transparent;
  padding: 0;
}

.brand-logo {
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(55, 57, 56, 0.05));
}

.hero-text-block {
  max-width: 840px;
  margin-bottom: 0.75rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-highlight-1);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 2.4rem;
  }
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-mockup-wrapper {
  width: 100%;
  max-width: 600px;
  margin-bottom: 1.75rem;
  position: relative;
}

.mockup-frame {
  position: relative;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
  transition: transform var(--transition-normal);
}

.hero-mockup-img {
  width: 100%;
  filter: drop-shadow(0 16px 32px rgba(55, 57, 56, 0.12));
}

.mockup-frame:hover {
  transform: translateY(-4px);
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cta-subtext {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}


/* --- SEÇÃO 2: O PROBLEMA (ISSO ACONTECE NA SUA CASA?) --- */
.problem-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.problem-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .problem-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background-color: var(--bg-surface);
  border: 1px solid rgba(210, 88, 1, 0.12);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-highlight-1) 0%, rgba(210, 88, 1, 0.3) 100%);
  opacity: 0.8;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-highlight-1);
}

.problem-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.problem-content strong {
  color: var(--color-highlight-1);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-block;
  margin-bottom: 0.2rem;
}

/* Turning Point Block */
.turning-point-block {
  position: relative;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(71, 89, 75, 0.15);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.turning-point-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background-color: var(--color-highlight-2);
}

.turning-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .turning-title {
    font-size: 2.4rem;
  }
}

.turning-title b {
  font-weight: 700;
  color: var(--color-highlight-1);
}

.thin-text {
  font-weight: 400;
}

.turning-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comparison-card {
  position: relative;
  background: transparent;
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: none;
  border: none;
  overflow: visible;
  transition: transform var(--transition-normal);
}

.comparison-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(55, 57, 56, 0.1));
  transition: transform var(--transition-normal);
}

.comparison-card:hover .comparison-img {
  transform: scale(1.02);
}


/* --- SEÇÃO 3: PROVA SOCIAL & BENEFÍCIOS --- */
.social-proof-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: transparent;
  border-radius: var(--radius-md);
  overflow: visible;
  box-shadow: none;
  border: none;
  padding: 0;
  transition: transform var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card-inner {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.testimonial-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(55, 57, 56, 0.08));
}

/* Benefits Box */
.benefits-showcase-box {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(71, 89, 75, 0.12);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .benefits-showcase-box {
    grid-template-columns: 0.85fr 1.15fr;
    padding: 2.5rem 2.25rem;
  }
}

.benefits-image-column .image-frame {
  background: transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: none;
  border: none;
}

.benefits-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(55, 57, 56, 0.12));
  transition: transform var(--transition-normal);
}

.benefits-showcase-box:hover .benefits-img {
  transform: scale(1.02);
}

.benefits-box-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.55;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.benefit-item:hover {
  background-color: var(--color-highlight-2-light);
}

.check-icon {
  color: var(--text-white);
  background: linear-gradient(135deg, var(--color-highlight-2) 0%, #354338 100%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 3px 8px rgba(71, 89, 75, 0.25);
}


/* --- SEÇÃO 4: O QUE VOCÊ IRÁ RECEBER --- */
.deliverables-section {
  background-color: var(--bg-primary);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deliverable-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.4rem;
  border: 1px solid rgba(71, 89, 75, 0.12);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-highlight-2);
}

.deliverable-icon-box {
  width: 56px;
  height: 56px;
  background-color: var(--color-highlight-2-light);
  color: var(--color-highlight-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 12px rgba(71, 89, 75, 0.1);
}

.deliverable-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.deliverable-description {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- BLOCO DE BÔNUS EXCLUSIVOS --- */
.bonus-block-wrapper {
  margin-top: 2rem;
}

.bonus-section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bonus-section-title {
    font-size: 2.5rem;
  }
}

.bonus-showcase-box {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(71, 89, 75, 0.12);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .bonus-showcase-box {
    grid-template-columns: 0.85fr 1.15fr;
    padding: 2.5rem 2.25rem;
  }
}

.bonus-image-column {
  display: flex;
  justify-content: center;
}

.bonus-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(55, 57, 56, 0.12));
  transition: transform var(--transition-normal);
}

.bonus-showcase-box:hover .bonus-img {
  transform: scale(1.02);
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.bonus-item:hover {
  background-color: var(--color-highlight-1-light);
}

.bonus-item-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-highlight-1);
  margin-bottom: 0.2rem;
  line-height: 1.35;
}

.bonus-item-description {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}


/* --- SEÇÃO 5: OFERTA & PREÇO --- */
.offer-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
}

.offer-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(210, 88, 1, 0.08) 0%, rgba(244, 239, 230, 0) 70%);
  pointer-events: none;
}

.offer-card-wrapper {
  position: relative;
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-highlight-1);
  padding: 2.5rem 1.4rem 2rem;
  box-shadow: var(--shadow-hover);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .offer-card-wrapper {
    padding: 3.25rem 2.75rem 2.75rem;
  }
}

.offer-badge-floating {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-highlight-1) 0%, var(--color-highlight-1-hover) 100%);
  color: var(--text-white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.45rem 1.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(210, 88, 1, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.offer-product-image {
  margin-bottom: 1.5rem;
}

.offer-img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 14px 28px rgba(55, 57, 56, 0.14));
}

.price-strikethrough {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.price-strikethrough span {
  text-decoration: line-through;
  color: #C0392B;
  font-weight: 600;
}

.offer-lead-text {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.main-price-display {
  margin-bottom: 0.3rem;
}

.price-installments {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--color-highlight-1);
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .price-installments {
    font-size: 4.2rem;
  }
}

.cash-price-display {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}

.offer-cta-block {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* TAG DE URGÊNCIA EM 1 LINHA SÓ NA COR VERMELHA */
.urgency-tag {
  display: inline-block;
  font-size: clamp(0.72rem, 2.8vw, 0.85rem);
  font-weight: 700;
  color: #DC2626;
  background-color: #FEF2F2;
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  white-space: nowrap;
}

.guarantee-micro-badge {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}


/* --- SEÇÃO 6: GARANTIA --- */
.guarantee-section {
  background-color: var(--bg-primary);
}

.guarantee-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(71, 89, 75, 0.12);
  padding: 2.25rem 1.4rem;
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .guarantee-card {
    padding: 3rem 2.5rem;
  }
}

.guarantee-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

/* SELO DE GARANTIA PERFEITAMENTE CENTRALIZADO */
.guarantee-seal-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1.25rem;
}

.guarantee-seal-img {
  max-width: 150px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 6px 16px rgba(55, 57, 56, 0.08));
}

.guarantee-subtitle {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-highlight-2);
  margin-bottom: 1.25rem;
}

.guarantee-text-block {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
}

.guarantee-text-block p {
  margin-bottom: 0.85rem;
}

.guarantee-text-block p:last-child {
  margin-bottom: 0;
}

.highlight-green {
  color: var(--color-highlight-2);
}

.guarantee-cta-wrapper {
  display: flex;
  justify-content: center;
}


/* --- SEÇÃO 7: PERGUNTAS FREQUENTES (ACCORDION) --- */
.faq-section {
  background-color: var(--bg-secondary);
}

.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.accordion-item {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

.accordion-item:hover {
  border-color: rgba(71, 89, 75, 0.15);
  box-shadow: var(--shadow-card);
}

.accordion-item.active {
  border-color: var(--color-highlight-2);
  box-shadow: 0 10px 24px rgba(71, 89, 75, 0.08);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  gap: 0.85rem;
}

.accordion-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-highlight-2-light);
  color: var(--color-highlight-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition-fast);
}

.accordion-chevron {
  transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-icon-wrap {
  background-color: var(--color-highlight-2);
  color: var(--text-white);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content {
  padding: 0 1.4rem 1.4rem 1.4rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(55, 57, 56, 0.05);
  margin-top: 0.2rem;
  padding-top: 1rem;
}


/* --- SEÇÃO 8: ATENDIMENTO WHATSAPP --- */
.support-section {
  background-color: var(--bg-primary);
}

.support-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(71, 89, 75, 0.12);
  padding: 2.25rem 1.4rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp-icon-badge {
  width: 68px;
  height: 68px;
  background-color: #E8F9EE;
  color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.2);
}

.support-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.support-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.support-cta-wrapper {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.payment-badges-img {
  max-width: 240px;
  height: auto;
  opacity: 0.9;
}


/* --- SEÇÃO 9: FOOTER --- */
.footer-section {
  background-color: #262726;
  color: var(--text-white);
  padding-top: 3rem;
  padding-bottom: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-tagline strong {
  color: var(--text-white);
}

.footer-links-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer-heading-spacer {
  margin-top: 1.25rem;
}

.footer-contact-item a {
  color: var(--text-white);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--color-highlight-1-light);
}

.footer-social-wrapper {
  margin-top: 0.25rem;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  color: var(--text-white);
  background-color: var(--color-highlight-1);
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  width: 100%;
}


/* --- STICKY MOBILE BOTTOM CTA --- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(251, 248, 243, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(71, 89, 75, 0.12);
  padding: 0.75rem 1rem;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 30px rgba(55, 57, 56, 0.1);
}

.sticky-mobile-cta.hidden {
  transform: translateY(100%);
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.sticky-price-info {
  display: flex;
  flex-direction: column;
}

.sticky-price-small {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sticky-price-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-highlight-1);
  line-height: 1.1;
}

.btn-sticky {
  font-size: clamp(0.85rem, 3vw, 1rem);
  padding: 0.85rem 1.25rem;
  width: 100%;
  text-align: center;
  box-shadow: none;
  white-space: nowrap;
}


/* --- SCROLL REVEAL FADE ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   UPSELL PAGE STYLES - ENSINANDO O CORAÇÃO
   ========================================================================= */

.upsell-page {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-body);
}

/* Top Notification Banner */
.upsell-top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.top-bar-success {
  background-color: #1DA851;
  color: #FFFFFF;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.top-bar-warning {
  background-color: #D25801;
  color: #FFFFFF;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: clamp(0.78rem, 2.2vw, 0.9rem);
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: inline-block;
  animation: dotPulse 1.4s infinite ease-in-out;
}

@keyframes dotPulse {
  0% { transform: scale(0.8); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(0.8); opacity: 1; }
}

/* Main Container & Headers */
.upsell-wrapper {
  padding-bottom: 4rem;
}

.upsell-header {
  padding: 2rem 1rem 1rem 1rem;
  display: flex;
  justify-content: center;
}

.upsell-main-section {
  padding: 1rem 1rem 3rem 1rem;
}

.upsell-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

/* Headline */
.upsell-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: center;
}

/* Copy Card */
.upsell-copy-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(71, 89, 75, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
  align-items: center;
  width: 100%;
}

.copy-paragraph {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-dark);
  text-align: center;
}

.copy-paragraph.highlight-intro {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--color-highlight-1);
  text-align: center;
}

.temperament-box {
  background-color: var(--color-highlight-1-light);
  border-left: 4px solid var(--color-highlight-1);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0.5rem;
}

.temperament-box .box-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.temperament-box .box-text {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.6;
  color: var(--text-dark);
}

/* Video Section */
.video-cta-text {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-highlight-2);
  margin-bottom: -0.5rem;
}

.upsell-video-wrapper {
  width: 100%;
  background: #000000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  border: 2px solid rgba(71, 89, 75, 0.15);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA Box & Lastlink Integration */
.upsell-cta-box {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--color-highlight-1-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.cta-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-highlight-2-light);
  color: var(--color-highlight-2);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
}

.lastlink-upsell-container {
  font-family: 'DM Sans', var(--font-body), sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 580px;
}

.upsell-accept-btn {
  width: 100%;
  padding: 20px 32px;
  line-height: 1.3;
  border-radius: 14px;
  font-weight: 800 !important;
  background-color: rgb(52, 226, 60);
  color: rgb(0, 0, 0);
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(52, 226, 60, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: acceptPulse 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

.upsell-accept-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 35px rgba(52, 226, 60, 0.55);
}

@keyframes acceptPulse {
  0% { transform: scale(1); box-shadow: 0 10px 25px rgba(52, 226, 60, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 16px 35px rgba(52, 226, 60, 0.6); }
  100% { transform: scale(1); box-shadow: 0 10px 25px rgba(52, 226, 60, 0.4); }
}

.upsell-deny-btn {
  text-decoration: underline;
  line-height: 22px;
  font-size: 16px;
  font-weight: 700 !important;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  padding: 8px 16px;
}

.upsell-deny-btn:hover {
  color: var(--text-dark);
  opacity: 0.8;
}

.upsell-guarantee-footer {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}

.upsell-footer {
  padding: 2rem 1rem;
  border-top: 1px solid rgba(71, 89, 75, 0.1);
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .upsell-copy-card {
    padding: 1.35rem 1.15rem;
  }

  .temperament-box {
    padding: 1rem;
  }

  .upsell-cta-box {
    padding: 1.5rem 1rem;
  }

  .upsell-accept-btn {
    padding: 16px 20px;
    font-size: 1.05rem;
  }
}

