/* ==========================================
   BUILES LEGAL - HERO SECTION
   ========================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background:
    radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(13, 30, 61, 0.5) 0%, transparent 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-tagline {
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 550px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* Asegura que el contenedor de la imagen tenga un tamaño límite */
.hero-artwork {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Controla el contenedor/tarjeta del logo en el hero */
.hero-shape {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
  transition: var(--transition-smooth);
  text-align: center;
  text-decoration: none;
  width: 280px;
  margin: 0 auto;
}

.hero-shape:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(103, 193, 94, 0.15);
  border-color: #67C15E;
}

/* Decoración trasera dorada en la tarjeta del hero */
.hero-shape::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--accent-gold);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.35;
  transition: var(--transition-smooth);
}

.hero-shape:hover::before {
  top: -12px;
  right: -12px;
  opacity: 0.5;
}

.hero-shape-badge {
  font-size: 0.72rem;
  color: #67C15E;
  background: rgba(103, 193, 94, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-shape-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #67C15E;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

.hero-shape-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-primary);
  line-height: 1.3;
}

.hero-shape-icon {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float-logo 6s ease-in-out infinite;
}

.hero-shape-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes float-logo {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
