* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============ FONDO GENERAL ============ */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f9fafb; /* texto base blanco */
  background: radial-gradient(circle at top, #0b3c82 0%, #020617 55%, #000 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* estrellas de galaxia */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 10% 20%, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 30% 80%, #93c5fd, transparent),
    radial-gradient(2px 2px at 70% 30%, #e5e7eb, transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, #bfdbfe, transparent),
    radial-gradient(1.8px 1.8px at 40% 40%, #ffffff, transparent),
    radial-gradient(1.4px 1.4px at 60% 10%, #93c5fd, transparent);
  background-size: 300px 300px, 260px 260px, 340px 340px,
                   320px 320px, 280px 280px, 360px 360px;
  animation: galaxy-drift 60s linear infinite,
             galaxy-twinkle 4s ease-in-out infinite alternate;
  opacity: 0.7;
}

@keyframes galaxy-drift {
  0% {
    background-position: 0 0, 50px 80px, 100px 40px,
                         150px 120px, 200px 60px, 250px 90px;
  }
  100% {
    background-position: 400px 600px, 450px 680px, 500px 640px,
                         550px 720px, 600px 660px, 650px 690px;
  }
}

@keyframes galaxy-twinkle {
  0%   { opacity: 0.4; }
  100% { opacity: 0.9; }
}

/* capa donde van planetas/cometas */
.space-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* ============ PLANETAS ============ */

.planet {
  position: absolute;
  border-radius: 50%;
  filter: drop-shadow(0 22px 45px rgba(15, 23, 42, 0.85));
  overflow: visible;
  opacity: 0.95;
}

/* planeta grande con anillo */
.planet-1 {
  width: 180px;
  height: 180px;
  top: 10%;
  right: 7%;
  background: radial-gradient(circle at 30% 25%, #f9fafb 0, #dbeafe 18%, #2563eb 55%, #020617 100%);
  animation: planet-float-1 38s ease-in-out infinite alternate;
}

.planet-1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(191, 219, 254, 0.85);
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.7);
  transform: translate(-50%, -50%) rotate(-20deg);
  opacity: 0.9;
}

/* Agujero negro con disco de acreción */
.planet-2 {
  width: 150px;
  height: 150px;
  bottom: 12%;
  left: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, #000000 0%, #020617 40%, transparent 60%);
  position: absolute;
  filter: drop-shadow(0 22px 45px rgba(248, 250, 252, 0.4));
  animation: blackhole-pulse 6s ease-in-out infinite;
}

/* disco de acreción principal */
.planet-2::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 38%, transparent 40%),
    conic-gradient(
      from 0deg,
      #fbbf24 0deg,
      #f97316 70deg,
      #facc15 130deg,
      #f97316 210deg,
      #fbbf24 280deg,
      #facc15 360deg
    );
  mix-blend-mode: screen;
  box-shadow:
    0 0 25px rgba(248, 250, 252, 0.4),
    0 0 60px rgba(248, 250, 252, 0.35);
}

/* distorsión vertical (como en la película) */
.planet-2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -35%;
  width: 260px;
  height: 260px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(249, 250, 251, 0.45) 0%,
      rgba(248, 250, 252, 0.1) 40%,
      transparent 70%
    );
  opacity: 0.6;
  filter: blur(4px);
  mix-blend-mode: screen;
}

@keyframes blackhole-pulse {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(3px, -4px, 0) scale(1.03); }
  100% { transform: translate3d(6px, -8px, 0) scale(1); }
}


/* ============ COMETAS (solo izquierda → derecha) ============ */

/* ============ COMETAS HORIZONTALES ============ */

.comet {
  position: absolute;
  width: 4px;
  height: 4px;
  pointer-events: none;
  opacity: 0;
}

/* cabeza */
.comet::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0, #bfdbfe 40%, transparent 70%);
  box-shadow: 0 0 18px rgba(239, 246, 255, 0.9);
}

/* cola totalmente horizontal */
.comet::after {
  content: "";
  position: absolute;
  left: -190px;
  top: 2px;
  width: 190px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0), #93c5fd, #e5f0ff);
  filter: blur(0.5px);
}

/* trayectoria 1: izquierda -> derecha, recto */
.comet-1 {
  top: 25%;          /* altura en pantalla */
  left: -220px;
  animation: comet-horizontal-1 14s linear infinite;
}

@keyframes comet-horizontal-1 {
  0%   { transform: translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(120vw); opacity: 0; }
}

/* trayectoria 2: otro nivel, también recto */
.comet-2 {
  top: 70%;
  left: -260px;
  animation: comet-horizontal-2 18s linear infinite;
}

@keyframes comet-horizontal-2 {
  0%   { transform: translateX(0); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(130vw); opacity: 0; }
}


/* ============ HERO ============ */

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: radial-gradient(circle at top, #3b82f6 0%, #0b1f3a 55%, #020617 100%);
}

/* tarjeta de presentación */
.hero-content {
  max-width: 560px;
  width: 100%;
  text-align: center;
  padding: 2.5rem 2.25rem 2.75rem;
  border-radius: 2rem;
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85),
      rgba(15, 23, 42, 0.7)
    );
  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.6),
    0 0 0 1px rgba(148, 163, 184, 0.45);
  color: #f9fafb;
  backdrop-filter: blur(20px);
}

