.hero {
  min-height: 520px;
  background:
    linear-gradient(rgba(45,9,24,.82), rgba(45,9,24,.82)),
    url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 8%;
  color: white;
}

.hero-content {
  max-width: 650px;
}

.hero span {
  color: var(--dorado);
  font-weight: bold;
}

.hero h2 {
  font-size: 54px;
  line-height: 1.1;
  margin: 15px 0;
}

.hero p {
  font-size: 19px;
  line-height: 1.6;
}

.section {
  padding: 70px 8%;
}

.title {
  text-align: center;
  margin-bottom: 40px;
}

.title h2 {
  color: var(--vino);
  font-size: 36px;
}

.title p {
  color: #666;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
}

.icon {
  font-size: 44px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.about h2 {
  color: var(--vino);
  font-size: 36px;
}

.about p {
  line-height: 1.7;
  color: #555;
}

.about-list div {
  background: white;
  padding: 14px 18px;
  border-left: 5px solid var(--dorado);
  border-radius: 10px;
  margin: 10px 0;
}

.about img {
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,.1);
}

.cta {
  background: var(--vino);
  color: white;
  text-align: center;
  padding: 65px 8%;
}