:root {
  --bg-light: #DFF2FD;
  --text-dark: #1b1b18;

  --primary-blue: #1976BA;
  --accent-cyan: #0095A9;
  --jade-green: #0CA381;
  --fuchsia: #EC007F;
  --dark-purple: #4D3C9D;
  --neutral-text: #475569;
  --white: #ffffff;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background-color: var(--bg-light);
  margin: 0;
  padding: 0;
}

.main-welcome {
  width: 100%;
  padding-top: 2rem;
  background-color: var(--bg-light);
  text-align: center;
}

.hero,
.features {
  max-width: 1024px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.imageneslogo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.hero-image {
  max-width: 50%;
  border-radius: 20px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-box {
  flex: 1 1 280px;
  background-color: var(--white);
  border-left: 6px solid var(--jade-green);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--fuchsia);
  margin-bottom: 1rem;
  display: block;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--dark-purple);
  font-weight: 600;
}

.feature-box p {
  font-size: 1rem;
  color: var(--neutral-text);
  line-height: 1.5;
}

.typewriter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

.typewriter-container i {
  font-size: 2rem;
  color: var(--jade-green);
}

#typewriter {
  font-size: 2rem;
  color: var(--jade-green);
  font-weight: 600;
  min-height: 2rem;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
.typewriter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

.typewriter-container i {
  font-size: 1.5rem;
  color: var(--jade-green);
}

#typewriter {
  font-size: 1.5rem;
  color: var(--jade-green);
  font-weight: 600;
  min-height: 2rem;
}

}