/* logo */
.hero-logo {
  width: 15vw;
  height: auto;
  margin-bottom: 0rem;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.hero-content:hover .hero-logo {
  transform: translateY(-4px) scale(1.03);
}

.hero-content h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero-content p {
  max-width: 420px;
  margin: 0 auto 2rem;
  font-size: 0.98rem;
  opacity: 0.9;
}

/* botón principal */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  background: #facc15;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

@media (max-width: 640px) {
  .hero-content {
    padding: 2rem 1.75rem 2.25rem;
  }

  .hero-logo {
    width: 100px;
  }
}

/* Contenedor para alinear los botones lado a lado */
.hero-buttons {
  display: flex;
  gap: 1rem;             /* Espacio entre botones */
  justify-content: center;
  flex-wrap: wrap;       /* Para que en móviles muy chicos bajen si no entran */
  margin-top: 1.5rem;    /* Separación del texto de arriba */
}

/* Estilo base compartido para ambos botones */
.hero-btn {
  padding: 0.85rem 2rem;
  border-radius: 999px;  /* Forma de píldora */
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;  /* Para heredar la fuente de la web */
}

/* === ESTILO 1: PRINCIPAL (PROYECTOS) === */
/* Color sólido llamativo para la acción principal */
.hero-btn.primary {
  background: #38bdf8;     /* Celeste brillante */
  color: #0f172a;          /* Texto oscuro para lectura fácil */
  border: 2px solid #38bdf8;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4); /* Glow celeste */
}

.hero-btn.primary:hover {
  background: #0ea5e9;
  border-color: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
}

/* === ESTILO 2: SECUNDARIO (CONTÁCTANOS) === */
/* Estilo "Ghost" o borde, más elegante y menos agresivo */
.hero-btn.outline {
  background: transparent;
  color: #f9fafb;        /* Texto blanco */
  border: 2px solid rgba(249, 250, 251, 0.3); /* Borde semitransparente */
}

.hero-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1); /* Fondo sutil al pasar el mouse */
  border-color: #f9fafb;
  transform: translateY(-2px);
}

/* ============ SECCIONES GENERALES ============ */

.section {
  padding: 3.5rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: #f9fafb;
}

.section p {
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: #e5e7eb;
}

.section-alt {
  background: #e5e7eb;
  border-radius: 2rem;
}

/* GRID PROYECTOS (si lo usás para otra sección) */

.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: #f9fafb;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* ============ EQUIPO ============ */

