/* =========================================================================
   LOADING - SPINNERS E ESTADOS DE CARREGAMENTO
   ========================================================================= */

/* =========================================================================
   SPINNER PRINCIPAL
   ========================================================================= */

/* Container do spinner */
.spinner-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 200px;
  text-align: center;
  gap: 15px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Spinner padrão */
.spinner {
  border: 4px solid rgba(0, 123, 255, 0.1);
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1.2s linear infinite;
  position: relative;
}

.spinner::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 2px solid transparent;
  border-top: 2px solid rgba(0, 123, 255, 0.6);
  border-radius: 50%;
  animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Texto do spinner */
.spinner-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #007bff;
  animation: fadeInOut 2s ease-in-out infinite;
  margin-top: 10px;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* =========================================================================
   VARIAÇÕES DE SPINNER
   ========================================================================= */

/* Spinner pequeno */
.spinner-small {
  width: 24px;
  height: 24px;
  border-width: 3px;
  border-top-width: 3px;
}

.spinner-small::after {
  border-width: 1px;
  border-top-width: 1px;
}

/* Spinner médio */
.spinner-medium {
  width: 36px;
  height: 36px;
  border-width: 3px;
  border-top-width: 3px;
}

/* Spinner grande */
.spinner-large {
  width: 80px;
  height: 80px;
  border-width: 6px;
  border-top-width: 6px;
}

.spinner-large::after {
  border-width: 3px;
  border-top-width: 3px;
}

/* =========================================================================
   SPINNER COM CORES ESPECÍFICAS
   ========================================================================= */

/* Spinner verde (sucesso) */
.spinner-success {
  border-color: rgba(40, 167, 69, 0.1);
  border-top-color: #28a745;
}

.spinner-success::after {
  border-top-color: rgba(40, 167, 69, 0.6);
}

/* Spinner vermelho (erro) */
.spinner-danger {
  border-color: rgba(220, 53, 69, 0.1);
  border-top-color: #dc3545;
}

.spinner-danger::after {
  border-top-color: rgba(220, 53, 69, 0.6);
}

/* Spinner amarelo (atenção) */
.spinner-warning {
  border-color: rgba(255, 193, 7, 0.1);
  border-top-color: #ffc107;
}

.spinner-warning::after {
  border-top-color: rgba(255, 193, 7, 0.6);
}

/* =========================================================================
   BARRA DE PROGRESSO
   ========================================================================= */

/* Container da barra de progresso */
.loading-container {
  width: 100%;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 10px;
  overflow: hidden;
  margin: 20px 0;
  height: 24px;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

/* Barra de progresso animada */
.loading-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #28a745 100%);
  background-size: 200% 100%;
  animation: progressGradient 2s linear infinite;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 8px;
}

.loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 25%, 
    rgba(255, 255, 255, 0.3) 25%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 50%, 
    transparent 75%, 
    rgba(255, 255, 255, 0.3) 75%);
  background-size: 20px 20px;
  animation: progressStripes 1s linear infinite;
  border-radius: 8px;
}

@keyframes progressGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes progressStripes {
  0% { background-position: 0 0; }
  100% { background-position: 20px 0; }
}

/* Texto da mensagem de carregamento (estilo Car Loader: status + %) */
.loading-message {
  margin-top: 15px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #007bff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.loading-message .loading-status {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.loading-message .loading-percentage {
  color: #ff4757;
  transition: color 0.3s ease;
}

.loading-message.loading-complete .loading-status,
.loading-message.loading-complete .loading-percentage {
  color: #7bed9f;
}

/* =========================================================================
   LENTE LOADER - Spinner tri + palavras ciclando (lente_trans_vs) - classes ksl
   ========================================================================= */

.kslb7c2e91 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px;
}

.kslb7c2e91 .kslc8d3f02 {
  width: 56px;
  height: 56px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-right-color: #299fff;
  animation: ksl-lente-tri-spinner 1s infinite linear;
  background: transparent;
}

.kslb7c2e91 .kslc8d3f02::before,
.kslb7c2e91 .kslc8d3f02::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
  animation: ksl-lente-tri-spinner 2s infinite;
}

