.color-hero {
  background-color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.color-hero .contenedor {
  display: grid;
  grid-template-columns: 1fr;
  padding: 40px 1rem;
  gap: 40px;
}

.color-hero .contenedor1:nth-child(1) {
  grid-column: 1/1;
  grid-row: 1/1;
}

.color-hero .wrap .box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.color-hero .contenedor1 span {
  color: black;
  font-size: 25px;
  margin: 0;
}

.color-hero .contenedor1 h1 {
  color: black;
  text-align: left;
  font-size: 45px;
  margin: 0;
}

.color-hero .contenedor1 p {
  color: black;
  font-size: 35px;
  text-align: left;
  margin: 0;
}

.color-hero .contenedor1 .botones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

.color-hero .botones .btn1 {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  padding: 10px 30px;
  background-color: transparent;
  border-radius: 10px;
  border: 1px var(--gold-color) solid;
  color: var(--gold-color);
  transition: all 0.2s linear;
  width: 100%; 
  max-width: 400px;
  align-self: center;
  text-wrap: nowrap;
}

.color-hero .botones .btn1:hover {
  background-color: var(--gold-color);
  color: white;
}

.color-hero .botones .btn2 {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  padding: 10px 30px;
  background-color: var(--gold-color);
  border-radius: 10px;
  border: 1px var(--gold-color) solid;
  color: white;
  transition: all 0.2s linear;
  width: 100%; 
  max-width: 400px;
  align-self: center;
  text-wrap: nowrap;
}

.color-hero .botones .btn2:hover {
  background-color: transparent;
  color: var(--gold-color);
}

.color-hero .contenedor2 {
  grid-column: 1/1;
  grid-row: 2/2;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  width: 100%;
  justify-items: center;
  aspect-ratio: 16 / 12;
}

.color-hero .contenedor2 img {
  width: 100%;
  max-width: 500px;
  height: auto; 
  object-fit: contain; 
  border-radius: 10px;
}

/* Estilos versión PC */
@media (min-width: 768px) {
  .color-hero .contenedor {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 1280px;
    place-items: center;
    align-items: center;
  }

  .color-hero .contenedor1 {
    grid-column: 1/1;
    grid-row: 1/1;
    justify-content: center;
    gap: 30px;
    justify-items: center;
    place-content: center;
  }

  .color-hero .contenedor1 .botones {
    flex-direction: row;
    justify-content: flex-start;
  }

  .color-hero .contenedor2 {
    grid-column: 2/2;
    grid-row: 1/1;
    margin: 0 auto;
    justify-items: center;
    place-content: end;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .color-hero .contenedor2 img {
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .color-hero .contenedor1 span {
    font-size: 25px;
  }

  .color-hero .contenedor1 h1 {
    font-size: 65px;
  }

  .color-hero .contenedor1 p {
    font-size: 35px;
  }
}
