/*--------------------------------------------------------------
# roadmap.css
# Estilos da página de Roadmap: hero, trilha neon, timeline,
# planetas, cards e separadores.
# Keyframes: centralizados em keyframes.css (importado via main.css).
# Media queries: centralizadas em responsive.css.
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero do Roadmap
--------------------------------------------------------------*/
.pagina-interna.roadmap-page {
  padding-top: 0;
}

.roadmap-hero {
  min-height: 80dvh;
  display: flex;
  padding-top: 0;
  margin-bottom: 25rem;
  align-items: center;
  position: relative;
  overflow: visible;
}

.roadmap-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 48px;
}

.roadmap-hero__texto {
  text-align: center;
}

.roadmap-hero__label {
  font-size: var(--type-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #04C4D9;
  font-family: 'Courier New', monospace;
}

.roadmap-hero__titulo {
  font-size: var(--type-2xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  margin: 8px 0 16px;
  font-family: var(--heading-font);
}

.roadmap-hero__sub {
  font-size: var(--type-base);
  max-width: 520px;
  line-height: var(--lh-relaxed);
  margin: 0;
  padding: 0px 39px;
}

/* Indicador de scroll — agora é um botão clicável */
.roadmap-scroll-hint {
  position: absolute;
  left: 2vw;
  right: 2vw;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: rdScrollBounce 2s ease-in-out infinite;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  padding: 0;
}

.roadmap-scroll-hint:focus-visible {
  outline: 2px solid #04C4D9;
  outline-offset: 6px;
  border-radius: 4px;
}

.roadmap-scroll-hint__texto {
  font-size: var(--type-xs);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
  font-family: 'Courier New', monospace;
}

.roadmap-scroll-hint__icone {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(4, 196, 217, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04C4D9;
  font-size: 1rem;
  box-shadow: 0 0 12px rgba(4, 196, 217, 0.2);
}

/*--------------------------------------------------------------
# Trilha neon (curva entre hero e conteúdo)
--------------------------------------------------------------*/
.rd-trilha {
  position: relative;
  width: 100%;
  margin-bottom: -20px;
  pointer-events: none;
  overflow: hidden;
}

.rd-trilha-svg {
  width: 100%;
  height: 120px;
  overflow: visible;
}

.rd-trilha-glow {
  fill: none;
  stroke: #04C4D9;
  stroke-width: 8;
  opacity: 0.18;
  filter: blur(6px);
  stroke-linecap: round;
}

.rd-trilha-linha {
  fill: none;
  stroke: url(#rdGrad);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px #04C4D9) drop-shadow(0 0 12px rgba(4, 196, 217, 0.4));
  stroke-dasharray: 6 4;
  animation: rdDash 3s linear infinite;
}

/* Partículas que percorrem a trilha */
.rd-particula {
  fill: #fff;
  filter: drop-shadow(0 0 4px #04C4D9);
}

.rd-particula--1 {
  fill: #04C4D9;
}

.rd-particula--2 {
  fill: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
# Seção de conteúdo — container geral
--------------------------------------------------------------*/
.roadmap-content {
  padding-top: 0;
  position: relative;
  overflow: visible;
}

.roadmap-content .nebulosa-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(4, 196, 217, 0.28) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/*--------------------------------------------------------------
# Timeline wrap
--------------------------------------------------------------*/
.rd-timeline-wrap {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  z-index: 1;
}

/*--------------------------------------------------------------
# Linha vertical central com glow pulsante
--------------------------------------------------------------*/
.rd-trilha-vertical {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(4, 196, 217, 0.50) 4%,
      rgba(4, 196, 217, 0.28) 50%,
      rgba(4, 196, 217, 0.50) 96%,
      transparent 100%);
  z-index: 0;
  pointer-events: none;
}

/* Camada de glow sobre a linha */
.rd-trilha-vertical::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: inherit;
  filter: blur(6px);
  opacity: 0.4;
  animation: rdVLineGlow 5s ease-in-out infinite alternate;
}

/*--------------------------------------------------------------
# Marcador de eixo — planeta + título
--------------------------------------------------------------*/
.rd-eixo-marcador {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 64px 0 32px;
  z-index: 2;
}

.rd-eixo-marcador__titulo {
  font-size: var(--type-base);
  font-weight: 700;
  color: rgba(232, 231, 247, 0.88);
  font-family: var(--heading-font);
  margin: 0;
  max-width: 240px;
  line-height: 1.38;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 2px;
}

/* Núcleo do planeta */
.rd-eixo-marcador .rd-planeta__nucleo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  animation: rdPlanetFloat 7s ease-in-out infinite;
}

/* Variantes de cor por eixo (1–6) */
.rd-planeta--1 .rd-planeta__nucleo {
  background: radial-gradient(circle at 35% 35%, #1e3a5f, #05071e);
  box-shadow: 0 0 0 2px rgba(4, 196, 217, 0.5), 0 0 24px rgba(4, 196, 217, 0.45);
}

.rd-planeta--2 .rd-planeta__nucleo {
  background: radial-gradient(circle at 35% 35%, #2d1e5f, #05071e);
  box-shadow: 0 0 0 2px rgba(124, 110, 240, 0.5), 0 0 24px rgba(124, 110, 240, 0.45);
}

.rd-planeta--3 .rd-planeta__nucleo {
  background: radial-gradient(circle at 35% 35%, #1e4a2f, #05071e);
  box-shadow: 0 0 0 2px rgba(0, 219, 121, 0.5), 0 0 24px rgba(0, 219, 121, 0.45);
}

.rd-planeta--4 .rd-planeta__nucleo {
  background: radial-gradient(circle at 35% 35%, #4a2e1e, #05071e);
  box-shadow: 0 0 0 2px rgba(255, 160, 50, 0.5), 0 0 24px rgba(255, 160, 50, 0.45);
}

.rd-planeta--5 .rd-planeta__nucleo {
  background: radial-gradient(circle at 35% 35%, #1e2e4a, #05071e);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5), 0 0 24px rgba(59, 130, 246, 0.45);
}

.rd-planeta--6 .rd-planeta__nucleo {
  background: radial-gradient(circle at 35% 35%, #3a1e3a, #05071e);
  box-shadow: 0 0 0 2px rgba(217, 70, 239, 0.5), 0 0 24px rgba(217, 70, 239, 0.45);
}

.rd-planeta__num {
  font-size: var(--type-base);
  font-weight: 800;
  font-family: 'Courier New', monospace;
  color: rgba(232, 231, 247, 0.88);
  letter-spacing: 1px;
}

/* Anel orbital */
.rd-eixo-marcador .rd-planeta__anel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(4, 196, 217, 0.28);
  z-index: 2;
  animation: rdGirar 12s linear infinite;
  pointer-events: none;
}

/* Variantes de cor do anel por eixo */
.rd-planeta--2 .rd-planeta__anel {
  border-color: rgba(124, 110, 240, 0.30);
}

.rd-planeta--3 .rd-planeta__anel {
  border-color: rgba(0, 219, 121, 0.30);
  animation-duration: 9s;
}

.rd-planeta--4 .rd-planeta__anel {
  border-color: rgba(255, 160, 50, 0.30);
  animation-duration: 15s;
}

.rd-planeta--5 .rd-planeta__anel {
  border-color: rgba(59, 130, 246, 0.30);
  animation-duration: 10s;
}

.rd-planeta--6 .rd-planeta__anel {
  border-color: rgba(217, 70, 239, 0.30);
  animation-duration: 7s;
}

/* Halo difuso */
.rd-eixo-marcador .rd-planeta__halo {
  position: absolute;
  top: 68%;
  left: 49%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 196, 217, 0.15) 0%, transparent 70%);
  z-index: 1;
  animation: rdHaloPulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* Variantes de cor do halo por eixo */
.rd-planeta--2 .rd-planeta__halo {
  background: radial-gradient(circle, rgba(124, 110, 240, 0.18) 0%, transparent 70%);
}

.rd-planeta--3 .rd-planeta__halo {
  background: radial-gradient(circle, rgba(0, 219, 121, 0.18) 0%, transparent 70%);
}

.rd-planeta--4 .rd-planeta__halo {
  background: radial-gradient(circle, rgba(255, 160, 50, 0.18) 0%, transparent 70%);
}

.rd-planeta--5 .rd-planeta__halo {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
}

.rd-planeta--6 .rd-planeta__halo {
  background: radial-gradient(circle, rgba(217, 70, 239, 0.18) 0%, transparent 70%);
}

/*--------------------------------------------------------------
# Linha de card alternado — grid de 3 colunas
--------------------------------------------------------------*/
.rd-card-linha {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: start;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.rd-card-linha__ponto {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  z-index: 2;
}

/* Ponto de marcação na linha */
.rd-ponto {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--background-color);
  flex-shrink: 0;
  position: relative;
}

/* Anel pulsante ao redor do ponto */
.rd-ponto::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.3;
  animation: rdPontoPulse 2.5s ease-in-out infinite;
}

/* Variantes de cor do ponto por status */
.rd-ponto--verde {
  background: #00db79;
  color: #00db79;
  box-shadow: 0 0 0 3px rgba(0, 219, 121, 0.20), 0 0 10px rgba(0, 219, 121, 0.45);
}

.rd-ponto--amarelo {
  background: #ffd232;
  color: #ffd232;
  box-shadow: 0 0 0 3px rgba(255, 210, 50, 0.20), 0 0 10px rgba(255, 210, 50, 0.45);
}

.rd-ponto--roxo {
  background: #7c6ef0;
  color: #7c6ef0;
  box-shadow: 0 0 0 3px rgba(124, 110, 240, 0.20), 0 0 10px rgba(124, 110, 240, 0.45);
}

/* Posicionamento na grid — cards à esquerda */
.rd-card-linha--esquerda .rd-card-linha__vazio {
  grid-column: 3;
  grid-row: 1;
}

.rd-card-linha--esquerda .rd-card-linha__ponto {
  grid-column: 2;
  grid-row: 1;
}

.rd-card-linha--esquerda .rd-card-linha__card {
  grid-column: 1;
  grid-row: 1;
  padding-right: 28px;
}

/* Posicionamento na grid — cards à direita */
.rd-card-linha--direita .rd-card-linha__vazio {
  grid-column: 1;
  grid-row: 1;
}

.rd-card-linha--direita .rd-card-linha__ponto {
  grid-column: 2;
  grid-row: 1;
}

.rd-card-linha--direita .rd-card-linha__card {
  grid-column: 3;
  grid-row: 1;
  padding-left: 28px;
}

/*--------------------------------------------------------------
# Nebulosa do card — atmosfera visual
--------------------------------------------------------------*/
.rd-nebulosa {
  position: relative;
  border-radius: 16px;
  padding: 3px;
  animation: rdCardFloat 7s ease-in-out infinite;
}

/* Delays de flutuação variados — efeito orgânico */
.rd-card-linha:nth-child(2) .rd-nebulosa {
  animation-duration: 6.2s;
  animation-delay: -0.8s;
}

.rd-card-linha:nth-child(3) .rd-nebulosa {
  animation-duration: 7.8s;
  animation-delay: -2.4s;
}

.rd-card-linha:nth-child(4) .rd-nebulosa {
  animation-duration: 6.6s;
  animation-delay: -1.2s;
}

.rd-card-linha:nth-child(5) .rd-nebulosa {
  animation-duration: 8.1s;
  animation-delay: -3.5s;
}

.rd-card-linha:nth-child(6) .rd-nebulosa {
  animation-duration: 7.3s;
  animation-delay: -0.5s;
}

.rd-card-linha:nth-child(7) .rd-nebulosa {
  animation-duration: 6.8s;
  animation-delay: -4.0s;
}

.rd-card-linha:nth-child(8) .rd-nebulosa {
  animation-duration: 7.5s;
  animation-delay: -1.8s;
}

.rd-card-linha:nth-child(9) .rd-nebulosa {
  animation-duration: 6.4s;
  animation-delay: -2.9s;
}

.rd-card-linha:nth-child(10) .rd-nebulosa {
  animation-duration: 8.3s;
  animation-delay: -0.3s;
}

.rd-card-linha:nth-child(11) .rd-nebulosa {
  animation-duration: 7.0s;
  animation-delay: -3.1s;
}

.rd-card-linha:nth-child(n+12) .rd-nebulosa {
  animation-duration: 7.2s;
  animation-delay: -1.5s;
}

/* Pausa na flutuação ao hover — evita conflito com translateY do card */
.rd-nebulosa:hover {
  animation-play-state: paused;
}

/* Glow difuso atrás do card */
.rd-nebulosa__glow {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transform: scale(0.92);
}

.rd-nebulosa:hover .rd-nebulosa__glow {
  opacity: 0.55;
  transform: scale(1.08);
}

/* Variantes de glow por cor */
.rd-nebulosa--verde .rd-nebulosa__glow {
  background: radial-gradient(ellipse 75% 55% at 40% 50%, #00db79 0%, transparent 65%);
}

.rd-nebulosa--amarelo .rd-nebulosa__glow {
  background: radial-gradient(ellipse 75% 55% at 60% 45%, #ffd232 0%, transparent 65%);
}

.rd-nebulosa--roxo .rd-nebulosa__glow {
  background: radial-gradient(ellipse 75% 55% at 50% 55%, #7c6ef0 0%, transparent 65%);
}

/*--------------------------------------------------------------
# Partículas-estrela (geradas via JS — fallback puro CSS)
--------------------------------------------------------------*/
.rd-star {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: #fff;
  opacity: 0;
  animation: rdStarTwinkle var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
}

/*--------------------------------------------------------------
# Cards do roadmap
--------------------------------------------------------------*/
.rd-card {
  position: relative;
  z-index: 1;
  border-radius: 13px;
  padding: 18px 20px;
  background: rgba(5, 7, 30, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 6px 32px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Fio de luz no topo do card */
.rd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  border-radius: 1px;
  pointer-events: none;
  z-index: 2;
}

/* Fio de luz e borda esquerda por variante */
.rd-nebulosa--verde .rd-card::before {
  background: linear-gradient(to right, transparent, rgba(0, 219, 121, 0.35), transparent);
}

.rd-nebulosa--amarelo .rd-card::before {
  background: linear-gradient(to right, transparent, rgba(255, 210, 50, 0.35), transparent);
}

.rd-nebulosa--roxo .rd-card::before {
  background: linear-gradient(to right, transparent, rgba(124, 110, 240, 0.35), transparent);
}

.rd-nebulosa--verde .rd-card {
  border-left: 2px solid rgba(0, 219, 121, 0.38);
}

.rd-nebulosa--amarelo .rd-card {
  border-left: 2px solid rgba(255, 210, 50, 0.38);
}

.rd-nebulosa--roxo .rd-card {
  border-left: 2px solid rgba(124, 110, 240, 0.38);
}

/* Hover dos cards */
.rd-nebulosa:hover .rd-card {
  transform: translateY(-3px);
}

.rd-nebulosa--verde:hover .rd-card {
  border-color: rgba(0, 219, 121, 0.32);
  box-shadow: 0 12px 40px rgba(0, 219, 121, 0.12), 0 6px 32px rgba(0, 0, 0, 0.45);
}

.rd-nebulosa--amarelo:hover .rd-card {
  border-color: rgba(255, 210, 50, 0.32);
  box-shadow: 0 12px 40px rgba(255, 210, 50, 0.12), 0 6px 32px rgba(0, 0, 0, 0.45);
}

.rd-nebulosa--roxo:hover .rd-card {
  border-color: rgba(124, 110, 240, 0.32);
  box-shadow: 0 12px 40px rgba(124, 110, 240, 0.12), 0 6px 32px rgba(0, 0, 0, 0.45);
}

/*--------------------------------------------------------------
# Header do card
--------------------------------------------------------------*/
.rd-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Wrapper do ícone SVG */
.rd-card__icone-wrap {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Variantes do ícone por cor */
.rd-card__icone-wrap--verde {
  background: rgba(0, 219, 121, 0.10);
  color: #00db79;
  box-shadow: 0 0 10px rgba(0, 219, 121, 0.25);
}

.rd-card__icone-wrap--amarelo {
  background: rgba(255, 210, 50, 0.10);
  color: #ffd232;
  box-shadow: 0 0 10px rgba(255, 210, 50, 0.25);
}

.rd-card__icone-wrap--roxo {
  background: rgba(124, 110, 240, 0.10);
  color: #7c6ef0;
  box-shadow: 0 0 10px rgba(124, 110, 240, 0.25);
}

/* SVG interno */
.rd-icone-svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 3px currentColor);
}

/* Animações dos ícones SVG (keyframes em keyframes.css) */
.rd-icone-svg--foguete {
  animation: rdFoguete 4s ease-in-out infinite;
  transform-origin: center;
}

.rd-icone-svg--meteoro {
  animation: rdMeteoro 3s ease-in-out infinite;
}

.rd-icone-svg--ovni {
  animation: rdOvni 5s ease-in-out infinite;
}

/* Título do card */
.rd-card__titulo {
  font-size: var(--type-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.rd-card__titulo--verde {
  color: #00db79;
}

.rd-card__titulo--amarelo {
  color: #ffd232;
}

.rd-card__titulo--roxo {
  color: #7c6ef0;
}

/*--------------------------------------------------------------
# Lista de ações do card
--------------------------------------------------------------*/
.rd-card__lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rd-card__item {
  font-size: var(--type-body);
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  line-height: var(--lh-base);
  padding-left: 16px;
  position: relative;
}

/* Bullet colorido */
.rd-card__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 0.55;
}

.rd-nebulosa--verde .rd-card__item::before {
  background: #00db79;
}

.rd-nebulosa--amarelo .rd-card__item::before {
  background: #ffd232;
}

.rd-nebulosa--roxo .rd-card__item::before {
  background: #7c6ef0;
}

.rd-card__item--vazio {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-style: italic;
}

/*--------------------------------------------------------------
# Botão voltar ao início — ao final da linha do tempo
--------------------------------------------------------------*/
.rd-voltar-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 0 16px;
}

.rd-voltar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(4, 196, 217, 0.06);
  border: 1px solid rgba(4, 196, 217, 0.25);
  color: rgba(200, 198, 227, 0.75);
  font-size: var(--type-sm);
  font-weight: 600;
  font-family: var(--nav-font);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease,
    background 0.25s ease, transform 0.25s ease;
}

.rd-voltar-btn:hover {
  color: #04C4D9;
  border-color: rgba(4, 196, 217, 0.55);
  background: rgba(4, 196, 217, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(4, 196, 217, 0.15);
}

.rd-voltar-btn:focus-visible {
  outline: 2px solid #04C4D9;
  outline-offset: 4px;
}

.rd-voltar-btn .bi-arrow-up {
  transition: transform 0.25s ease;
}

.rd-voltar-btn:hover .bi-arrow-up {
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Separador cósmico entre eixos
--------------------------------------------------------------*/
.rd-eixo-sep {
  position: relative;
  height: 1px;
  margin: 8px 0 0;
  overflow: visible;
  pointer-events: none;
}

.rd-eixo-sep::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.rd-eixo-sep::after {
  content: '';
  position: absolute;
  left: 25%;
  right: 25%;
  top: -2px;
  height: 5px;
  filter: blur(4px);
  background: linear-gradient(to right, transparent, rgba(4, 196, 217, 0.25), transparent);
  animation: rdSepBrilho 4s ease-in-out infinite;
}