.elementor-8 .elementor-element.elementor-element-841b3c7{--display:flex;}.elementor-8 .elementor-element.elementor-element-841b3c7:not(.elementor-motion-effects-element-type-background), .elementor-8 .elementor-element.elementor-element-841b3c7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#05061A;}.elementor-8 .elementor-element.elementor-element-f934e37{--display:flex;}.elementor-8 .elementor-element.elementor-element-f934e37:not(.elementor-motion-effects-element-type-background), .elementor-8 .elementor-element.elementor-element-f934e37 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-baa72a6 */.hero-riuk {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 7%;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-left {
  color: #fff;
}

.mini-avatar {
  width: 155px;
  margin-bottom: 30px;
  animation: floatAvatar 5s ease-in-out infinite;
}

.hero-left h1 {
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.hero-left h1 strong {
  font-weight: 800;
  color: #fff;
}

.hero-left p {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 45px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-hero {
  height: 54px;
  padding: 0 24px;
  border-radius: 10px;
  background: #2635ff;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: .35s ease;
}

.btn-hero img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.btn-hero:hover {
  background: #071cff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(38,53,255,.35);
}

.btn-hero:hover img {
  transform: scale(1.12);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: 100%;
  max-width: 520px;
  animation: floatPersonaje 5s ease-in-out infinite;
}

@keyframes floatAvatar {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatPersonaje {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 980px) {
  .hero-riuk {
    padding: 70px 6%;
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right img {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 46px;
  }

  .mini-avatar {
    width: 120px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f3bb6c3 */.servicios {
  padding: 90px 7%;
  background: #fff;
  font-family: Arial, sans-serif;
}

.contenedor {
  max-width: 1200px;
  margin: auto;
}

.servicios h2 {
  font-size: 55px;
  font-weight: 800;
  color: #111;
  margin-bottom: 5px;
}

.servicios h2 span {
  color: #071cff;
}

.linea {
  width: 55px;
  height: 4px;
  background: #071cff;
  margin: 18px 0 25px;
}

.descripcion {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 45px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.servicio-card {
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 18px;
  padding: 35px 30px;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: .45s ease;
  cursor: pointer;
}

.servicio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #071cff;
  transition: .45s;
}

.servicio-card:hover::before {
  width: 100%;
}

.servicio-card:hover {
  transform: translateY(-12px);
  border-color: #071cff;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.icono {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  background: #eef1ff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .45s;
}

.icono img {
  width: 90px;
  transition: .45s;
}

.servicio-card:hover .icono {
  background: #071cff;
  transform: scale(1.05);
}

.servicio-card:hover .icono img {
  transform: scale(1.15);
}

.servicio-card h3 {
  margin-top: 25px;
  color: #071cff;
  font-size: 34px;
  transition: .4s;
}

.servicio-card:hover h3 {
  letter-spacing: 1px;
}

.servicio-card p {
  margin-top: 15px;
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}

@media(max-width:1000px) {
  .servicios-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:768px) {
  .servicios {
    padding: 60px 5%;
  }

  .servicios h2 {
    font-size: 42px;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .servicio-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 25px;
  }

  .servicio-card .icono {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
  }

  .servicio-card .icono img {
    width: 58px;
  }

  .servicio-card h3 {
    margin: 0 0 10px;
    font-size: 28px;
  }

  .servicio-card p {
    margin: 0;
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a312aa9 */.videos-riuk {
  padding: 100px 7%;
  background: #050617;
  color: #fff;
  font-family: Arial, sans-serif;
}

.videos-contenedor {
  max-width: 1200px;
  margin: auto;
}

.videos-header {
  max-width: 760px;
  margin-bottom: 50px;
}

.videos-tag {
  display: inline-block;
  background: #2635ff;
  color: #fff;
  padding: 9px 20px;
  border-radius: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.videos-header h2 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}

.videos-header p {
  font-size: 18px;
  line-height: 1.8;
  color: #d8d8e5;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
}

.video-card {
  background: #0b0d25;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  overflow: hidden;
  transition: .4s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  border-color: #2635ff;
  box-shadow: 0 24px 55px rgba(38,53,255,.22);
}

.video-destacado {
  grid-row: span 3;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 24px;
}

.video-info span {
  display: inline-block;
  color: #2635ff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.video-info h3 {
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.video-info a {
  display: inline-flex;
  background: #2635ff;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: .3s;
}

.video-info a:hover {
  background: #071cff;
  transform: translateY(-3px);
}

.videos-grid .video-card:not(.video-destacado) {
  display: grid;
  grid-template-columns: 170px 1fr;
}

.videos-grid .video-card:not(.video-destacado) .video-frame {
  height: 100%;
  aspect-ratio: auto;
}

.videos-grid .video-card:not(.video-destacado) .video-info h3 {
  font-size: 21px;
}

@media(max-width: 900px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .video-destacado {
    grid-row: auto;
  }

  .videos-grid .video-card:not(.video-destacado) {
    grid-template-columns: 1fr;
  }

  .videos-grid .video-card:not(.video-destacado) .video-frame {
    aspect-ratio: 16 / 9;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-43d1133 */.cursos-riuk {
  padding: 100px 7%;
  background: #fff;
  font-family: Arial, sans-serif;
}

.cursos-contenedor {
  max-width: 1200px;
  margin: auto;
}

.cursos-header span {
  display: inline-block;
  background: #071cff;
  color: #fff;
  padding: 9px 18px;
  border-radius: 40px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cursos-header h2 {
  font-size: 55px;
  color: #111;
  margin-bottom: 18px;
}

.cursos-header h2 strong {
  color: #071cff;
}

.cursos-header p {
  max-width: 760px;
  color: #444;
  font-size: 18px;
  line-height: 1.7;
}

.beneficios-cursos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 45px 0 65px;
}

.beneficios-cursos div {
  background: #050617;
  color: #fff;
  border-radius: 15px;
  padding: 18px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #1b1f4a;
}

.nivel {
  margin-bottom: 70px;
}

.nivel-titulo {
  margin-bottom: 28px;
  border-left: 5px solid #071cff;
  padding-left: 18px;
}

.nivel-titulo h3 {
  color: #071cff;
  font-size: 36px;
  margin-bottom: 8px;
}

.nivel-titulo p {
  color: #333;
  font-size: 17px;
}

.cursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cursos-grid.avanzado {
  grid-template-columns: repeat(2, 1fr);
}

.curso-card {
  background: #fff;
  border: 1px solid #d7d7d7;
  border-top: 8px solid #071cff;
  border-radius: 18px;
  padding: 30px;
  transition: .4s ease;
  position: relative;
  overflow: hidden;
}

.curso-card:hover {
  transform: translateY(-10px);
  border-color: #071cff;
  box-shadow: 0 22px 45px rgba(0,0,0,.12);
}

.etiqueta {
  display: inline-block;
  background: #eef1ff;
  color: #071cff;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.curso-card h4 {
  color: #071cff;
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 15px;
}

.curso-card p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.precio {
  color: #050617;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 18px;
}

.curso-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.curso-card li {
  color: #333;
  margin-bottom: 10px;
  font-size: 15px;
}

.curso-card li::before {
  content: "✓";
  color: #071cff;
  font-weight: 900;
  margin-right: 8px;
}

.curso-card a {
  display: inline-flex;
  background: #071cff;
  color: #fff;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 800;
  transition: .3s;
}

.curso-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(7,28,255,.3);
}

@media(max-width: 1000px) {
  .beneficios-cursos {
    grid-template-columns: repeat(2, 1fr);
  }

  .cursos-grid,
  .cursos-grid.avanzado {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 700px) {
  .cursos-riuk {
    padding: 70px 5%;
  }

  .cursos-header h2 {
    font-size: 42px;
  }

  .beneficios-cursos,
  .cursos-grid,
  .cursos-grid.avanzado {
    grid-template-columns: 1fr;
  }

  .curso-card {
    padding: 25px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3c0f5ba */.comunidad-riuk {
  background: #050617;
  padding: 100px 7%;
  color: #fff;
  font-family: Arial, sans-serif;
}

.comunidad-riuk .contenedor {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.subtitulo {
  color: #071cff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.comunidad-riuk h2 {
  font-size: 64px;
  margin: 18px 0;
  font-weight: 800;
  color: #fff;
}

.comunidad-riuk h2 strong {
  color: #071cff;
}

.comunidad-riuk p {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #d6d6df;
  line-height: 1.8;
  font-size: 18px;
}

.comunidad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 25px;
}

.social-card {
  background: #0d1026;
  border: 1px solid rgba(7, 28, 255, .35);
  border-radius: 20px;
  padding: 40px 25px;
  text-decoration: none;
  color: #fff;
  transition: .35s;
}

.social-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: .35s;
}

.social-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.social-card span {
  color: #c6c8d8;
  font-size: 15px;
}

.social-card:hover {
  transform: translateY(-10px);
  background: #071cff;
  border-color: #071cff;
  box-shadow: 0 20px 40px rgba(7, 28, 255, .35);
}

.social-card:hover h3,
.social-card:hover span {
  color: #fff;
}

.social-card:hover img {
  transform: scale(1.12);
}

@media(max-width: 768px) {
  .comunidad-riuk {
    padding: 70px 5%;
  }

  .comunidad-riuk h2 {
    font-size: 46px;
  }

  .social-card {
    padding: 30px 20px;
  }

  .social-card img {
    width: 60px;
    height: 60px;
  }

  .social-card h3 {
    font-size: 24px;
  }
}/* End custom CSS */