.elementor-kit-2532{--e-global-color-primary:#000000;--e-global-color-secondary:#000000;--e-global-color-text:#000000;--e-global-color-accent:#000000;--e-global-color-5130d2e:#FFFFFF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-2532 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */.gif-button img {
  content: url('https://rocstar.store/wp-content/uploads/2024/10/maxisgifes.gif'); /* URL de la imagen estática */
  transition: 0.3s;
}

.gif-button:hover img {
  content: url('https://rocstar.store/wp-content/uploads/2024/10/maxisgif.gif'); /* URL del GIF animado */
}

.gif-button {
  display: inline-block; /* Hace que el GIF funcione como botón */
  cursor: pointer;
}
.gif-button {
  position: relative; /* Necesario para posicionar el texto */
  display: inline-block;
}

.gif-text {
  position: absolute;
  bottom: 300px; /* Ajusta según dónde quieras el texto */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.2); /* Fondo oscuro semitransparente */
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 14px;
  opacity: 0; /* Oculto por defecto */
  transition: opacity 0.2s ease;
  pointer-events: none; /* Para evitar que interfiera con el clic en el botón */
}

.gif-button:hover .gif-text {
  opacity: 1; /* Se muestra cuando el ratón está encima */
}

/* Estilos del segundo botón */
.gif-button-2 img {
  content: url('https://rocstar.store/wp-content/uploads/2024/10/dressestatico.gif'); /* Imagen estática del segundo botón */
  transition: 0.3s;
}

.gif-button-2:hover img {
  content: url('https://rocstar.store/wp-content/uploads/2024/10/dressgif.gif'); /* GIF animado del segundo botón */
}

.gif-button-2:hover .gif-text {
  opacity: 1;
}

/* Estilos del tercer botón */
.gif-button-3 img {
  content: url('https://rocstar.store/wp-content/uploads/2024/10/minigifes.gif'); /* Imagen estática del tercer botón */
  transition: 0.3s;
}

.gif-button-3:hover img {
  content: url('https://rocstar.store/wp-content/uploads/2024/10/minisgif.gif'); /* GIF animado del tercer botón */
}

.gif-button-3 .gif-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gif-button-3:hover .gif-text {
  opacity: 1; /* Muestra el texto cuando el ratón está encima
  
/* Contenedor del input para poder superponer el texto en movimiento */
.input-container {
    position: relative;
    width: 100%;
}

.moving-placeholder {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    white-space: nowrap;
    animation: scroll-text 10s linear infinite;
    pointer-events: none; /* Evita que el texto interfiera con el input */
    color: gray;
}

.moving-placeholder-input {
    width: 100%;
    padding-left: 10px;
}

@keyframes scroll-text {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Oculta el placeholder falso cuando el campo está en foco */
.input-container input:focus + .moving-placeholder {
    display: none;
}/* End custom CSS */