/* ==================================================
   RESET & GLOBAL
   ================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  color: #212529;
  background-color: white;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  text-align: center;
  margin-bottom: 2.5rem;
}

header p {
  color: #6c757d;
  font-size: 1.1rem;
}

/* ==================================================
   TIPOGRAFIA & ELEMENTOS GERAIS
   ================================================== */
h2 {
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.progress-container {
  margin: 2rem 0;
}

.progress-bar {
  height: 8px;
  background-color: #dee2e6;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.progress {
  height: 100%;
  background-color: #00a24f;
  transition: width 0.3s ease;
  border-radius: 20px;
}

.step-indicator {
  margin-top: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================================
   COMPONENTES: TIMELINE DE IMPLEMENTAÇÃO
   ================================================== */
.implementation-timeline {
  margin-bottom: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
}

.timeline-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  color: #1d1d1f;
}

.timeline-container {
  display: flex;
  position: relative;
  margin-top: 20px;
}

.timeline-container::before {
  display:none;
}

.timeline-step {
  display: flex;
  position: relative;
  z-index: 2;
  flex: 1;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #00a24f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.timeline-content {
  padding-right: 15px;
}

.timeline-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1d1d1f;
  line-height: 20px;
}

.timeline-content p {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 5px;
  line-height: 18px;
}

.timeline-duration {
  font-size: 12px;
  color: #00a24f;
  font-weight: 500;
}

/* ==================================================
   COMPONENTES: OPÇÕES DE ONBOARDING
   ================================================== */
/* (Secção de onboarding aprimorada) */
.onboarding-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.onboarding-option:hover {
  border-color: #00a24f;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.recommended-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: #00a24f;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  z-index: 3;
}

.onboarding-header {
  padding: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.onboarding-radio {
  margin-right: 15px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.onboarding-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.2s ease;
}

.onboarding-icon img {
  width: 100%;
}

.onboarding-info {
  flex-grow: 1;
}

.onboarding-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.onboarding-info p {
  color: #6c757d;
  font-size: 14px;
}

.onboarding-price {
  font-weight: 600;
  font-size: 18px;
  color: #1d1d1f;
}

.onboarding-details {
  padding: 15px;
}

.onboarding-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  color: #00a24f;
  margin-right: 10px;
  font-weight: bold;
}

.feature-text {
  font-size: 14px;
  color: #1d1d1f;
}

.onboarding-duration {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e9ecef;
}

.duration-icon {
  margin-right: 10px;
}

.duration-text {
  font-size: 14px;
  color: #6c757d;
}

/* ==================================================
   COMPONENTES: COMPARATIVO DE PLANOS
   ================================================== */
.plan-comparison-toggle {
  text-align: center;
  margin-bottom: 20px;
}

.comparison-btn {
  background-color: transparent;
  border: 1px solid #00a24f;
  color: #00a24f;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.comparison-btn:hover {
  background-color: rgba(0, 162, 79, 0.1);
}

.plan-comparison {
  margin-bottom: 30px;
  animation: fadeIn 0.3s ease;
}

.plan-comparison h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1d1d1f;
  text-align: center;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  color: #1d1d1f;
  border: none;
}

.comparison-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #1d1d1f;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

table tbody {
  background-color: #fff;
  border: 1px solid #ffffff;
}

.feature-yes {
  color: #00a24f;
  font-weight: bold;
}

.feature-no {
  color: #00a24f;
}

/* ==================================================
   COMPONENTES: ELEMENTOS DE CONFIANÇA
   ================================================== */
/* Secção geral */
.trust-elements {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

/* Secção sidebar (renomeado para evitar conflito) */
.trust-elements-sidebar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}

/* ==================================================
   COMPONENTES: RESUMO - PASSO 4
   ================================================== */
.summary-intro {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
}

.summary-intro-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.summary-intro-text {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
}

.summary-container {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 65%;
}

.summary-header {
  background-color: #00a24f;
  color: white;
  padding: 15px 20px;
}