.kslb7c2e91 .kslc8d3f02::after {
  margin: 8px;
  animation-duration: 3s;
}

@keyframes ksl-lente-tri-spinner {
  100% {
    transform: rotate(1turn);
  }
}

.kslb7c2e91 .ksld9e4a13 {
  color: #4a4a4a;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 25px;
  box-sizing: content-box;
  height: 40px;
  padding: 10px;
  display: flex;
  border-radius: 8px;
}

.kslb7c2e91 .ksld9e4a13 p {
  margin: 0;
  align-self: center;
}

.kslb7c2e91 .ksle0f5b24 {
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2;
}

.kslb7c2e91 .kslf1a6c35 {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: #299fff;
  animation: ksl-lente-cycle-words 5s infinite;
}

@keyframes ksl-lente-cycle-words {
  10% {
    transform: translateY(-105%);
  }
  25% {
    transform: translateY(-100%);
  }
  35% {
    transform: translateY(-205%);
  }
  50% {
    transform: translateY(-200%);
  }
  60% {
    transform: translateY(-305%);
  }
  75% {
    transform: translateY(-300%);
  }
  85% {
    transform: translateY(-405%);
  }
  100% {
    transform: translateY(-400%);
  }
}

/* Lente loader - tablet (≤768px) */
@media (max-width: 768px) {
  .kslb7c2e91 {
    margin: 40px;
  }

  .kslb7c2e91 .kslc8d3f02 {
    width: 44px;
    height: 44px;
    border-width: 3px;
  }

  .kslb7c2e91 .kslc8d3f02::before,
  .kslb7c2e91 .kslc8d3f02::after {
    margin: 2px;
  }

  .kslb7c2e91 .kslc8d3f02::after {
    margin: 6px;
  }

  .kslb7c2e91 .ksld9e4a13 {
    font-size: 20px;
    height: 36px;
    padding: 8px;
  }

  .kslb7c2e91 .ksle0f5b24 {
    height: 1.2em;
  }
}

/* Lente loader - mobile pequeno (≤480px) */
@media (max-width: 480px) {
  .kslb7c2e91 {
    margin: 24px;
  }

  .kslb7c2e91 .kslc8d3f02 {
    width: 40px;
    height: 40px;
    border-width: 3px;
  }

  .kslb7c2e91 .kslc8d3f02::before,
  .kslb7c2e91 .kslc8d3f02::after {
    margin: 1px;
  }

  .kslb7c2e91 .kslc8d3f02::after {
    margin: 5px;
  }

  .kslb7c2e91 .ksld9e4a13 {
    font-size: 18px;
    height: 32px;
    padding: 6px;
  }

  .kslb7c2e91 .ksle0f5b24 {
    height: 1.2em;
  }
}

/* =========================================================================
   CAR LOADER - Pista + carrinho animado (estilo docs/Car Loader)
   ========================================================================= */

.loading-container--car {
  width: 100%;
  max-width: 500px;
  padding: 16px 0;
  margin: 0 auto;
  height: auto;
  min-height: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.loading-container--car .loading-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.loading-container--car .road-track {
  width: 100%;
  height: 6px;
  background-color: #33333d;
  border-radius: 4px;
  position: relative;
  margin-top: 8px;
  overflow: visible;
}

.loading-container--car .road-progress-bar {
  height: 100%;
  width: 0%;
  background-color: #ff4757;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
  transition: width 0.2s ease;
}

.loading-container--car .car-wrapper {
  position: absolute;
  top: -45px;
  left: 0;
  width: 100px;
  height: 50px;
  z-index: 10;
}

.loading-container--car .car-body {
  width: 100px;
  height: 34px;
  background-color: #ff4757;
  border-radius: 8px 20px 6px 6px;
  position: relative;
  animation: carBounce 0.4s infinite alternate ease-in-out;
}

.loading-container--car .car-body::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 18px;
  width: 45px;
  height: 20px;
  background-color: #f8f9fa;
  border-radius: 10px 10px 0 0;
  border-top: 3px solid #ff4757;
  border-right: 3px solid #ff4757;
  border-left: 3px solid #ff4757;
}

.loading-container--car .car-body::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 40px;
  width: 15px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0 10px 0 0;
}

