/* Estilos para las tarjetas de iconos */
.icon-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 15px;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    background-color: #e0f2fe;
    padding: 15px;
    border-radius: 50%;
    color: #3b82f6;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.icon-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    /* Cambia la dirección para que los elementos estén uno encima del otro */
    align-items: center;
}

.icon-description {
    font-size: 1.2em;
    font-weight: 500;
    color: #374151;
    margin-top: 5px;
    /* Se agrega un pequeño margen arriba de la descripción */
}

.icon-number {
    font-size: 1.8em;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 5px;
    /* Se agrega un pequeño margen debajo del número */
}

/* Estilo para la etiqueta */
.custom-label {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

/* Estilo para el contenedor */
.custom-control {
    margin-top: 8px;
}

/* Estilo para el botón */
.custom-btn-encrypted-link {
    display: inline-block;
    font-size: 1.1em;
    color: white;
    background-color: #007BFF;
    /* Azul brillante */
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

/* Efecto de clic en el botón */
.custom-btn-encrypted-link:active {
    transform: translateY(1px);
    /* Sutil desplazamiento hacia abajo */
}

/* Estilo para el contenedor de la liga */
.custom-field {
    margin-bottom: 16px;
    padding: 16px;
    background-color: #bebebe;
    /* Fondo suave */
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* Estilo del Spiner */
.modal {
    display: grid;
    place-content: center;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
}

.cargando {
    width: 120px;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto;
}

.texto-cargando {
    padding-top: 20px;
    color: white;
}

.cargando span {
    font-size: 20px;
    text-transform: uppercase;
}

.pelotas {
    width: 30px;
    height: 30px;
    background-color: #3f51b5;
    animation: salto .5s alternate infinite;
    border-radius: 50%
}

.pelotas:nth-child(2) {
    animation-delay: .18s;
}

.pelotas:nth-child(3) {
    animation-delay: .37s;
}



@keyframes salto {
    from {
        transform: scaleX(1.25);
    }

    to {
        transform:
            translateY(-50px) scaleX(1);
    }
}

