/* ============================================
   HERO — LJR Digital Studio (Premium Edition)
   Referência: Apple · Framer · Stripe · Linear
============================================ */

/* ——— Seção ——— */
.hero {
  position: relative;
  background: #FFFFFF;
  padding: 100px 0 0;
  overflow: hidden;
}

/* Glow branco suave atrás do texto */
.hero__glow-bg {
  position: absolute;
  top: 50%;
  left: 22%;
  transform: translate(-50%, -50%);
  width: 760px;
  height: 760px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.4) 40%,
      transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* ——— Container (Grid de 2 Colunas) ——— */
.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 60% 40%;
  gap: var(--grid-gap);
  align-items: stretch;
  min-height: 600px;
}

/* ==============================
   COLUNA ESQUERDA
============================== */
.hero__content {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 0px;
}

/* ——— Label / Tag ——— */
.hero__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

/* ——— Título H1 ——— */
.hero__headline {
  font-size: var(--font-h1);
  font-weight: var(--weight-h1);
  color: var(--black);
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
  text-transform: uppercase;
  max-width: var(--title-max-width);
  margin-bottom: 24px;
}

.hero__headline--blue {
  color: var(--blue);
}

/* ——— Descrição ——— */
.hero__sub {
  font-size: 18px;
  line-height: var(--lh-sub);
  color: var(--gray-text);
  max-width: var(--sub-max-width);
  margin-bottom: 36px;
}

/* ——— Botões ——— */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  flex-wrap: nowrap;
}

.hero__actions .btn {
  padding: 14px 28px;
  white-space: nowrap;
}

/* ——— Tech Stack ——— */
.hero__tech {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  /* alinha verticalmente no limite da Seção 2 */
  padding-bottom: 0px;
}

.hero__tech-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2563EB;
  text-transform: uppercase;
}

.hero__tech-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  /* Esconder barra de rolagem visual mantendo funcionalidade se necessário */
  scrollbar-width: none;
}

.hero__tech-logos::-webkit-scrollbar {
  display: none;
}

/* Cada tech dentro de um quadrado branco com sombra (+15-20% maior) */
.tech-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 10px 8px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(241, 245, 249, 0.9);
  width: 72px;
  height: 78px;
  flex-shrink: 0;
  cursor: default;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tech-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.tech-chip svg,
.tech-chip img {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.tech-chip span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #6B7280;
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
}

/* ==============================
   COLUNA DIREITA — COMPOSIÇÃO DE CAMADAS
 ============================== */
.hero__visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
}

/* Camada 1 (z-index: 1) — Círculo de Fundo (Moldura circular perfeita atrás do fundador) */
.hero__bg-circle {
  position: absolute;
  top: 32%;
  left: 28%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

/* Camada 2 (z-index: 2) — Foto Principal do Fundador */
.hero__photo-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 36%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  z-index: 2;
  display: block;
}

/* Camada 3 (z-index: 5) — Bloco de Assinatura (Canto Inferior Esquerdo da Foto) */
.hero__signature-block {
  position: absolute;

  left: -23%;
  /* mesmo valor da foto */
  top: 250px;
  /* ajuste a altura */

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;

  z-index: 5;
  pointer-events: none;
}

.hero__signature-img {
  width: 100px;
  height: auto;
  object-fit: contain;
  margin-bottom: 2px;
}

.hero__signature-name {
  font-size: 11px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero__signature-role {
  font-size: 9px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Camada 4 (z-index: 4) — Card Premium de Estatísticas (Flutuante) */
.hero__card {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 26px 22px;
  width: 172px;
  box-shadow:
    0 25px 50px -12px rgba(15, 23, 42, 0.12),
    0 12px 24px -8px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  flex-direction: column;
  animation: floatCard 6s ease-in-out infinite;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 8px));
  }
}

.hero__card:hover {
  transform: translateY(calc(-50% - 8px));
  box-shadow:
    0 30px 60px -12px rgba(15, 23, 42, 0.18),
    0 16px 32px -8px rgba(15, 23, 42, 0.12),
    0 4px 10px rgba(15, 23, 42, 0.06);
}

.hero__card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 0;
}

.hero__card-item:first-child {
  padding-top: 0;
}

.hero__card-item:last-child {
  padding-bottom: 0;
}

.hero__card-divider {
  width: 100%;
  height: 1px;
  background: rgba(226, 232, 240, 0.5);
}

/* Ícone dentro de quadrado azul claro (+15% maior) */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(238, 242, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563EB;
}

.card-icon svg {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  stroke: #2563EB;
}

.card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
  text-align: center;
}

.card-number {
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.card-label {
  font-size: 8.5px;
  font-weight: 700;
  color: #64748B;
  line-height: 1.35;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
}