@import url(root.css);
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*#region NAVBAR*/
.navbar-custom {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: transparent; /* Fondo completamente transparente */
    border-radius: 15px;
    z-index: 1000;
}
.scrolled {
    background: radial-gradient(ellipse 30% 100% at 0% 10%, #071D34,  var(--background-primary));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
/*#endregion NAVBAR*/


/*#region HEADER_FONDO*/
#header{
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center; 
    background: radial-gradient(ellipse 100% 60% at 0% 40%, #071D34, var(--background-primary), var(--background-primary));
    z-index: 2;
}

@media (max-width: 768px) {
    #header-container {
        left: 0;
        top: 130px;
        padding: 30px;
    }
}

/*#endregion HEADER_FONDO*/
/*#region ROBOT*/
.robot {
    position: absolute;
    bottom: 20%;  
    right: 5%;  
    width: 25vw; 
    max-width: 350px;
    z-index: 3;  
    animation: animacion-robot 3s ease-in-out infinite;
  }

@keyframes animacion-robot {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
  }

  .robot-shadow {
    position: absolute;
    bottom: 10%;  
    right: 4%;
    width: 20vw;
    height: 45px;
    background: #071D34;
    border-radius: 50%; 
    filter: blur(15px); 
    opacity: 1;
    animation: animacion-robot-sombra 3s ease-in-out infinite;
  } 

@keyframes animacion-robot-sombra {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
  }
  @media (max-width: 768px) {
    .robot {
        width: 30%;
        right: auto;
        left: auto;
        top: 400px;
    }
    .robot-shadow {
        position: absolute;
        top: 630px;
        bottom: 10%;  
        right: auto;
        left: auto;
        width: 30%;
        height: 45px;
        background: #071D34;
        border-radius: 50%; 
        filter: blur(15px); 
        opacity: 1;
        animation: animacion-robot-sombra 3s ease-in-out infinite;
      } 
  }
  
  @media (max-width: 480px) {
    .robot {
        top: 440px;
        width: 40%;
        right: auto;
        left: auto;
    }
    .robot-shadow {
        top: 4456x;
        position: absolute;
        bottom: 10%;  
        right: auto;
        left: auto;
        width: 40%;
        height: 45px;
        background: #071D34;
        border-radius: 50%; 
        filter: blur(15px); 
        opacity: 1;
        animation: animacion-robot-sombra 3s ease-in-out infinite;
      } 
  }
/*#endregion ROBOT*/

/*#region HEADER_SOBREMI*/
#cambia-text::after {
    content: "|";
    display: inline-block;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    50% { border-color: transparent; }
}

/*#endregion HEADER_SOBREMI*/



/*#region WS-FLOTANTE*/
/*Estilos generales del boton whatsapp*/
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: breathe 2s ease-in-out infinite;
  }
  
  /*Estilos solo al icono whatsapp*/
  .whatsapp-btn i {
    color: #fff;
    font-size: 24px;
    animation: beat 2s ease-in-out infinite;
    text-decoration: none;
  }
  
  /*Estilos con animation contorno respirando*/
  @keyframes breathe {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
  }
  
  /*Estilos de animacion del icono latiendo*/
  @keyframes beat {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
/*#endregion WS-FLOTANTE*/


/*#region PRECIOS*/
.pricing-card {
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-list li {
    padding: 8px 0;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    transform: rotate(15deg);
}

.btn-custom {
    background: linear-gradient(45deg, #071D34,var(--background-primary));
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}
/*#endregion PRECIOS*/
.card-service {
    padding: 20px;
    border-radius: 10px;
    color: white;
    background: radial-gradient(ellipse 70% 50% at 10% 10%, #071D34,  var(--background-primary));
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.1s ease;
  }
.dj-text-primary{
    color: var(--primary);
}
.dj-text-justify {
    text-align: justify;
}