/* VARIÁVEIS GLOBAIS */
:root {
  --base: #0d0d0d;
  --surface: #1c1c1c;
  --gray: #3d3d3d;
  --purple: #7b2fbe;
  --red: #e63946;
  --white: #ffffff;
  --purple-glow: rgba(123, 47, 190, 0.25);
  --red-glow: rgba(230, 57, 70, 0.25);
}

/* RESET & BASE */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--base);
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--base);
}
::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 2px;
}

/* CURSOR CUSTOMIZADO */
#cursor {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.15s ease,
    background 0.2s;
  transform: translate(-50%, -50%);
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(230, 57, 70, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.35s ease,
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
  transform: translate(-50%, -50%);
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  transform: translate(-50%, -50%) scale(2);
  background: var(--purple);
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(123, 47, 190, 0.6);
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    border-bottom 0.4s;
}

nav.scrolled {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 47, 190, 0.2);
}

.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
}

.nav-cta:hover {
  background: #c0303b;
  color: var(--white) !important;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 6vw, 5rem)
    clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 80% 50%,
      rgba(123, 47, 190, 0.15) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(230, 57, 70, 0.08) 0%,
      transparent 60%
    );
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 47, 190, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 47, 190, 0.06) 1px, transparent 1px);
  background-size: clamp(40px, 8vw, 80px) clamp(40px, 8vw, 80px);
  z-index: 0;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr clamp(220px, 28vw, 380px);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  width: 100%;
  max-width: 1400px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-tag::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: var(--purple);
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.4s forwards;
}

h1 .line-red {
  color: var(--red);
  display: block;
}

h1 .line-dim {
  color: rgba(255, 255, 255, 0.35);
  display: block;
  font-size: 0.75em;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1s forwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Foto */
.hero-photo-wrap {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeLeft 0.9s ease 0.5s forwards;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--gray);
  position: relative;
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 24px,
    100% 100%,
    24px 100%,
    0 calc(100% - 24px)
  );
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 47, 190, 0.15) 0%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-photo::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 3px;
  height: 30%;
  background: var(--purple);
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
}

.photo-icon {
  width: clamp(50px, 8vw, 70px);
  height: clamp(50px, 8vw, 70px);
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* BOTÕES */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: none;
  cursor: none;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
  transition:
    background 0.2s,
    transform 0.2s;
}

.btn-primary:hover {
  background: #c0303b;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--gray);
  cursor: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--white);
}

/* SEÇÕES — BASE */
section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--purple);
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

.section-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 520px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 47, 190, 0.3),
    transparent
  );
}

/* SERVIÇOS */
#servicos {
  background: var(--base);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(123, 47, 190, 0.3);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  background: rgba(123, 47, 190, 0.1);
  border: 1px solid rgba(123, 47, 190, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.service-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: clamp(0.5rem, 2vw, 1rem);
  right: clamp(1rem, 2vw, 1.5rem);
  line-height: 1;
  pointer-events: none;
}

.service-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
}

/* PORTFÓLIO */
#portfolio {
  background: linear-gradient(180deg, var(--base) 0%, #0a0a0a 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.portfolio-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-4px);
}

.portfolio-card-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.portfolio-card-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(123, 47, 190, 0.1);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(123, 47, 190, 0.2);
}

.portfolio-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
}

.portfolio-card-soon {
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  color: rgba(255, 255, 255, 0.15);
  font-style: italic;
}

.portfolio-corner {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.portfolio-corner.tl {
  top: 0;
  left: 0;
  border-width: 20px 20px 0 0;
  border-color: var(--purple) transparent transparent transparent;
}

.portfolio-corner.br {
  bottom: 0;
  right: 0;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent var(--gray) transparent;
}

/* DEPOIMENTOS */
#depoimentos {
  background: var(--base);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card::before {
  content: '"';
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  color: rgba(123, 47, 190, 0.1);
  position: absolute;
  top: -0.5rem;
  left: 1.2rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
}
.star {
  color: var(--red);
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-text.placeholder {
  color: rgba(255, 255, 255, 0.15);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--gray);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.25);
}

.author-role {
  font-size: clamp(0.7rem, 1.2vw, 0.75rem);
  color: rgba(255, 255, 255, 0.15);
}

/* CTA FINAL */
#contato {
  background: var(--surface);
  border-top: 1px solid rgba(123, 47, 190, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contato::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 80% at 50% 100%,
      rgba(123, 47, 190, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 30% 50% at 50% 0%,
      rgba(230, 57, 70, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: "";
  width: clamp(24px, 5vw, 48px);
  height: 1px;
  background: var(--red);
  opacity: 0.5;
}

.cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.02em;
}

.cta-title span {
  color: var(--red);
}

.cta-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.1em;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3.5rem);
  border: none;
  cursor: none;
  position: relative;
  transition: transform 0.2s;
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% 100%,
    16px 100%,
    0 calc(100% - 16px)
  );
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
}

.btn-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.cta-note {
  margin-top: 1.25rem;
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  color: rgba(255, 255, 255, 0.2);
}

/* FOOTER */
footer {
  background: var(--base);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  color: rgba(255, 255, 255, 0.2);
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.footer-logo span {
  color: var(--red);
  opacity: 0.4;
}

/* ANIMAÇÕES DE REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* KEYFRAMES */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
