/* ==========================================================================
   SECTION 02: CENÁRIO & DORES - CSS (Exato Figma: Frame 25)
   ========================================================================== */

.section-cenario {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Card Principal Escuro / Grafite */
.cenario-card-wrapper {
  background-color: #383838;
  border-radius: 36px;
  padding: 64px 60px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 56px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Eyebrow Escuro */
.eyebrow-dark {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #f2f4f7 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 28px;
}

/* Grid Superior */
.cenario-header-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Título */
.cenario-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.cenario-title strong {
  font-weight: 700;
}

.cenario-title .teal-highlight {
  color: var(--color-teal-light);
  font-weight: 700;
  display: block;
}

/* Coluna Direita (Textos) */
.cenario-col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #d0d5dd;
}

.lead-text {
  color: #eaecf0;
}

.strong-text {
  color: #ffffff;
  font-weight: 600;
}

.body-text {
  color: #98a2b3;
}

.solution-callout {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  font-size: 16.5px;
}

.solution-callout strong {
  color: #ffffff;
}

.solution-link {
  color: var(--color-teal-light);
  font-weight: 700;
  font-size: 17px;
}

/* ==========================================================================
   COMPARATIVO VISUAL (Antes vs Depois)
   ========================================================================== */
.cenario-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 20px;
}

/* Card 1: Manual Fragmentado */
.comp-card-manual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 160px;
  justify-content: space-between;
}

.manual-tabs {
  display: flex;
  gap: 10px;
}

.manual-tabs .tab,
.manual-tabs .tab-more {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  color: #98a2b3;
  font-weight: 500;
}

.manual-skeleton {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sk-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.sk-line-1 { width: 85%; }
.sk-line-2 { width: 60%; }

.manual-alert {
  background: rgba(240, 68, 56, 0.15);
  border: 1px solid rgba(240, 68, 56, 0.25);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 11.5px;
  color: #fca5a5;
  font-weight: 500;
}

/* Seta Central */
.comp-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-light);
  margin: 0 auto;
}

/* Card 2: Easy Guide */
.comp-card-easyguide {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.easyguide-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comp-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  text-transform: uppercase;
}

.comp-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.comp-check-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-mint-bg);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   RESPONSIVIDADE (Section 02)
   ========================================================================== */

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .cenario-card-wrapper {
    padding: 48px 36px;
  }

  .cenario-header-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cenario-title {
    font-size: 38px;
  }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .section-cenario {
    padding: 50px 0;
  }

  .cenario-card-wrapper {
    padding: 32px 20px;
    border-radius: 24px;
    gap: 40px;
  }

  .cenario-header-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cenario-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .eyebrow-dark {
    margin-left: auto;
    margin-right: auto;
  }

  .cenario-title {
    font-size: 30px;
    text-align: center;
  }

  .cenario-col-right {
    text-align: center;
  }

  .cenario-comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comp-arrow {
    transform: rotate(90deg);
  }

  .comp-card-easyguide {
    padding: 20px;
  }

  .comp-title {
    font-size: 20px;
  }
}

/* Telas Pequenas (< 480px / <= 425px) */
@media (max-width: 480px) {
  .cenario-card-wrapper {
    padding: 26px 16px;
    border-radius: 20px;
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .cenario-col-left,
  .cenario-col-right {
    width: 100%;
    box-sizing: border-box;
  }

  .eyebrow-dark {
    font-size: 12px !important;
    padding: 6px 14px !important;
    white-space: normal !important;
    text-align: center;
    line-height: 1.35;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cenario-title {
    font-size: 24px;
    line-height: 1.22;
    word-break: break-word;
  }

  .cenario-col-right {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .cenario-comparison-grid {
    width: 100%;
    box-sizing: border-box;
  }

  .comp-card-manual {
    padding: 16px 14px;
    width: 100%;
    box-sizing: border-box;
    min-height: auto;
    gap: 14px;
  }

  .manual-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
  }

  .manual-tabs .tab,
  .manual-tabs .tab-more {
    font-size: 11px;
    padding: 4px 9px;
  }

  .manual-alert {
    font-size: 11px;
    padding: 7px 10px;
    text-align: center;
    word-break: break-word;
  }

  .comp-card-easyguide {
    padding: 16px 14px;
    width: 100%;
    box-sizing: border-box;
    min-height: auto;
    gap: 10px;
  }

  .comp-title {
    font-size: 17px;
    line-height: 1.25;
  }

  .comp-check-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .comp-check-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 360px) {
  .cenario-card-wrapper {
    padding: 20px 12px;
  }

  .cenario-title {
    font-size: 21px;
  }
}
