
#welcome-section {
  width: 100%;
  background: #fff;
  color: #000;
  font-family: system-ui, sans-serif;
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
}

.welcome-container {
  max-width: 1200px;
  width: 100%;
}

.welcome-title {
  font-size: 1.5rem; /* Ajuste solicitado */
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-bg);
}

.welcome-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #333;
}

.welcome-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-bg);
}

/* GRID */
.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Tarjetas sin border-left */
.reason-card {
  flex: 1 1 calc(33.33% - 1rem);
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.reason-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.reason-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-bg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.reason-title svg {
  width: 26px;
  height: 26px;
  fill: var(--color-accent);
}
.reason-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .reason-card {
    flex: 1 1 100%;
  }
}