/* ============================= */
/* VARIABLES GLOBALES */
/* ============================= */
:root { --navy: #0b1b45; --blue-light: #1e90ff; --blue-soft: #5dade2; --gray: #f4f4f4; --white: #fff; --c-blue-900: #0b1b45;}

/* ============================= */
/* RESET GLOBAL */
/* ============================= */
* {margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif;}
body {background: var(--white); color: var(--navy); line-height: 1.6;}
a {color: #007bff; text-decoration: none; font-weight: bold; padding: 5px;}
a:hover {color: #0056b3; background-color: #e9ecef;}

/* ============================= */
/* HEADER / NAVBAR */
/* ============================= */
header {background: white; padding: 15px 5%; position: sticky; top: 0; z-index: 100; box-shadow: 0 3px 8px rgba(0,0,0,0.2);}
.navbar {display: flex; justify-content: space-between; align-items: center;}
.logo img {height: 50px;}
.nav-links {list-style: none;display: flex;gap: 20px;}
.nav-links li a {color: var(--navy); text-decoration: none; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: 0.3s;}
.nav-links li a:hover,
.nav-links li a.active {background: var(--blue-light); color: var(--white);}
.menu-toggle {display: none; font-size: 28px; color: var(--navy); cursor: pointer;}
/* ===== NAVBAR BASE ===== */
.navbar { max-width: 1500px; /* límite de ancho */ margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; background: #fff; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links li a { text-decoration: none; color: #333;       /* color normal en escritorio */ font-weight: 500;}
/* Botón hamburguesa */
.menu-toggle { display: none;     /* se esconde en escritorio */ font-size: 28px; color: #333;       /* cámbialo si tu fondo es oscuro */ cursor: pointer; }

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .menu-toggle { display: block; /* aparece el botón hamburguesa */ }
  .nav-links { position: absolute; top: 70px; right: 0; width: 250px; background: #002147; flex-direction: column; padding: 20px; display: none;  gap: 15px; border-radius: 10px 0 0 10px; }
  .nav-links.active { display: flex; /* se muestra cuando el usuario toca el botón */}
  .nav-links li a { color: #fff;    /* para que se vea sobre fondo oscuro */ padding: 10px 0; }
}


/* ============================= */
/* HERO / HERO GRID */
/* ============================= */
.hero {display: flex; justify-content: space-between; align-items: center; padding: 40px 10%; background: linear-gradient(135deg, var(--navy), var(--blue-soft)); color: white; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px;}
.hero-left {max-width: 50%;}
.hero-left h1 {font-size: 3rem; margin-bottom: 15px;}
.hero-left p {font-size: 1.1rem; margin-bottom: 20px;}
.btn-primary {background: var(--blue-light); color: white; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 500; transition: 0.3s;}
.btn-primary:hover {background: var(--blue-soft); transform: translateY(-3px);}
.hero-right {max-width: 45%;}
.hero-right img {width: 100%; transition: 0.5s; transform: translateY(-10px);}
.hero-right img:hover {transform: translateY(-20px);}
.hero-grid {display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 60px 8%; background: linear-gradient(135deg, var(--blue-light), var(--white)); align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 50px;}
.hero-text h1 {font-size: 2.8rem; margin-bottom: 15px;}
.hero-graphic {
  text-align: center; /* centra la imagen horizontalmente */
}

.hero-graphic img {
  width: 100%;       /* la imagen ocupa todo el ancho del contenedor */
  max-width: 420px;  /* límite de tamaño para pantallas grandes */
  height: auto;      /* mantiene la proporción original */
  display: block;    /* elimina espacios extra debajo de la imagen */
  margin: 0 auto;    /* centra la imagen */
  transition: transform 0.4s ease; /* efecto hover opcional */
}

.hero-graphic img:hover {
  transform: translateY(-10px); /* pequeño movimiento al pasar el mouse */
}
/* ============================= */
/* RESPONSIVE HERO */
/* ============================= */
@media (max-width: 1024px) {
  .hero, .hero-grid { flex-direction: column; grid-template-columns: 1fr; /* una columna en grid */ text-align: center; padding: 50px 5%; }
  .hero-left, .hero-right, .hero-text, .hero-graphic { max-width: 100%; margin-bottom: 30px; }
  .hero-right img, .hero-graphic img { max-width: 80%; width: 100%; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero-left h1, .hero-text h1 { font-size: 2rem; }
  .hero-left p, .hero-text p { font-size: 1rem; }
  .btn-primary { padding: 10px 20px; font-size: 0.95rem; }
  .hero-right img, .hero-graphic img { max-width: 70%; }
}
@media (max-width: 480px) {
  .hero-left h1, .hero-text h1 { font-size: 1.6rem; }
  .hero-left p, .hero-text p { font-size: 0.95rem; }
  .hero-right img, .hero-graphic img { max-width: 90%; }
  .hero, .hero-grid { padding: 30px 5%; }
}
/* ============================= */
/* HIGHLIGHTS / CARDS DESTACADAS */
/* ============================= */
.highlights { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 60px 5%; background: var(--gray); }
.highlight-card { background: white; width: 250px; padding: 25px; border-radius: 20px; text-align: center; box-shadow: 8px 8px 0px rgba(10,27,69,1); transition: transform 0.3s, box-shadow 0.3s;}
.highlight-card i { font-size: 40px; color: var(--blue-light); margin-bottom: 10px; }
.highlight-card h3 { margin-bottom: 10px; }
.highlight-card p { font-size: 0.95rem;}
.highlight-card:hover { transform: translateY(-10px); box-shadow: 12px 12px 0px rgba(10,27,69,1);}

/* ============================= */
/* FOOTER */
/* ============================= */
footer { background: linear-gradient(135deg, var(--blue-soft), var(--navy)); color: white; padding: 40px 10%; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px;}
.footer-about img { height: 60px; margin-bottom: 10px; }
.footer-about p { margin: 5px 0; font-size: 0.95rem;}
.footer-contact h4 { margin-bottom: 10px; }
.footer-contact p { margin: 5px 0; font-size: 0.95rem;}
.socials a { color: white; font-size: 20px; margin-right: 10px; transition: 0.3s;}
.socials a:hover { color: var(--blue-light);}

/* ============================= */
/* RESPONSIVE / MEDIA QUERIES */
/* ============================= */
@media(max-width: 900px){
  .hero { flex-direction: column; text-align: center; }
  .hero-left, .hero-right { max-width: 100%; margin-bottom: 20px; }
  .projects-cta { flex-direction: column; }
  .cta-card { margin-top: 30px; }
}
@media(max-width: 768px){
  .nav-links { display:none; flex-direction:column; background: var(--navy); position:absolute; top:70px; right:5%; padding:20px; border-radius:10px; }
  .nav-links.active { display:flex; }
  .menu-toggle { display:block; }
}



/* ============================= */
/* PROFESIONALES / TARJETAS */
/* ============================= */
.professionals-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 20px;}
.prof-card { background: white; flex: 1 1 150px; max-width: 180px; padding: 20px; border-radius: 20px; text-align: center; box-shadow: 6px 6px 0px rgba(10,27,69,1); transition: 0.3s;}
.prof-card i { font-size: 50px; color: var(--navy); margin-bottom: 10px;}
.prof-card p { font-weight: 500;}
.prof-card:hover { transform: translateY(-10px); box-shadow: 10px 10px 0px rgba(10,27,69,1);}

/* ============================= */
/* VALORES DESTACADOS */
/* ============================= */
.values-highlight { padding: 60px 8%; text-align: center;}
.values-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 25px; margin-top: 30px;}
.value { background: #f9f9f9; padding: 25px; border-radius: 15px; transition: transform 0.3s ease; }
.value:hover { transform: translateY(-5px);}
.value i { font-size: 40px; color: #1e3a8a; margin-bottom: 10px;}
.value h3 { margin-bottom: 8px;}

/* ============================= */
/* EQUIPO / TEAM SHOWCASE */
/* ============================= */
.team-showcase { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; padding: 60px 8%; background: #f3f4f6; align-items: center;}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px;}
.team-card { background: white; border-radius: 15px; padding: 25px 15px; text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,0.1); transition: 0.3s; perspective: 1000px; cursor: pointer; height: 220px;}
.team-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s; transform-style: preserve-3d;}
.team-card.flipped .team-inner,
.team-card:hover .team-inner { transform: rotateY(180deg);}
.team-front, .team-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 15px; padding: 20px 15px; display: flex; flex-direction: column; justify-content: center; align-items: center;}
.team-front { background: white; box-shadow: 0 3px 10px rgba(0,0,0,0.1);}
.team-front i { font-size: 40px; margin-bottom: 10px; color: #1e3a8a;}
.team-back { background: #1e3a8a; color: white; transform: rotateY(180deg); text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,0.2);}

/* ============================= */
/* REPRESENTACIONES CREATIVAS */
/* ============================= */
.representaciones { padding: 80px 20px; text-align: center; background: #f4f6fb; }
.representaciones h2 { font-size: 2.4rem; margin-bottom: 15px; color: var(--c-blue-900); }
.representaciones p { font-size: 1.2rem; margin-bottom: 50px; color: #444;}
.rep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto;}
.rep-card { display: flex; flex-direction: row; border-radius: 20px; overflow: hidden; color: white; text-decoration: none; height: 250px; box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.rep-logo { flex: 1; background: rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; padding: 20px; }
.rep-logo img { max-width: 120px; height: auto; }
.rep-info { flex: 2; padding: 30px; text-align: left; display: flex; flex-direction: column; justify-content: center; color: white; }
.rep-info h3 { font-size: 1.8rem; margin-bottom: 15px; color: whitesmoke; }
.rep-info p { font-size: 1rem; line-height: 1.5; margin-bottom: 15px; color: white;}
.rep-info span { font-weight: 600; font-size: 1rem; color: #fff; opacity: 0.85; }
.rep-entrust { background: linear-gradient(135deg, #5f259f, #9c4dcc); }
.rep-busae { background: linear-gradient(135deg, #007c91, #00c4cc); }
/* RESPONSIVE REPRESENTACIONES */
@media (max-width: 900px) {
  .rep-grid { grid-template-columns: 1fr; }
  .rep-card { flex-direction: column; height: auto;}
  .rep-logo { padding: 20px 0;}
  .rep-info { padding: 20px; text-align: center; }
}


  /* ============================= */
/* SERVICIOS / GRID PRINCIPAL */
/* ============================= */
.services-grid-section { padding: 60px 8%; background: linear-gradient(135deg, #f0f8ff, #e0f2fe); text-align: center;}
.services-grid-section h2 { font-size: 2.4rem; margin-bottom: 50px; color: var(--c-blue-900);}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;}
.service-card { background: white; border-radius: 20px; box-shadow: 8px 8px 0px rgba(10,27,69,0.1); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;}
.service-card:hover { transform: translateY(-5px); box-shadow: 12px 12px 0px rgba(10,27,69,0.15);}
.service-img img { width: 100%; height: 180px; object-fit: cover;}
.service-content { padding: 25px 20px;}
.service-content h3 { font-size: 1.5rem; margin-bottom: 15px; color: #1e3a8a;}
.service-content p { font-size: 1rem; line-height: 1.6; color: #333;}
/* RESPONSIVE SERVICIOS */
@media(max-width: 900px){
  .services-grid { grid-template-columns: 1fr;}
}

/* ============================= */
/* SERVICIO PERSONALIZADO / FLIP */
/* ============================= */
.custom-service-section { padding: 60px 8%; display: flex; justify-content: center; background: linear-gradient(135deg, #f0f8ff, #e0f2fe);}
.custom-services-wrapper { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; padding: 60px 8%; background: linear-gradient(135deg, #f0f8ff, #e0f2fe);}
.custom-service-card { width: 780px; height: 220px; perspective: 1000px; cursor: pointer; margin: 0;}
.custom-service-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s; transform-style: preserve-3d;}
.custom-service-card.flipped .custom-service-inner { transform: rotateY(180deg);}
.custom-service-front, .custom-service-back { position: absolute; width: 100%; height: 100%; border-radius: 20px; backface-visibility: hidden; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; box-shadow: 0 3px 15px rgba(0,0,0,0.1); text-align: center;}
.custom-service-front { background: white;}
.custom-service-front i { font-size: 100px; color: #1e3a8a; margin-bottom: 15px;}
.custom-service-back { background: #1e3a8a; color: white; transform: rotateY(180deg); font-size: 1.7rem; line-height: 1.5;}
/* RESPONSIVE SERVICIO PERSONALIZADO */
@media(max-width: 900px){
  .custom-service-card { width: 100%; max-width: 320px;}
}

/* ============================= */
/* EQUIPO / TEAM GRID */
/* ============================= */
.team-grid-section { padding: 60px 8%;}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 30px;}
/* FLIP CARD */
.team-card { perspective: 1000px; height: 220px; /* ajusta el alto para que todas se vean parejas */}
.team-inner { position: relative; width: 100%; height: 100%; min-height: 100px; transition: transform 0.8s; transform-style: preserve-3d;}
.team-card.flipped .team-inner,
.team-card:hover .team-inner { transform: rotateY(180deg);}
.team-front, .team-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1);}
.team-front { background: #f4f4f4;}
.team-front i { font-size: 55px; color: #1e3a8a; margin-bottom: 20px; transition: transform 0.3s, color 0.3s;}
.team-front h3 { margin-bottom: 15px; font-size: 1.4rem;}
.team-back { background: #1e3a8a; color: white; transform: rotateY(180deg); font-size: 1rem; line-height: 1.5;}
.team-card:hover .team-front i { transform: scale(1.2) rotate(10deg); color: #5dade2;}
/* GRID PARA EQUIPO */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 30px;}
/* RESPONSIVE TEAM GRID */
@media(max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); /* 2 por fila en tablets */}
}
@media(max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; /* 1 por fila en móviles */}
}
.team-front, .team-back { padding: 20px;}
.team-card .team-inner { transition: transform 0.8s; transform-style: preserve-3d; height: 100%;}

/* ============================= */
/* CLIENTES / EMOJIS EN CARDS */
/* ============================= */
.clients-emoji-section { padding: 60px 8%; max-width: 1800px; margin: 0 auto; text-align: center;}
.clients-emoji-section h2 { font-size: 2rem; color: var(--navy); margin-bottom: 12px;}
.clients-emoji-section .intro { font-size: 1rem; color: #444; margin-bottom: 40px; line-height: 1.6;}
.emoji-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;}
.emoji-card { background: #fff; border-radius: 16px; padding: 30px 24px; box-shadow: 0 6px 20px rgba(11,27,69,0.08); transition: transform 260ms ease, box-shadow 260ms ease; display: flex; flex-direction: column; align-items: center; text-align: center;}
.emoji-card:hover { transform: translateY(-8px); box-shadow: 0 14px 30px rgba(11,27,69,0.15);}
.emoji-card .emoji { font-size: 3rem; margin-bottom: 14px; transition: transform 220ms ease;}
.emoji-card:hover .emoji { transform: scale(1.2) rotate(-5deg);}
.emoji-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px;}
.emoji-card p { font-size: 0.95rem; color: #555; line-height: 1.6;}

/* ============================= */
/* PROYECTOS REALIZADOS / CARDS CON EMOJIS */
/* ============================= */
.project-list-section { padding: 60px 8%; background: linear-gradient(135deg, #f0f8ff, #e0f2fe); text-align: center;}
.project-list-section h2 { font-size: 2.4rem; margin-bottom: 40px; color: #1e3a8a;}
.project-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; justify-items: center;}
.project-name-card { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; height: 180px; /* altura uniforme */ width: 250px; padding: 20px; border-radius: 15px; background: #f4f4f4; box-shadow: 0 3px 10px rgba(0,0,0,0.1); font-size: 1rem; transition: transform 0.3s, box-shadow 0.3s; position: relative;}
/* Muestra el emoji en cada tarjeta */
.project-name-card::before { content: attr(data-emoji); font-size: 2.5rem; margin-bottom: 10px; display: block;}
.project-name-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.15);}
.project-name-card span.emoji { font-size: 2.5rem; margin-bottom: 10px;}
/* Responsive */
@media(max-width: 900px){
  .project-list-grid { grid-template-columns: 1fr;}
}

/* ============================= */
/* RESPONSIVE GENERAL / MENU */
/* ============================= */
@media(max-width: 900px) {
  .hero, .hero-grid, .team-showcase { flex-direction: column; text-align: center;}
  .hero-left, .hero-right { max-width: 100%; margin-bottom: 20px;}
  .projects-cta { flex-direction: column;}
  .cta-card { margin-top: 30px;}
}
@media(max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background: var(--navy); position: absolute; top: 70px; right: 5%; padding: 20px; border-radius: 10px;}
  .nav-links.active { display: flex;}
  .menu-toggle { display: block;}
  /* TEAM GRID RESPONSIVE */
  .team-grid { grid-template-columns: 1fr;}
  .team-front, .team-back { padding: 20px;}
}
@media(max-width: 600px) {
  .team-grid { grid-template-columns: 1fr;}
}

/* ============================= */
/* VALORES / TARJETAS */
/* ============================= */
.values-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 20px;}
.value-card { background: white; flex: 1 1 150px; max-width: 200px; padding: 20px; border-radius: 20px; text-align: center; box-shadow: 6px 6px 0px rgba(10,27,69,1); transition: 0.3s;}
.value-card i { font-size: 40px; color: var(--blue-light); margin-bottom: 10px;}
.value-card:hover { transform: translateY(-10px); box-shadow: 10px 10px 0px rgba(10,27,69,1);}

/* ============================= */
/* PROFESIONALES / GRID */
/* ============================= */
.professionals-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 20px;}
.prof-card { background: white; flex: 1 1 150px; max-width: 180px; padding: 20px; border-radius: 20px; text-align: center; box-shadow: 6px 6px 0px rgba(10,27,69,1); transition: 0.3s;}
.prof-card i { font-size: 50px; color: var(--navy); margin-bottom: 10px;}
.prof-card p { font-weight: 500;}
.prof-card:hover { transform: translateY(-10px); box-shadow: 10px 10px 0px rgba(10,27,69,1);}

/* ============================= */
/* CONTACTO */
/* ============================= */
.contact-section {  padding: 60px 8%;  background: linear-gradient(135deg, #f0f8ff, #e0f2fe);}
.contact-wrapper {  display: grid;  grid-template-columns: 1fr 1fr;  gap: 50px; max-width: 1800px;  margin: 0 auto; }
.contact-info, .contact-form {  background: white;  padding: 40px;  border-radius: 20px;  box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.contact-info h2, .contact-form h2 {  font-size: 2rem;  margin-bottom: 25px; color: #1e3a8a;  text-align: center; }
.contact-info p {  margin: 15px 0;  font-size: 1rem; }
.contact-info i { margin-right: 10px;  color: #1e3a8a; font-size: 1.2rem; vertical-align: middle; }
.contact-info .socials a {  color: #1e3a8a; font-size: 1.8rem;   margin-right: 15px; transition: 0.3s; }
.contact-info .socials a:hover { color: #5dade2; }
.contact-form label { display: block; margin-top: 15px; margin-bottom: 5px; font-weight: 500; }
.contact-form input, 
.contact-form select, 
.contact-form textarea { width: 100%; padding: 12px 15px; border-radius: 10px; border: 1px solid #ccc; margin-bottom: 10px; font-size: 1rem; transition: 0.3s;}
.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus { outline: none;  border-color: #1e3a8a;  box-shadow: 0 0 5px rgba(30,58,138,0.5);}
.btn-primary { display: inline-block;  background: #1e3a8a;  color: white;  font-weight: 500;  padding: 15px 30px;  border-radius: 50px;  border: none;  margin-top: 10px;  cursor: pointer;  transition: 0.4s;}
.btn-primary:hover {  background: #5dade2;  transform: translateY(-3px); }
.success-message {  display: none; margin-top: 20px;  color: green;  font-weight: 500;  text-align: center; }
.contact-map {  margin-top: 40px;  border-radius: 20px; overflow: hidden; }
/* RESPONSIVE */
@media(max-width: 900px){
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-form, .contact-info {  padding: 30px; }
}
/* Slider de imágenes */
.image-slider {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
}

.slides {
  display: flex;
  width: 1000%; /* 10 imágenes */
  height: 100%;
  animation: slide 50s infinite; /* 5 segundos por imagen */
}

.slides img {
  width: 10%; /* cada imagen ocupa 1/10 */
  height: 100%;
  object-fit: cover;
}

/* Animación para 10 imágenes */
@keyframes slide {
  0% { transform: translateX(0%); }
  10% { transform: translateX(0%); }
  
  15% { transform: translateX(-10%); }
  20% { transform: translateX(-10%); }

  25% { transform: translateX(-20%); }
  30% { transform: translateX(-20%); }

  35% { transform: translateX(-30%); }
  40% { transform: translateX(-30%); }

  45% { transform: translateX(-40%); }
  50% { transform: translateX(-40%); }

  55% { transform: translateX(-50%); }
  60% { transform: translateX(-50%); }

  65% { transform: translateX(-60%); }
  70% { transform: translateX(-60%); }

  75% { transform: translateX(-70%); }
  80% { transform: translateX(-70%); }

  85% { transform: translateX(-80%); }
  90% { transform: translateX(-80%); }

  95% { transform: translateX(-90%); }
  100% { transform: translateX(-90%); }
}
