* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.conoce {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  gap: 40px;
}

.conoce-texto {
  max-width: 480px;
}

.conoce-texto h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.conoce-texto h1 span {
  color: #7b1731; /* vino institucional */
  font-weight: 600;
}

.conoce-texto p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-saber {
  display: inline-block;
  background-color: #77172f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-saber:hover {
  background-color: #BFA184;
}

.conoce-imagen img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .conoce {
    flex-direction: column;
    text-align: center;
  }

  .conoce-texto h1 {
    font-size: 36px;
  }
}
