/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-primary-50) 0%,
    var(--color-primary-100) 50%,
    var(--color-primary-200) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
}

.hero-circle-1 {
  width: 8rem;
  height: 8rem;
  top: 5rem;
  left: 2.5rem;
  background-color: var(--color-primary-300);
}

.hero-circle-2 {
  width: 6rem;
  height: 6rem;
  bottom: 10rem;
  right: 5rem;
  background-color: var(--color-primary-400);
  animation-delay: -2s;
}

.hero-circle-3 {
  width: 4rem;
  height: 4rem;
  top: 50%;
  left: 25%;
  background-color: var(--color-primary-200);
  animation-delay: -4s;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-logo {
  margin: 0 auto 1.5rem;
  width: 12rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--color-primary-700);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.button-primary {
  background-color: var(--color-primary-800);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-standard);
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none; /* Quitar subrayado para enlaces */
  display: inline-block; /* Asegura padding en <a> */
}

.button-primary:hover {
  background-color: var(--color-primary-900);
  transform: scale(1.05);
}

.button-secondary {
  border: 2px solid var(--color-primary-800);
  color: var(--color-primary-800);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-standard);
  text-decoration: none; /* Quitar subrayado para enlaces */
  display: inline-block; /* Asegura padding si se usa como <a> */
}

.button-secondary:hover {
  background-color: var(--color-primary-800);
  color: white;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary-600);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  
  .hero-description {
    font-size: 1.5rem;
  }
}