/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Tema hijo Bloomedia - Hello
Version: 3.4.4.1759758526
Updated: 2025-10-06 15:48:46

*/
:root {
    --fucsia-corporativo: #FA03C3;
    --azul-corporativo: #3700FA;
    
}
.degradado {
    background: linear-gradient(90deg, #3700FA 25%, #FA03C3 75%); 
    -webkit-background-clip: text; /* recorta el fondo al texto */
    -webkit-text-fill-color: transparent; /* hace que solo se vea el fondo */
}
/****************************
 Degradado animando menu 
****************************/
.menu-degradado {
  background-color: #000;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  transition: all .3s ease-in;
}
@property --deg{
  syntax: '<angle>';
  inherits: true;
  initial-value: 0deg;
}
.menu-degradado a  {
 padding: 0;
}
.menu-degradado::before,
.menu-degradado::after {
    content: '';
    position: absolute;
    height: 105%;
    width: 145px;
/*     background: conic-gradient(from var(--deg) at center, #FA03C3, #3700FA); */
  background: linear-gradient(270deg, #3700FA, #FA03C3);
    border-radius: inherit;
    z-index: -2;
    padding: 2px;
    animation: autoRotate 8s linear infinite;
}
.menu-degradado::after {
  filter: blur(15px);
}
@keyframes autoRotate {
  to{
    --deg: 360deg
  }
}
/* menu degradado movile */

@media (max-width: 1020px) {
  .menu-degradado {
    background-color: transparent;
    border-radius: 0;
    margin-left: 0;
    transition: none;
  }

  .menu-degradado::before,
  .menu-degradado::after {
    content: none; 
    animation: none;
  }

  .menu-degradado a {
    background: none;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: inherit; /* mismo color que los demás li */
  }
}

/* degradado animado*/
.degradado-animado {
    background: linear-gradient(270deg, #3700FA, #FA03C3, #3700FA);
    background-size: 600% 600%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: mover 10s ease infinite;
  
}
@keyframes mover {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/*border degradado*/
.borde-degradado {
  position: relative !important;
  border: 1px solid transparent !important;
  border-radius: 30px !important;
  background-image: 
    linear-gradient(#fff, #fff), /* color interior */
    linear-gradient(180deg, #FA03C3, #3700FA); /* degradado del borde */
  background-origin: border-box;
  background-clip: content-box, border-box;
}
/* efecto onda border degradado */
.borde-degradado a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, #FA03C3, #3700FA);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: all 0.4s ease;
  z-index: -1;
}

/* 🔥 Efecto onda al hacer hover */
.borde-degradado a:hover::before {
  inset: -6px; /* se expande hacia fuera */
  opacity: 0.7; /* da sensación de onda luminosa */
  filter: blur(2px); /* suaviza el borde */
  width: 30%;
}
/*border izquierdo degradado azul-rosa*/
.borde-degradado-izq {
  position: relative !important;
  border-left: 15px solid transparent !important;
  background-image: 
    linear-gradient(#fff, #fff), /* color interior */
    linear-gradient(180deg, #FA03C3, #3700FA); /* degradado del borde */
  background-origin: border-box;
  background-clip: content-box, border-box;
}
/*border izquierdo degradado azul-rosa*/
.borde-degradado-izq-azul {
  position: relative !important;
  border-left: 15px solid transparent !important;
  background-image: 
    linear-gradient(#fff, #fff), /* color interior */
    linear-gradient(180deg, #3700FA, #03BCFA); /* degradado del borde */
  background-origin: border-box;
  background-clip: content-box, border-box;
}
/* rotacion imagen lento*/
    .gira {
      animation: rotar 35s linear infinite;
      display: inline-block;
    }
    @keyframes rotar {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
/***************************
 Rotacion bg hero semi
***************************/
    .gira-semi {
      animation: rotarSemi 15s linear infinite;
      display: inline-block;
    }

    @keyframes rotarSemi {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
/* rotacion imagen origin*/
    .gira-origin {
      animation: rotarOrigin 15s linear infinite;
      display: inline-block;
      transform-origin: 30% 80% ;
    }

    @keyframes rotarOrigin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    /* rotacion imagen origin 02*/
    .gira-origin2 {
      animation: rotarOrigin2 15s linear infinite;
      display: inline-block;
      transform-origin: 30% 30% ;
    }

    @keyframes rotarOrigin2 {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
/* rotacion imagen rapido*/
    .gira-rapido {
      animation: rotarRapido 1.5s linear infinite;
      display: inline-block;
    }

    @keyframes rotarRapido {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }



/* boton pulso guays*/
.boton-bola span,
.boton-bola-rosa span,
.boton-bola-rosa-deg span{
  align-items: center!important;
}
.boton-bola a,
.boton-bola-rosa a,
.boton-bola-rosa-deg a {
  margin: 0 !important; 
  padding: 0 20px 0 0 !important;
  display: flex;
  align-items: center;
  transition: all .3s ease-in-out;
}
.boton-bola svg,
.boton-bola-rosa svg,
.boton-bola-rosa-deg svg{
  width: auto !important;
  z-index: 10;
  transition: all .3s ease-in-out;
}

.boton-bola span,
.boton-bola-rosa span,
.boton-bola-rosa-deg span {
  z-index: 10;
}
.boton-bola a::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0;
  width: 10%;
  height: 100%;
  opacity: 0;
  border-radius: 30px;
  background: linear-gradient(90deg, #3700FA 25%, #2401a2 75%) !important;
  transition: all .5s ease-in-out;
}
.boton-bola-rosa a::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0;
  width: 10%;
  height: 100%;
  opacity: 0;
  border-radius: 30px;
  background: var(--fucsia-corporativo) !important;
  transition: all .5s ease-in-out;
}
.boton-bola-rosa-deg a::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0;
  width: 10%;
  height: 100%;
  opacity: 0;
  border-radius: 30px;
  border: 1px solid var(--fucsia-corporativo);
  background: linear-gradient(90deg, #FA03C3 20%, #b1028b 80%) !important;
  transition: all .5s ease-in-out;
}
.boton-bola a:hover::before,
.boton-bola-rosa a:hover::before,
.boton-bola-rosa-deg a:hover::before {

  width: 100%;
  height: 100%;
  opacity: 1;
  border: 0

}
.boton-bola a:hover svg,
.boton-bola-rosa a:hover svg,
.boton-bola-rosa-deg a:hover svg {
  transform: rotate(90deg);
}
/*
. boton-bola a:hover svg {
  transform: translate(302px) rotate(90deg) 
} 
  */
.boton-bola-rosa a:hover span {
  color: #fff!important;
}
.boton-bola-rosa a:focus {
  outline: none !important;
  box-shadow: none !important;
}
.boton-bola-rosa a {
  color: #000 !important;
}
.boton-bola-rosa a:hover,
.boton-bola-rosa a:hover span {
  color: #fff !important ;
}



/* Contenedor de icono + texto */
.caja-hover {
 cursor: pointer;
}

/* Icono con efecto */
.caja-hover .icono-degradado-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #fff;
  overflow: visible;
  z-index: 1;

  /* Ignorar hover propio */
  pointer-events: none;
}

/* Icono interior */
.caja-hover .icono-degradado-pulse > * {
  position: relative;
  z-index: 2;
  pointer-events: auto; /* permite que el icono reciba clics pero no hover */
}

/* Onda degradada */
.caja-hover .icono-degradado-pulse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  /* background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 50%,
    rgba(55, 0, 250, 0.8) 80%,
     rgba(250, 3, 195, 0.8) 80%,
    transparent 70% */
      background: linear-gradient(90deg, #ffffffa3, #3600fa9d);
  );
/*   background: linear-gradient(90deg, #fa03c4a3, #3600fa9d); */
/*   background: conic-gradient(from 0deg, #fa03c496, #3600fa8c, #fa03c496); */
}

/* 🔥 El hover se aplica solo al contenedor */
.caja-hover:hover .icono-degradado-pulse::before {
  animation: pulse-wave 1.5s ease-out infinite;
  animation-fill-mode: forwards;
}

/***********************
** Animación de onda 
************************/
@keyframes pulse-wave {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0;
  }
}
/****************** 
*** MENU  
*******************/
header ul li.menu-degradado {
    margin-left: 0rem !important;
}
@media only screen and (min-width:1024px) {
  header ul li.menu-degradado {
    margin-left: 1.4rem !important;
}
}
header ul li.menu-degradado a {
  max-width: max-content;
}
header ul.sub-menu {
  width: 90% !important;
  left: 20px !important;
  padding: 0rem  1rem 0rem !important;
}
@media only screen and (min-width:1020px) {
    header ul.sub-menu {
    width: 270px !important;
    left: 20px !important;
    padding: 1.2rem  1rem 1.6rem !important;
  }
}
header ul.sub-menu a {
  margin: 0 !important;
  padding: 0 !important;
  border-inline-start: 0 !important;
  font-size: 16px !important;
}
header ul.sub-menu li {
    border-bottom: 1px solid var(--azul-corporativo) !important;
    padding: .6rem 0;
    transition: all .8s ease;
    margin-left: 5rem;
}
@media only screen and (min-width:1020px) {
    header ul.sub-menu li {
      border-bottom: 1px solid var(--azul-corporativo) !important;
      padding: .6rem 0;
      transition: all .8s ease;
      margin-left: 0rem;
  }
}
header ul.sub-menu li:last-child {
    border-bottom: 0px !important;
}
@media only screen and (min-width:1020px) {
    header ul.sub-menu li:last-child {
      border-bottom: 1px solid var(--azul-corporativo) !important;
  }
}
header ul.sub-menu li:hover {
   background-color: none !important;
}
header ul.sub-menu li:hover a {
   padding-left: .5rem !important;
}
/* *******************+
CATEGORIAS SINGLE 
************************/
.psa-categorias h5 {
  color: #000;
  font-size: 28px;
  text-transform: uppercase;
}
.psa-categorias nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.psa-categorias nav ul li {
  border-bottom: 1px solid #3700FA;
  padding: 0.8rem 0;

}
.psa-categorias nav ul li a {
  color: #3700FA;
  transition: all .5s ease;
}
.psa-categorias nav ul li:hover a {
  padding-left: 1rem;
}
/*------------------------------------*
  Footer
*------------------------------------*/
footer a.elementor-button  {
  text-align: left !important;
}