.equipo {
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.equipo h2 {
  margin-bottom: 1.5rem;
  color: #f9fafb;
}

.equipo-grid {
  display: grid;
  gap: 1.5rem;
}

/* mobile: 1 por fila */
@media (min-width: 640px) {
  .equipo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* escritorio: 4 en la misma fila */
@media (min-width: 1024px) {
  .equipo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* cards equipo */
.equipo-card {
  position: relative;
  text-align: center;
  border-radius: 1.5rem;
  padding: 1.7rem 1.5rem 2rem;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.equipo-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 1),
    0 0 25px rgba(59, 130, 246, 0.7),
    0 0 60px rgba(59, 130, 246, 0.5);
}

.equipo-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.equipo-card .role {
  margin-top: 0.4rem;
  line-height: 1.4;
  font-size: 0.95rem;
}

/* texto oscuro dentro de cajas blancas */
.equipo-card,
.equipo-card h3,
.equipo-card .role,
#sobre,
#sobre h2,
#sobre p,
.card,
.card h3,
.card p {
  color: #f9fafb;
}

/* ============ QUIÉNES SOMOS (#sobre) ============ */

#sobre {
  max-width: 900px;
  margin: 4rem auto;
  padding: 3rem 2.5rem 2.5rem;
  background: radial-gradient(circle at top left, #1e293b 0, rgba(15, 23, 42, 0.7) 55%);
  border-radius: 2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

/* barra superior tipo subrayado */
#sobre::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #22c55e, #facc15);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.7);
}

/* contenido */
#sobre h2 {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

#sobre p {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto 0.8rem;
  line-height: 1.7;
  font-size: 0.98rem;
  text-align: center;
}

/* ============ PROYECTO + CARRUSEL ============ */

/* PROYECTO + CARRUSEL */

.proyecto {
  max-width: 1100px;
  margin: 4rem auto;
}

.proyecto h2 {
  margin-bottom: 1rem;
  color: #f9fafb;
}

.proyecto p {
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #e5e7eb;
}

/* contenedor carrusel */
.carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* tarjeta del carrusel */
.carousel-track {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* imágenes altas tipo app */
.carousel-track img {
  display: none;
  height: 520px;
  width: auto;
  max-width: 100%;
  border-radius: 1.5rem;
  object-fit: contain;
}

.carousel-track img.active {
  display: block;
}

/* BOTONES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.7);
  z-index: 5;              /* <-- asegura que queden encima */
}

.carousel-btn.prev {
  left: 1.1rem;            /* <-- fuerza el botón “atrás” a la izquierda */
}

.carousel-btn.next {
  right: 1.1rem;
}

.carousel-btn:hover {
  background: rgba(59, 130, 246, 0.95);
  transform: translateY(-50%) scale(1.06);
}

/* mobile */
@media (max-width: 640px) {
  .carousel-track img {
    height: 380px;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
  }
}


.carousel-btn.prev { left: 1.1rem; }
.carousel-btn.next { right: 1.1rem; }

.carousel-btn:hover {
  background: rgba(59, 130, 246, 0.95);
  transform: translateY(-50%) scale(1.06);
}

/* mobile */
@media (max-width: 640px) {
  .carousel-track img {
    height: 380px;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
  }
}


/*footer */

.footer {
  margin-top: 4rem;
  padding: 1.75rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer-links img {
  width: 26px;
  height: 26px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
  transition: transform 0.15s ease, filter 0.15s ease;
}

.footer-links a:hover img {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 6px 14px rgba(59, 130, 246, 0.8));
}

@media (max-width: 640px) {
  .footer-inner {
    font-size: 0.85rem;
  }
}


/*contact */

.contact {
  max-width: 900px;
  margin: 4rem auto 2rem;
  padding-top: 0;
}

.contact-card {
  border-radius: 2rem;
  padding: 2.5rem 2.25rem 2.5rem;
  background: radial-gradient(circle at top left, #1d3358 0%, #020617 65%);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.contact-card h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #f9fafb;
}

.contact-card p {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
  color: #e5e7eb;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- Contenedor Principal --- */
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
  text-decoration: none;
  transition: all 0.2s ease;
  overflow: hidden;
}

/* --- CASO 1: Contenedores con botón (WhatsApp / Correo) --- */
/* Son <div>, así que les quitamos el padding para que lo maneje el hijo */
div.contact-row {
  padding: 0;
  padding-right: 0.8rem; /* Espacio solo para el botón de copiar */
}

/* --- CASO 2: Enlace directo (LinkedIn) --- */
/* Es un <a>, así que necesita su propio padding para tener altura */
a.contact-row {
  padding: 1rem 1.2rem; /* El padding original completo */
}

/* --- Hover y efectos (Igual que antes) --- */
.contact-row:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

/* --- Enlace Interno (El área clickeable) --- */
.contact-link-content {
  display: flex;
  flex-grow: 1; /* Ocupa todo el ancho posible hasta empujar el botón */
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 1rem 1rem 1rem 1.2rem; 
  align-self: stretch; 
  min-width: 0;
}

/* El resto sigue igual, pero ajusté margin-left por si acaso */
.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  pointer-events: none; /* Opcional: hace que el click pase "a través" del texto al enlace */
}

.contact-text {
  color: #bfdbfe;
  font-size: 0.97rem;
  font-weight: 500;
  transition: color 0.2s ease;
  pointer-events: none;
  
  /* --- NUEVO: TRUNCAMIENTO --- */
  white-space: nowrap;      /* Obliga al texto a estar en una sola línea */
  overflow: hidden;         /* Oculta lo que sobra */
  text-overflow: ellipsis;  /* Agrega "..." al final si no entra */
  display: block;           /* Necesario para que el overflow funcione bien */
}

.contact-row:hover .contact-text {
  color: #ffffff;
}

/* Botón de copiar */
.copy-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0; /* Evita que el botón se aplaste si el texto es muy largo */
}

.copy-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}

/* --- Mobile --- */
@media (max-width: 640px) {
  .contact-link-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    /* Ajuste fino para mobile si es necesario */
    padding: 1rem 0.5rem 1rem 1.2rem; 
  }
  .contact-text {
    font-size: 0.85rem; /* Letra un poco más chica solo en celular */
  }

  .contact-link-content {
    width: 100%; 
  }
}

/* apagar animaciones pesadas en moviles  */

/* ☎️ Versión liviana para pantallas chicas */
@media (max-width: 768px) {
  /* Fondo galaxia sin animar */
  body::before {
    animation: none;
    opacity: 0.4;
  }

  /* Planetas y cometas sin animación */
  .planet-1,
  .planet-2 {
    animation: none;
    filter: none;
  }

  .comet {
    display: none; /* directamente los sacamos en móvil */
  }

  /* Hero más simple, sin blur fuerte */
  .hero-content {
    backdrop-filter: none;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.5);
  }
}
 /*--------------------------------------*/ 

 /* 🧘‍♀️ Si el usuario pide menos movimiento, apagamos casi todo */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
}

.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%); /* Empieza oculto abajo */
  
  background: rgba(15, 23, 42, 0.95); /* Fondo oscuro casi sólido */
  border: 1px solid #38bdf8; /* Borde celeste tech */
  color: #e2e8f0;
  padding: 0.8rem 1.5rem;
  border-radius: 50px; /* Bordes muy redondos */
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(56, 189, 248, 0.3); /* Sombra + Glow */
  
  z-index: 9999; /* Asegura que flote sobre todo */
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efecto rebote suave */
  pointer-events: none; /* Para no bloquear clicks si está transparente */
}

/* Clase que se agrega con JS para mostrarlo */
.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
