/* Reforma Tributária Custom Styles */
.hero-split {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--color-primary);
  min-height: 60vh;
}

.hero-split-content {
  flex: 1 1 50%;
  padding: 80px 5% 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #FFFFFF;
}

.hero-split-content h1 {
  max-width: 650px;
}

.hero-split-image {
  flex: 1 1 50%;
  min-height: 400px;
  background-size: cover;
  background-position: top center; /* Ajustado para mostrar o rosto na foto */
}

@media (max-width: 991px) {
  .hero-split-content,
  .hero-split-image {
    flex: 1 1 100%;
  }

  .hero-split-content {
    padding: 60px 5%;
  }

  .hero-split-content h1 {
    font-size: 2.2rem !important;
  }
}

/* Impact Grid */
.reforma-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.impact-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

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

.impact-header i {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.impact-header h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
}

.impact-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

