:root {
  /* TEXT-COLOR */
  --black-0: #ffffff;
  --black-50: #f5f5f5;
  --black-100: #e0e0e0;
  --black-200: #bdbdbd;
  --black-300: #9e9e9e;
  --black-400: #757575;
  --black-500: #616161;
  --black-600: #424242;
  --black-700: #303030;
  --black-800: #212121;
  --black-900: #121212;
  --black-950: #0e0e0e;
  --black-1000: #000000;
  /* FONT-SIZE */
  --fs-xs: 1.2rem; /* 12px */
  --fs-sm: 1.4rem; /* 14px */
  --fs-md: 1.6rem; /* 16px base */
  --fs-lg: 1.8rem; /* 18px */
  --fs-xl: 2rem; /* 20px */
  --fs-2xl: 2.4rem; /* 24px */
  --fs-3xl: 3rem; /* 30px */
  --fs-4xl: 3.6rem; /* 36px */
  --fs-5xl: 4.8rem; /* 48px */
  --fs-6xl: 6.4rem; /* 64px */
  /* BACKGROUND */
  --bg-color: #faf8f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
.container {
  padding: 2.4rem 4.8rem;
}

#hero {
  margin-top: 2.4rem;
}

#hero h1 {
  font-size: 4.2rem;
  margin-bottom: 1.2rem;
}

#hero p {
  font-size: 2.4rem;
  color: var(--black-600);
  max-width: 55ch;
}

#overview {
  margin-top: 2.4rem;
}

.title-section {
  font-size: 3.2rem;
  margin-bottom: 2.4rem;
}

.list-items {
  padding: 2.4rem 4.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.8rem;
}
.paragraph {
  font-size: 1.8rem;
}
#overview h2 {
  margin-bottom: 1.8rem;
}

#overview p {
  max-width: 90ch;
  line-height: 1.6;
}

.hero-project2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.hero__image img {
  width: 80%;
}

.description-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.overview__media img {
  width: 100%;
}

#process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 4rem;
  align-items: center;
}

.process__image img {
  width: 100%;
}

.image__process {
  width: 100%;
  height: auto;
  display: block;
  grid-column: 2;
  grid-row: 1;
}

.items__process {
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 768px) {
  #process {
    grid-template-columns: 1fr;
  }

  .items__process {
    grid-column: 1;
    grid-row: 1;
  }

  .image__process {
    grid-column: 1;
    grid-row: 2;
  }
}

.cta-project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #6c63ff; /* acento moderno */
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.cta-project:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(108, 99, 255, 0.45);
  background-color: #5a52e0;
}

.cta-project:active {
  transform: translateY(0);
}
