/* Mostrar dropdown al hacer hover */
.hover-dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Para que no se desplace hacia abajo */
}
    .feature-icon {
        width: 64px;
        height: 64px;
        background-color: #f0f4ff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: auto;
        margin-bottom: 1rem;
        font-size: 2rem;  
    }
    .feature-icon:hover {
    transform: scale(1.1);
    
    background-color: #f0f4ff; /* fondo al hacer hover */
    color: #000000;
}

    .feature-icon i {
        font-size: 24px;
        color: #1a4eff;
    }
  
    .custom-text-color {
  color: #1a4eff; /* Cambia este valor por el color que desees */
}
.icon-style {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  color:#1a4eff; /* AZUL */
}
.text-primary-custom2{
  color: #606060;
}

.text-primary-custom {
  color: #004d40; 
}
.text-primary-custom1 {
  color:rgb(45, 59, 83); 
}
.text-color-blanco{
  color:rgb(0, 0, 0);
}
#caracteristicas {
  scroll-margin-top: 80px; /* Ajusta según el alto de tu navbar */
}
#precios{
   scroll-margin-top: 60px; /* Ajusta según el alto de tu navbar */
}
.uk-list {
  padding: 0;
  margin: 0 auto;
  text-align: left;
  display: inline-block;
}
.uk-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 4px 0;
    }

.uk-list li:last-child {
  text-align: center;
}
.call-to-action-area {
  position: relative;
  z-index: 1;
 
  padding: 20px 0; }
  /* Footer Area CSS */
.footer-area {
  background-color: #232323;
  color: #fff;
  
}

.main-footer-area .footer-widget .widget-title {
  margin-bottom: 1.5rem;
  margin-top: 70px;
}

.main-footer-area .footer-social-info a {
  display: inline-block;
  color: #606060;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.main-footer-area .footer-social-info a:hover {
  color: #ffffff;
}

.bottom-footer-area {
  background-color: #141414;
  padding: 30px 0;
  text-align: center;
}

.bottom-footer-area h4,
.bottom-footer-area h4 a {
  font-size: 14px;
  color: #606060;
  margin: 0;
}
/*Columnas personalizadas  */
  .custom-column {
   display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 20px;
  height: 100%;
  background-color: #fff;
  transition: transform 0.3s ease;
  }
.custom-column:hover {
  transform: scale(1.03);
}
  @media (min-width: 768px) {
    .custom-column:not(:last-child) {
      margin-right: 20px;
    }
  }
  /*/*/
.caracteristicas-link {
  position: relative;
  color: inherit;
  transition: color 0.3s ease;
}

.caracteristicas-link:hover {
  color: #0d6efd; /* azul bootstrap */
}

.caracteristicas-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #0d6efd;
  transition: width 0.4s ease;
}

.caracteristicas-link:hover::after {
  width: 100%;
}

/* typeweiter efecto maquina de escribir */
#typewriter::after {
  content: '|';
  animation: blink 0.7s infinite;
   color: #606060;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.pt-navbar {
  padding-top: 150px; /* Ajusta según la altura del navbar */
}
.pt-seccion{
  padding-top: 60px;
}
/*
.btn-precios {
  background-color: #004d40;
  color: white;
  border: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
}*/

.btn-precios:hover {
  transform: scale(1.1);
  background-color:rgb(0, 46, 38); /* un tono azul más oscuro al pasar el mouse */
  color: #ffffff;
}
/*
.btn-seleccionar{
  background-color: #004d40;
  color: white;
  border-radius: 25px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  padding: 8px 20px;
  font-weight: 500;
  text-decoration: none;
}
.btn-seleccionar:hover {
  transform: scale(1.1);
  background-color:rgb(0, 46, 38);  un tono azul más oscuro al pasar el mouse 
  color: #ffffff;
}

/*
.btn-outline-custom {
    border: 2px solid #004d40;
    
    background-color: transparent;
    padding: 10px 20px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    transform: scale(1.1);
    border: 2px solid #004d40;
    background-color:rgb(255, 255, 255);  fondo al hacer hover
    color: #000000;
}*/
.card-hoov{
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.card-hoov:hover {
  transform: scale(1.1);


}