.summary-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

.summary-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.summary-content {
  padding: 20px;
}

.summary-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.summary-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.section-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(0, 162, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 16px;
}

.section-title {
  font-weight: 600;
  font-size: 16px;
  color: #1d1d1f;
  flex-grow: 1;
}

.edit-link {
  color: #00a24f;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.edit-link:hover {
  text-decoration: underline;
}

.summary-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-direction: row;
}

.summary-item.full-width {
  grid-column: 1 / -1;
  flex-direction: column;
}

.summary-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 5px;
}

.summary-value {
  font-weight: 500;
  color: #1d1d1f;
}

#summary-modules-container {
  margin-top: 10px;
}

.module-group {
  margin-bottom: 15px;
}

.module-group-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.module-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding-left: 15px;
}

.module-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-icon img {
  width: 100%;
  height: auto;
}

.module-name {
  font-size: 14px;
  color: #1d1d1f;
}

/* ==================================================
   COMPONENTES: BENEFÍCIOS
   ================================================== */
.benefits-section {
  background-color: rgba(0, 162, 79, 0.05);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.benefits-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.benefits-icon {
  margin-right: 10px;
  font-size: 20px;
}

.benefits-title {
  font-weight: 600;
  font-size: 18px;
  color: #1d1d1f;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-icon {
  color: #00a24f;
  margin-right: 10px;
  font-weight: bold;
}

.benefit-text {
  font-size: 14px;
  color: #1d1d1f;
  line-height: 1.4;
}

/* ==================================================
   COMPONENTES: RESUMO DE PREÇOS
   ================================================== */
.price-summary {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.price-summary-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.price-breakdown {
  margin-bottom: 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e9ecef;
}

.price-item:last-child {
  border-bottom: none;
}

.price-label {
  color: #6c757d;
  font-size: 14px;
}

.price-value {
  font-weight: 500;
  font-size: 14px;
  color: #1d1d1f;
}

.price-discount {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e9ecef;
  color: #28a745;
}

.discount-label {
  font-size: 14px;
}

.discount-value {
  font-weight: 500;
  font-size: 14px;
}

.price-total,
.price-annual,
.price-onboarding {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #e9ecef;
  font-weight: 600;
}

.total-label,
.annual-label,
.onboarding-label {
  font-size: 16px;
  color: #1d1d1f;
}

.total-value,
.annual-value,
.onboarding-value {
  font-size: 18px;
  color: #00a24f;
}

.price-note {
  margin-top: 15px;
  font-size: 12px;
  color: #6c757d;
  font-style: italic;
}

/* ==================================================
   COMPONENTES: ROI CALCULATOR
   ================================================== */
.roi-calculator {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.roi-header {
  background-color: #fd9c0d;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.roi-icon {
  margin-right: 10px;
  font-size: 18px;
}

.roi-title {
  font-weight: 600;
  font-size: 16px;
}

.roi-content {
  padding: 20px;
}

.roi-description {
  margin-bottom: 20px;
  font-size: 14px;
  color: #6c757d;
}

.roi-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.roi-metric {
  flex: 1;
  min-width: 120px;
  text-align: center;
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #00a24f;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 14px;
  color: #6c757d;
}

.roi-note {
  font-size: 12px;
  color: #6c757d;
  font-style: italic;
}

/* ==================================================
   COMPONENTES: COMPARATIVO COM ALTERNATIVAS
   ================================================== */
.alternatives-comparison {
  margin-bottom: 30px;
}

.comparison-header {
  margin-bottom: 15px;
}

.comparison-title {
  font-weight: 600;
  font-size: 18px;
  color: #1d1d1f;
}

.comparison-table-container {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  color: #1d1d1f;
}

.comparison-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #1d1d1f;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ==================================================
   COMPONENTES: FORMULÁRIO DE SUBMISSÃO - PASSO 5
   ================================================== */
.submission-intro {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
}

.submission-intro-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.submission-intro-text {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
}

.contact-container {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-form-wrapper {
  flex: 2;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.form-header {
  background-color: #f8f9fa;
  padding: 15px 20px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-title {
  font-weight: 600;
  font-size: 16px;
  color: #1d1d1f;
  background-color: #f8f9fa!important;
}

.required-fields-note {
  font-size: 12px;
  color: #6c757d;
}

.contact-form {
  padding: 20px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.input-wrapper:focus-within {
  border-color: #00a24f;
  box-shadow: 0 0 0 3px rgba(0, 162, 79, 0.1);
}

.input-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-right: 1px solid #e9ecef;
}

.input-wrapper input {
  flex-grow: 1;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
  background-color: #ffffff;
}

.input-wrapper input:focus {
  outline: none;
}

.form-help {
  font-size: 12px;
  color: #6c757d;
  margin-top: 5px;
}

.contact-preference {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.preference-option {
  display: flex;
  align-items: center;
}

.preference-option input[type="radio"] {
  margin-right: 8px;
}

.preference-option label {
  font-size: 14px;
  color: #1d1d1f;
}

textarea {
  width: 100%;
  min-height: 100px;
  padding: 10px 15px;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: all 0.2s ease;
}

textarea:focus {
  outline: none;
  border-color: #00a24f;
  box-shadow: 0 0 0 3px rgba(0, 162, 79, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

.checkbox-group label {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
}

/* Sidebar do formulário */
.submission-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-summary {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
}

.summary-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.summary-item {
  margin-bottom: 10px;
}

.summary-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 5px;
}

.summary-value {
  font-weight: 500;
  color: #1d1d1f;
}

.summary-price {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #e9ecef;
}

.price-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 5px;
}

.price-value {
  font-size: 20px;
  font-weight: 700;
  color: #00a24f;
}

.incentive-box,
.limited-offer {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.incentive-box {
  background-color: rgba(0, 162, 79, 0.05);
  border-color: rgba(0, 162, 79, 0.2);
}

.limited-offer {
  background-color: rgba(253, 156, 13, 0.05);
  border-color: rgba(253, 156, 13, 0.2);
}

.incentive-icon,
.offer-icon {
  font-size: 24px;
  margin-right: 15px;
}

.incentive-title,
.offer-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  color: #1d1d1f;
}

.incentive-description,
.offer-description {
  font-size: 12px;
  color: #6c757d;
  line-height: 1.4;
}

/* ==================================================
   COMPONENTES: PRÓXIMOS PASSOS
   ================================================== */
.next-steps {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.next-steps-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step-item {
  display: flex;
  align-items: flex-start;
}

.step-number {
  width: 30px;
  height: 30px;
  background-color: #00a24f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  color: #1d1d1f;
}

.step-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
}

/* ==================================================
   COMPONENTES: STATUS DO FORMULÁRIO
   ================================================== */
.form-status {
  margin: 30px 0;
}

.success-message,
.error-message-box {
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.success-message {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.error-message-box {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.success-icon,
.error-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: bold;
}

.success-icon {
  background-color: #28a745;
  color: white;
}

.error-icon {
  background-color: #dc3545;
  color: white;
}

.form-status h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #1d1d1f;
}

.form-status p {
  color: #6c757d;
  margin-bottom: 20px;
}

.download-bonus {
  margin-top: 20px;
}

.bonus-link {
  display: inline-block;
  background-color: #00a24f;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.bonus-link:hover {
  background-color: #008f46;
  transform: translateY(-2px);
  color: #fff;
}

/* ==================================================
   COMPONENTES: BOTÃO DE SUBMISSÃO
   ================================================== */
.submit-btn {
  background-color: #fd9c0d;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.submit-btn:hover {
  background-color: #e58e0c;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.submit-btn.loading {
  position: relative;
  padding-right: 45px;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 15px;
  margin-top: -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ==================================================
   COMPONENTES: NAVIGATION & BOTÕES GERAIS
   ================================================== */
button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.prev-btn {
  background-color: #e9ecef;
  color: #495057;
  margin-right: 1rem;
}

.next-btn,
.finish-btn {
  background-color: #00a24f;
  color: white;
}

button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}

button:disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

/* ==================================================
   COMPONENTES: STEP 1 - CLIENT TYPES
   ================================================== */
.client-types {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.client-type {
  flex: 1;
  min-width: 200px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.client-type:hover {
  border-color: #00a24f;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.client-type.selected {
  border-color: #00a24f;
  background-color: #f6fffa;
}

.client-icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 1rem;
}

.client-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.client-info p {
  color: #6c757d;
  font-size: 0.9rem;
}

.account-plans h3 {
  color: #1d1d1f;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.plan-cards {
  display: flex;
  margin: 20px 0;
}

.plan-card {
  flex: 1;
  min-width: 200px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
}

.plan-card:hover {
  border-color: #00a24f;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-card.selected {
  background-color: #f6fffa;
  border: 1px solid #00a24f;
}

.plan-card h4 {
  font-weight: 600;
  margin-bottom: 0rem;
  font-size: 18px;
}


/* ==================================================
   COMPONENTES: STEP 2 - SOLUÇÕES
   ================================================== */
.solution-plans {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.solution-plan {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.solution-plan:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.plan-header:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.solution-plan:nth-child(1) .plan-header,
.solution-plan:nth-child(2) .plan-header {
  background-color: #c3c9c31a;
}

.plan-checkbox {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.plan-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
}

.plan-icon img {
  width: 36px;
}

.plan-title h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.plan-title p {
  color: #6c757d;
  font-size: 0.85rem;
}

/* Plan modules */
.plan-modules {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
  background-color: #fff;
}

/* Solution cards */
.solution-card {
  background-color: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.solution-card:hover {
  border-color: #00a24f;
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.solution-checkbox {
  margin-right: 1rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.solution-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  margin-right: 1rem;
}

.solution-icon img {
  width: 36px;
}

.solution-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 30px;
}

.solution-info p {
  color: #6c757d;
  font-size: 0.8rem;
}

/* ==================================================
   COMPONENTES: STEP 3 - ONBOARDING
   ================================================== */
/* Nota: Caso esta secção seja distinta da anterior, considere ajustar a nomenclatura para evitar conflitos */
.onboarding-option {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  flex-wrap: wrap;
  flex: 1;
  width: 50%;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  overflow: visible;
  align-content: flex-start;
}

.onboarding-option:hover {
  border-color: #00a24f;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.onboarding-radio {
  margin-right: 1rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.onboarding-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin-right: 1rem;
  transition: all 0.2s ease;
}

.onboarding-info {
  flex-grow: 1;
}

.onboarding-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.onboarding-info p {
  color: #6c757d;
  font-size: 0.85rem;
}

.onboarding-price {
  display: none;
}

/* ==================================================
   COMPONENTES: STEP 4 - SUMMARY (CONTINUAÇÃO)
   ================================================== */
.summary {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
}

.summary-section {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e9ecef;
}

.summary-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-section h3 {
  color: #1d1d1f;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Adicionar estilos para planos e módulos no resumo */
.summary-plan {
  margin-bottom: 0.75rem;
}

.summary-plan-title {
  font-weight: 600;
  color: #1d1d1f;
  font-size: 1rem;
}

.summary-module {
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}

.summary-module .summary-label {
  color: #6c757d;
}

.total-section {
  display: none;
}

/* ==================================================
   COMPONENTES: CONTACT FORM
   ================================================== */
.contact-intro {
  margin-bottom: 1.5rem;
  color: #6c757d;
}

.contact-form {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
}

.contact-form h3 {
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.error-message {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1rem;
}

.form-status {
  margin: 1.5rem 0;
}

.success-message,
.error-message-box {
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.success-message {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
}

.error-message-box {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
}

.success-icon,
.error-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.success-icon {
  background-color: #28a745;
  color: white;
}

.error-icon {
  background-color: #dc3545;
  color: white;
}

.form-status h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.form-status p {
  color: #6c757d;
}

/* ==================================================
   SLIDER (RANGE INPUT) STYLES
   ================================================== */
.slider-container {
  position: relative;
  width: 100%;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.slider-value {
  color: #6b7280;
  font-size: 20px;
}

.range-input-wrapper {
  position: relative;
  width: 100%;
  height: 8px;
  margin: 10px 0;
}

.range-track {
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 9999px;
  top: 50%;
  transform: translateY(-50%);
}

.range-fill {
  position: absolute;
  height: 8px;
  background-color: #00a24f;
  border-radius: 9999px;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0px;
  background: transparent;
  position: absolute;
  z-index: 2;
  margin: 0;
}

input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background: transparent;
  height: 8px;
}

input[type="range"]::-moz-range-track {
  background: transparent;
  height: 8px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #00a24f;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  margin-top: 0;
  position: relative;
  z-index: 3;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0f172a;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  position: relative;
  z-index: 3;
}

input[type="range"]:hover::-webkit-slider-thumb,
input[type="range"]:hover::-moz-range-thumb {
  background: #f8fafc;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]:focus::-webkit-slider-thumb,
input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.2);
}

/* ==================================================
   SELECT & FORM FIELD STYLES
   ================================================== */
.select-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}

.form-fields {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-group {
  flex: 1;
  min-width: 200px;
  margin-bottom: 0rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

/* Exemplo de input customizado */
#crop-group {
  margin-bottom: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: #333;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%236b7280' viewBox='0 0 20 20'%3E%3Cpath d='M5.23 7.21a.75.75 0 0 1 1.06.02L10 11.168l3.71-3.938a.75.75 0 1 1 1.08 1.04l-4.25 4.5a.75.75 0 0 1-1.08 0l-4.25-4.5a.75.75 0 0 1 .02-1.06Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

#crop-group:hover {
  border-color: #00a24f;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.07);
}

#crop-group:focus {
  outline: none;
  border-color: #00a24f;
  box-shadow: 0 0 0 3px rgba(0, 162, 79, 0.2);
}

#crop-group option {
  padding: 0.5rem;
  background-color: #ffffff;
  color: #333333;
}

/* ==================================================
   UTILS
   ================================================== */
.hidden {
  display: none !important;
}

/* ==================================================
   MEDIA QUERIES (MAX-WIDTH: 768px)
   ================================================== */
@media (max-width: 768px) {
  .summary-container {
    width: 100%;
  }  
  .timeline-container {
    flex-direction: column;
  }
  .timeline-container::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 2px;
    background-color: #e9ecef;
    z-index: 1;
    left: 20px;
    height: calc(100% - 20px);
  }
  .timeline-step {
    margin-bottom: 20px;
  }
  .onboarding-features,
  .summary-grid,
  .benefits-grid,
  .plan-modules {
    grid-template-columns: 1fr;
  }
  .roi-metrics {
    flex-direction: column;
    gap: 10px;
  }
  .roi-metric {
    min-width: 100%;
  }
  .contact-container {
    flex-direction: column;
  }
  .trust-elements-sidebar {
    flex-direction: column;
  }
  .client-types,
  .plan-cards,
  .form-fields,
  .form-row {
    flex-direction: column;
  }
  .plan-card {
    margin: 5px 5px;
  }
  .onboarding-options {
    flex-direction: column;
  }
  .onboarding-option {
    flex-direction: column;
    width: 100%;
  }
  .onboarding-header {
    padding 0px;
  }
  .summary-item {
    flex-direction: column;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .prev-btn {
    margin-right: 0rem;
    margin-bottom: .5rem;
  }
}

/* ==================================================
   MEDIA QUERIES (MAX-WIDTH: 600px)
   ================================================== */
@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }
}

/* ==================================================
   ANIMAÇÕES
   ================================================== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
