

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  min-height: 80vh;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 50%;
  z-index: 2;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content .highlight {
  color: #FFD900;
  position: relative;
  display: inline-block;
}

.hero-content .highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: white;
  bottom: 5px;
  left: 0;
  z-index: -1;
  transform: skewX(-10deg);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
  max-width: 90%;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: #FFD900;
  color: #000;
  border: 2px solid #FFD900;
  box-shadow: 0 5px 15px rgba(255, 217, 0, 0.3);
}

.btn-primary:hover {
  background-color: transparent;
  color: #FFD900;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 217, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #FFD900;
  border: 2px solid #FFD900;
}

.btn-secondary:hover {
  background-color: rgba(255, 217, 0, 0.1);
  transform: translateY(-5px);
}

.hero-image {
  width: 45%;
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-color: #FFD900;
  border-radius: 38% 62% 70% 30% / 45% 45% 55% 55%;
  opacity: 0.6;
  animation: morphShape 8s ease-in-out infinite;
}

.main-image {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid #FFD900;
  z-index: 2;
}

@keyframes morphShape {
  0% {
    border-radius: 38% 62% 70% 30% / 45% 45% 55% 55%;
  }
  50% {
    border-radius: 76% 24% 33% 67% / 68% 32% 68% 32%;
  }
  100% {
    border-radius: 38% 62% 70% 30% / 45% 45% 55% 55%;
  }
}

/* Media queries para responsive */
@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    padding: 60px 5%;
    text-align: center;
  }
  
  .hero-content, .hero-image {
    width: 100%;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
  
  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-shape {
    top: -50px;
    right: -100px;
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 80%;
    margin: 0 auto;
  }
}