.loading-container--car .headlight {
  position: absolute;
  right: 2px;
  top: 10px;
  width: 6px;
  height: 10px;
  background-color: #ffd32a;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 211, 42, 0.8);
}

.loading-container--car .wheel {
  width: 22px;
  height: 22px;
  background-color: #2f3542;
  border-radius: 50%;
  position: absolute;
  bottom: -10px;
  border: 2px solid #57606f;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: carSpin 0.4s infinite linear;
}

.loading-container--car .wheel::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #a4b0be;
  border-radius: 50%;
}

.loading-container--car .wheel.back {
  left: 12px;
}

.loading-container--car .wheel.front {
  right: 12px;
}

.loading-container--car .speed-line {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.25);
  height: 2px;
  border-radius: 2px;
  animation: carWind 0.6s infinite linear;
  left: -50px;
}

.loading-container--car .speed-line:nth-child(1) {
  top: 0;
  width: 40px;
  animation-delay: 0.1s;
}

.loading-container--car .speed-line:nth-child(2) {
  top: 15px;
  width: 20px;
  animation-delay: 0.3s;
}

.loading-container--car .speed-line:nth-child(3) {
  top: 30px;
  width: 60px;
  animation-delay: 0s;
}

@keyframes carBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-2px); }
}

@keyframes carSpin {
  100% { transform: rotate(360deg); }
}

@keyframes carWind {
  0% { transform: translateX(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateX(-60px); opacity: 0; }
}

/* =========================================================================
   ESTADOS DE LOADING ESPECÍFICOS
   ========================================================================= */

/* Loading para seleção de lentes */
.lente_var_vs.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.lente_var_vs.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 123, 255, 0.2);
  border-top: 2px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* Loading para botões */
.button-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}

.button-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

/* =========================================================================
   SKELETON LOADING
   ========================================================================= */

/* Skeleton para texto */
.skeleton-text {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: 4px;
  height: 1em;
  width: 100%;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-text.medium {
  width: 80%;
}

.skeleton-text.long {
  width: 100%;
}

/* Skeleton para imagens */
.skeleton-image {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: 8px;
  width: 100%;
  height: 200px;
}

/* Skeleton para cards */
.skeleton-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.skeleton-card .skeleton-image {
  height: 150px;
  margin-bottom: 15px;
}

.skeleton-card .skeleton-text {
  margin-bottom: 10px;
}

@keyframes skeleton {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* =========================================================================
   BOTÃO DE FALHA/ERRO
   ========================================================================= */

/* Botão de falha */
.fail-button {
  display: inline-block;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  margin: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.fail-button::before {
  content: '⚠️';
  margin-right: 8px;
  font-size: 18px;
}

.fail-button a {
  color: white;
  text-decoration: none;
}

.fail-button:hover {
  background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.fail-button:active {
  transform: translateY(0);
}

/* =========================================================================
   OVERLAY DE LOADING
   ========================================================================= */

/* Overlay geral */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(2px);
}

/* Overlay fullscreen */
.loading-overlay-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

/* =========================================================================
   INDICADORES DE PONTO
   ========================================================================= */

/* Loading com pontos */
.dots-loading {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.dots-loading::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #007bff;
  animation: dots 1.4s infinite both;
}

.dots-loading::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #007bff;
  margin-right: 4px;
  animation: dots 1.4s infinite both;
  animation-delay: -0.16s;
}

.dots-loading .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #007bff;
  animation: dots 1.4s infinite both;
  animation-delay: -0.32s;
}

@keyframes dots {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================================================================
   RESPONSIVIDADE DO LOADING
   ========================================================================= */

/* Regras 768px movidas para responsive/768.css */

/* Regras 480px movidas para responsive/480.css */

/* =========================================================================
   ESTADOS E UTILITÁRIOS
   ========================================================================= */

/* Classe para esconder elementos */
.hidden {
  display: none !important;
}

/* Classe para elementos invisíveis mas presentes */
.invisible {
  visibility: hidden;
}

/* Classe para loading inline */
.loading-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Transições suaves */
.loading-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estados de pulse */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Melhorias de acessibilidade */
.spinner[aria-hidden="true"] {
  pointer-events: none;
}

.loading-container[role="progressbar"] {
  outline: none;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .spinner,
  .loading-bar,
  .skeleton-text,
  .skeleton-image,
  .dots-loading::before,
  .dots-loading::after,
  .dots-loading .dot,
  .kslf2b8d92 .ksl25e1ac5,
  .kslf2b8d92 .ksl14d0fb4 {
    animation: none;
  }
  
  .spinner {
    border-top-color: #007bff;
  }
}

/* =========================================================================
   ADD TO CART OVERLAY - Popup "Carregando..." acima da gaveta (classes ksl)
   ========================================================================= */

.kslf2b8d92 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  background: linear-gradient(0deg, #1a3379da, #0f172ace, #000000de);
}

.kslf2b8d92 .ksl03c9ea3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  font-family: "Inter", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  background-color: transparent;
  user-select: none;
}

.kslf2b8d92 .ksl25e1ac5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: transparent;
  animation: ksl-addcart-combined 2.3s linear infinite;
  z-index: 0;
}

