/*
Theme Name:     Hello Elementor Child
Theme URI:      https://example.com/hello-elementor-child
Description:    Tema hijo personalizado basado en Hello Elementor, con SCSS y ajustes optimizados.
Author:         Zaira Bravo
Author URI:     https://www.zbcreativeweb.com/
Template:       hello-elementor
Version:        1.0.0
License:        GNU General Public License v2 or later
License URI:    https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    hello-elementor-child
*/
html, body {
  overflow-x: hidden;
}

.img-logo {
  cursor: pointer;
}

.scroll-loop {
  overflow: hidden;
  position: relative;
}

.scroll-loop::before,
.scroll-loop::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.scroll-loop::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#5E5CDB), to(transparent));
  background: linear-gradient(to right, #5E5CDB 0%, transparent 100%);
}

.scroll-loop::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#5E5CDB), to(transparent));
  background: linear-gradient(to left, #5E5CDB 0%, transparent 100%);
}

.scroll-loop .scroll-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll-left 15s linear infinite;
          animation: scroll-left 15s linear infinite;
}

.scroll-loop .scroll-item {
  white-space: nowrap;
  padding-right: 2rem;
  color: #fff;
  font-size: 200px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 1627px) {
  div#menu-prinpical nav ul li a.elementor-item {
    font-size: 14px;
    margin: 0 10px 0 10px;
  }
}

.contact-form p, .contact-form .wpcf7-response-output {
  font-family: "DM Mono", sans-serif;
}
.contact-form p {
  margin-bottom: 5px;
}
.contact-form .bloque-formulario {
  margin-bottom: 20px;
}
.contact-form .bloque-formulario-lista-servicios span {
  margin-bottom: 5px;
}
.contact-form form [type=submit] {
  width: 100%;
  background: #5E5CDB;
  color: #fff;
  border: 1px solid #5E5CDB;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.contact-form form [type=submit]:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #fff;
  color: #5E5CDB;
}

.dark .blog-content time {
  color: white;
}
.dark .blog-content .elementor-post-info__item--type-author {
  color: white;
}
.dark .blog-content .elementor-share-btn span.elementor-share-btn__icon {
  background-color: white !important;
  border-radius: 3px;
}