/* Start custom CSS for html, class: .elementor-element-c7c7b11 */:root {
  --primary: #22273a;
  --accent: #1be6b6;
  --accent2: #18c0ef;
  --background: #fafbfc;
  --card-bg: #fff;
  --border: #e1e5ef;
  --gray: #7d879c;
  --radius: 15px;
  --shadow: 0 4px 24px 0 rgba(27,230,182,0.09), 0 2px 6px rgba(60,72,88,0.04);
}

body {
  background: var(--background);
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--primary);
}

.infographic-container {
  max-width: 880px;
  margin: 28px auto 24px auto;
  padding: 0 1rem;
}

.infographic-header {
  text-align: center;
  margin-bottom: 2rem;
}
.infographic-header h1 {
  font-size: 2.05rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.infographic-header h2 {
  font-size: 1.10rem;
  font-weight: 600;
  color: var(--accent2);
  margin-top: 0;
  margin-bottom: 0.2rem;
  letter-spacing: -0.5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.3rem;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 0.6rem 1.1rem 0.6rem;
  min-height: 110px;
  transition: box-shadow 0.16s;
  position: relative;
}
.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 0.1rem;
  display: block;
}
.stat-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.15rem;
  letter-spacing: -1px;
}
.stat-card:nth-child(2) .stat-value { color: var(--accent2); }
.stat-card:nth-child(3) .stat-value { color: #fbbd23; }
.stat-card:nth-child(4) .stat-value { color: #f44e56; }
.stat-desc {
  font-size: 0.97rem;
  color: #627197;
  text-align: center;
  font-weight: 500;
  margin-top: 0.12rem;
}

/* === STEPS === */
.steps-section {
  margin: 2.3rem 0 2.6rem 0;
}
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}
.step-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  transition: box-shadow 0.15s, border 0.15s, background 0.2s, transform 0.7s cubic-bezier(.18,.89,.32,1.28);
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  will-change: transform, box-shadow, border-color, background;
  opacity: 0;
  transform: translateY(60px) scale(0.98);
}
.step-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.65s cubic-bezier(.18,.89,.32,1.28), transform 0.7s cubic-bezier(.18,.89,.32,1.28);
}
.step-card.active,
.step-card:focus,
.step-card:hover {
  border: 1.5px solid var(--accent);
  box-shadow: 0 8px 32px 0 rgba(27,230,182,0.08);
  background: linear-gradient(90deg, #f6fffd 60%, #eafafd 100%);
  outline: none;
  transform: translateY(-2px) scale(1.01);
}

.step-icon {
  font-size: 2.3rem;
  margin-right: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  z-index: 1;
  transition: transform 0.4s;
}
.step-card.active .step-icon,
.step-card:focus .step-icon,
.step-card:hover .step-icon {
  transform: scale(1.18) rotate(-7deg);
}

.step-number {
  font-size: 2.1rem;
  font-weight: 900;
  margin-right: 1.0rem;
  color: var(--accent2);
  min-width: 40px;
  text-align: center;
  line-height: 2.2rem;
  flex-shrink: 0;
  z-index: 1;
  transition: color 0.2s;
}
.step-card.active .step-number {
  color: var(--accent);
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: color 0.2s;
}
.step-title {
  font-size: 1.19rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: var(--primary);
  transition: color 0.2s;
}
.step-desc {
  font-size: 1.02rem;
  color: var(--gray);
  margin-bottom: 0.7rem;
  font-weight: 500;
  transition: color 0.2s;
}
.step-list {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 0.28em;
}
.step-list li {
  display: flex;
  align-items: center;
  font-size: 0.99rem;
  font-weight: 500;
  background: none;
  border: none;
  margin-bottom: 0;
  padding: 0.09em 0.2em;
  cursor: pointer;
  user-select: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  outline: none;
}
.step-list li .check-icon {
  font-size: 1.16em;
  color: var(--accent);
  margin-right: 0.7em;
  transition: color 0.15s;
  font-weight: 900;
}
.step-list li.checked {
  background: #e0faf3;
  color: var(--accent2);
  font-weight: 700;
}
.step-list li.checked .check-icon {
  color: var(--accent2);
}
.step-list li:focus {
  outline: 2px solid var(--accent2);
}
.step-list li:not(.checked):hover {
  background: #f6fffd;
}

@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
  }
}

/* Responsividade para etapas */
@media (max-width: 699px) {
  .infographic-header h1 {
    font-size: 1.32rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
  .stat-card {
    padding: 1.05rem 0.4rem 0.95rem 0.4rem;
    min-height: 82px;
  }
  .steps-list {
    gap: 1.05rem;
  }
  .step-card {
    min-height: 0;
    padding: 1rem 0.9rem 0.8rem 0.9rem;
  }
  .step-icon { font-size: 1.5rem; margin-right: 0.7rem; }
  .step-number { font-size: 1.5rem; min-width: 28px; }
  .step-title { font-size: 1.01rem; }
}

@media (max-width: 430px) {
  .infographic-container { padding: 0 0.2rem; }
  .step-card { padding: 0.7rem 0.4rem 0.6rem 0.5rem;}
  .infographic-header h1 { font-size: 1.06rem; }
  .stat-card { min-height: 60px; }
}

.cta-infographic {
  text-align: center;
  margin: 2.5rem 0 1.2rem 0;
}
.cta-infographic h3 {
  font-size: 1.23rem;
  font-weight: 800;
  color: var(--accent2);
  margin-bottom: 0.8rem;
  margin-top: 0;
}
.cta-infographic p {
  font-size: 1.06rem;
  color: #566c83;
  font-weight: 500;
  margin-bottom: 1.2rem;
  margin-top: 0;
}
.cta-btn-infographic {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: #fff;
  border-radius: 36px;
  font-weight: 700;
  padding: 1rem 2.5rem;
  font-size: 1.08rem;
  text-decoration: none;
  margin-top: 1.1rem;
  box-shadow: 0 2px 6px rgba(27,230,182,0.07);
  transition: background 0.2s, transform 0.15s;
}
.cta-btn-infographic:hover,
.cta-btn-infographic:focus {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: translateY(-2px) scale(1.03);
}

::-webkit-scrollbar-thumb { background: #e7f7f3; }/* End custom CSS */