@keyframes ksl-addcart-combined {
  0% {
    transform: rotate(90deg);
    box-shadow:
      0 6px 12px 0 #38bdf8 inset,
      0 12px 18px 0 #005dff inset,
      0 36px 36px 0 #1e40af inset,
      0 0 3px 1.2px rgba(56, 189, 248, 0.3),
      0 0 6px 1.8px rgba(0, 93, 255, 0.2);
  }
  25% {
    transform: rotate(180deg);
    box-shadow:
      0 6px 12px 0 #0099ff inset,
      0 12px 18px 0 #38bdf8 inset,
      0 36px 36px 0 #005dff inset,
      0 0 6px 2.4px rgba(56, 189, 248, 0.3),
      0 0 12px 3.6px rgba(0, 93, 255, 0.2),
      0 0 18px 6px rgba(30, 64, 175, 0.15);
  }
  50% {
    transform: rotate(270deg);
    box-shadow:
      0 6px 12px 0 #60a5fa inset,
      0 12px 6px 0 #0284c7 inset,
      0 24px 36px 0 #005dff inset,
      0 0 3px 1.2px rgba(56, 189, 248, 0.3),
      0 0 6px 1.8px rgba(0, 93, 255, 0.2);
  }
  75% {
    transform: rotate(360deg);
    box-shadow:
      0 6px 12px 0 #3b82f6 inset,
      0 12px 18px 0 #0ea5e9 inset,
      0 36px 36px 0 #2563eb inset,
      0 0 6px 2.4px rgba(56, 189, 248, 0.3),
      0 0 12px 3.6px rgba(0, 93, 255, 0.2),
      0 0 18px 6px rgba(30, 64, 175, 0.15);
  }
  100% {
    transform: rotate(450deg);
    box-shadow:
      0 6px 12px 0 #4dc8fd inset,
      0 12px 18px 0 #005dff inset,
      0 36px 36px 0 #1e40af inset,
      0 0 3px 1.2px rgba(56, 189, 248, 0.3),
      0 0 6px 1.8px rgba(0, 93, 255, 0.2);
  }
}

.kslf2b8d92 .ksl14d0fb4 {
  display: inline-block;
  opacity: 0.4;
  transform: translateY(0);
  animation: ksl-addcart-letter 2.4s infinite;
  z-index: 1;
  border-radius: 50ch;
  border: none;
}

.kslf2b8d92 .ksl14d0fb4:nth-child(1) { animation-delay: 0s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(2) { animation-delay: 0.1s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(3) { animation-delay: 0.2s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(4) { animation-delay: 0.3s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(5) { animation-delay: 0.4s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(6) { animation-delay: 0.5s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(7) { animation-delay: 0.6s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(8) { animation-delay: 0.7s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(9) { animation-delay: 0.8s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(10) { animation-delay: 0.9s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(11) { animation-delay: 1s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(12) { animation-delay: 1.1s; }
.kslf2b8d92 .ksl14d0fb4:nth-child(13) { animation-delay: 1.2s; }

@keyframes ksl-addcart-letter {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    text-shadow: #f8fcff 0 0 5px;
  }
  40% {
    opacity: 0.7;
    transform: translateY(0);
  }
} 