/* ═══════════════════════════════════════════════════════════════════════
   HERO.CSS — Hero section, shine effect, animaciones canvas
   ═════════════════════════════════════════════════════════════════════════ */

#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A2840 0%, #0A2840 58%, rgba(41,171,226,.20) 100%);
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,171,226,.25) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 25%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,169,.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41, 171, 226, .14);
  border: 1px solid rgba(41, 171, 226, .32);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-badge::before {
  content: '●';
  color: var(--cyan);
  font-size: 8px;
}

.hero-badge span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--cyan);
}

.hero-title strong {
  font-style: normal;
  color: var(--teal);
}

.hero-sub {
  font-size: 16.5px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.78;
  margin-bottom: 38px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--r);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232, 97, 42, .45);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-cta:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 97, 42, .55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--r);
  border: 1.5px solid rgba(41, 171, 226, .40);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(41, 171, 226, .08);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.hstat-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.hstat-lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .48);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero Visual Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hv-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(41, 171, 226, .18);
  border-radius: 22px;
  padding: 32px;
  width: 100%;
  max-width: 360px;
  backdrop-filter: blur(12px);
}

.hv-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hv-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 11px 14px;
  border-radius: 11px;
  margin-bottom: 9px;
  transition: background .2s;
  cursor: default;
}

.hv-pill:hover {
  background: rgba(41, 171, 226, .10);
}

.hv-dot {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hv-dot svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.hv-dot.d-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
}

.hv-dot.d-cyan {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-d));
}

.hv-dot.d-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
}

.hv-dot.d-steel {
  background: linear-gradient(135deg, var(--steel), var(--steel-d));
}

.hv-dot.d-gray {
  background: linear-gradient(135deg, #7A7A7A, #555);
}

.hv-dot.d-green {
  background: linear-gradient(135deg, #16A34A, #15803D);
}

.hv-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
}

.hv-badge {
  position: absolute;
  bottom: -16px;
  right: -6px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hv-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
}

.hv-badge-txt {
  font-size: 12px;
  font-weight: 700;
  color: var(--g800);
}

.hv-badge-sub {
  font-size: 10px;
  color: var(--g400);
  font-weight: 400;
}

/* Emoji Icons */
.svc-emoji-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: drop-shadow(0 0 10px rgba(41, 171, 226, 0.30));
  transition: transform .25s, filter .25s;
}

.svc-card:hover .svc-emoji-wrap {
  transform: scale(1.12);
  filter: drop-shadow(0 0 16px rgba(41, 171, 226, 0.55));
}

.svc-card.c-teal:hover .svc-emoji-wrap {
  filter: drop-shadow(0 0 14px rgba(0,184,169,.6));
}

.svc-card.c-orange:hover .svc-emoji-wrap {
  filter: drop-shadow(0 0 14px rgba(232,97,42,.6));
}

.svc-card.c-steel:hover .svc-emoji-wrap {
  filter: drop-shadow(0 0 14px rgba(74,156,197,.6));
}

.svc-card.c-green:hover .svc-emoji-wrap {
  filter: drop-shadow(0 0 14px rgba(34,197,94,.6));
}

.svc-card.c-gray:hover .svc-emoji-wrap {
  filter: drop-shadow(0 0 14px rgba(120,120,120,.5));
}

.svc-card.c-dark:hover .svc-emoji-wrap {
  filter: drop-shadow(0 0 14px rgba(41,171,226,.5));
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 18px;
  }
}

/* Utility classes for emoji dots */
.emoji-dot-lg {
  font-size: 16px;
  line-height: 1;
}
