/* General */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}

/* Hero Section */
.design-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 10%;
  background: linear-gradient(to right, #f4a261 50%, #fff 50%);
}

/* Logo circular */
.circle-logo {
  position: relative;
  width: 100px;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-logo span {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
}

.circle-logo p {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 0.7rem;
  color: #fff;
  text-align: center;
  line-height: 100px;
  transform: rotate(20deg);
}

/* Texto */
.hero-text {
  color: #fff;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 400px;
}

.hero-text button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 0 #cc5200;
  transition: all 0.3s;
}

.hero-text button:hover {
  background: #e65c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #b34700;
}

/* Imagen */
.hero-image img {
  width: 80%;
  max-width: 350px;
  display: block;
  margin: 0 auto;
}

/* Cards Section */
.design-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 10%;
  background: #fff;
}

.design-cards .card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.design-cards .card i {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff6600;
}

.design-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .design-hero {
    grid-template-columns: 1fr;
    text-align: center;
    background: #f4a261;
  }
  .hero-text p {
    margin: 0 auto 20px;
  }
  .hero-image img {
    max-width: 250px;
  }
  .design-cards {
    flex-direction: column;
  }
}
